pan3793 commented on issue #6569: URL: https://github.com/apache/kyuubi/issues/6569#issuecomment-2258091274
specific to spark engine, there is a concept "static configuration" which means it can not be set on spark app bootstrap, e.g. driver/executor cores/memory size, a typical use case is: ``` beeline -u "jdbc:kyuubi://kyuubi:10009/db#kyuubi.engine.share.level=CONNECTION;spark.driver.memory=4g;spark.executor.memory=8g" -f batch-sql-1.sql beeline -u "jdbc:kyuubi://kyuubi:10009/db#kyuubi.engine.share.level=CONNECTION;spark.driver.memory=2g;spark.executor.memory=4g" -f batch-sql-2.sql ``` if `kyuubi.session.conf.ignore.list` is configured, the listed keys will be removed in both engine bootstrap and session context. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org For additional commands, e-mail: notifications-h...@kyuubi.apache.org