tisonkun commented on code in PR #55: URL: https://github.com/apache/flink-connector-pulsar/pull/55#discussion_r1268324359
########## flink-connector-pulsar-e2e-tests/src/test/java/org/apache/flink/tests/util/pulsar/common/FlinkContainerUtils.java: ########## @@ -35,9 +35,11 @@ public class FlinkContainerUtils { public static Configuration flinkConfiguration() { Configuration configuration = new Configuration(); - // Increase the jvm metaspace memory to avoid java.lang.OutOfMemoryError: Metaspace - configuration.set(TaskManagerOptions.TOTAL_PROCESS_MEMORY, MemorySize.ofMebiBytes(2048)); + configuration.set(TaskManagerOptions.TOTAL_PROCESS_MEMORY, MemorySize.ofMebiBytes(2560)); + configuration.set(TaskManagerOptions.TASK_OFF_HEAP_MEMORY, MemorySize.ofMebiBytes(512)); configuration.set(TaskManagerOptions.JVM_METASPACE, MemorySize.ofMebiBytes(512)); + + // Increase the jvm metaspace memory to avoid java.lang.OutOfMemoryError: Metaspace Review Comment: Please directly comment a suggestion or patch. I'm not sure where to move in your mind, -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org