This is an automated email from the ASF dual-hosted git repository.
abhishek pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new db95c375a62 Increase historical heap for standard IT (#15337)
db95c375a62 is described below
commit db95c375a626b87d548a41a297f13f8ed9504eb3
Author: Rishabh Singh <[email protected]>
AuthorDate: Wed Nov 8 15:21:30 2023 +0530
Increase historical heap for standard IT (#15337)
Lately, Query IT has been failing due to historical server running out of
memory (OOM).
We are investigating the historical heap dump from the test. Until the
issue is resolved, we are increasing the heap size of historical server.
---
integration-tests/docker/environment-configs/historical | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/integration-tests/docker/environment-configs/historical
b/integration-tests/docker/environment-configs/historical
index df10b7ccd49..7f2ca922772 100644
--- a/integration-tests/docker/environment-configs/historical
+++ b/integration-tests/docker/environment-configs/historical
@@ -21,7 +21,9 @@ DRUID_SERVICE=historical
DRUID_LOG_PATH=/shared/logs/historical.log
# JAVA OPTS
-SERVICE_DRUID_JAVA_OPTS=-server -Xmx512m -Xms512m -XX:+UseG1GC
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5007
+# Query IT often fails with historical server running out of memory (OOM).
+# Until the issue is resolved, heap size for historical server is increased
from 512m to 700m.
+SERVICE_DRUID_JAVA_OPTS=-server -Xmx700m -Xms700m -XX:+UseG1GC
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5007
# Druid configs
druid_host=druid-historical
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]