This is an automated email from the ASF dual-hosted git repository. CritasWang pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/iotdb-client-rust.git
commit 713bfffd603800eb98065c17df10df6533336e08 Author: CritasWang <[email protected]> AuthorDate: Mon Jul 13 16:40:05 2026 +0800 Bump benchmark container to 4G heap + 1G direct memory (eliminates flush-stall latency spikes; pin ConfigNode to 512M) --- docker-compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 0aaef9e..9199862 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -27,7 +27,8 @@ services: ports: - "6667:6667" environment: - - IOTDB_JMX_OPTS=-Xms1G -Xmx1G -XX:MaxDirectMemorySize=384M + - IOTDB_JMX_OPTS=-Xms4G -Xmx4G -XX:MaxDirectMemorySize=1G + - CONFIGNODE_JMX_OPTS=-Xms512M -Xmx512M -XX:MaxDirectMemorySize=128M healthcheck: test: ["CMD", "ls", "/iotdb/data/datanode/system"] interval: 5s
