Skip to content

Commit 759304a

Browse files
mfusseneggermatriv
authored andcommitted
Increase heap size for bwc tests
Saw some GC warnings in the logs: ``` [o.e.m.j.JvmGcMonitorService] [0faf0d8D1BBa-2] [gc][6] overhead, spent [413ms] collecting in the last [1.1s] ``` High GC could explain issues during cluster formation and the timeout errors.
1 parent ac20b25 commit 759304a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crate/qa/tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def __getitem__(self, idx):
167167
class NodeProvider:
168168

169169
CRATE_VERSION = os.environ.get('CRATE_VERSION', 'latest-nightly')
170-
CRATE_HEAP_SIZE = os.environ.get('CRATE_HEAP_SIZE', '512m')
170+
CRATE_HEAP_SIZE = os.environ.get('CRATE_HEAP_SIZE', '1024m')
171171
DEBUG = os.environ.get('DEBUG', 'false').lower() == 'true'
172172

173173
def __init__(self, *args, **kwargs):

0 commit comments

Comments
 (0)