From 11bcaa695d02a6d2d1b3f08262acec4bca1e771a Mon Sep 17 00:00:00 2001 From: David Reiss Date: Thu, 17 Oct 2024 23:51:48 +0000 Subject: [PATCH] Reduce cassandra heap size in CI (#6673) ## What changed? Run cassandra with smaller heap (2GB) in CI. Default (on standard GHA workers) comes out to 4GB, so this is 1/2 of what it was before. ## Why? Try to reduce CI flakiness. --- develop/github/docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/develop/github/docker-compose.yml b/develop/github/docker-compose.yml index 435e16a1ad4..f35c1695676 100644 --- a/develop/github/docker-compose.yml +++ b/develop/github/docker-compose.yml @@ -5,6 +5,8 @@ services: - "9042:9042" environment: CASSANDRA_LISTEN_ADDRESS: 127.0.0.1 + MAX_HEAP_SIZE: "2G" + HEAP_NEWSIZE: "200M" mysql: image: mysql:8.0.29-oracle