wForget commented on code in PR #6756: URL: https://github.com/apache/kyuubi/pull/6756#discussion_r1806201431
########## kyuubi-common/src/main/scala/org/apache/kyuubi/config/KyuubiConf.scala: ########## @@ -1876,6 +1876,26 @@ object KyuubiConf { .booleanConf .createWithDefault(true) + val BATCH_RESOURCE_FILE_MAX_SIZE: ConfigEntry[Long] = + buildConf("kyuubi.batch.resource.file.max.size") + .doc("The maximum size in bytes of the resource file" + + " that can be uploaded in a batch creating request via REST API." + + " 0 or negative value means no limit.") + .version("1.10.0") + .serverOnly + .longConf + .createWithDefaultString("100000000") Review Comment: change to `100 * 1024 * 1024`? -- 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