@@ -23,7 +23,7 @@ services:
2323 - cassandra-init
2424 - test-cassandra-e2e-testing
2525 - test-redis-e2e-testing
26- - clickhouse-e2e-testing
26+ - test- clickhouse-e2e-testing
2727 links :
2828 - postgres
2929 - testMySQL-e2e-testing
@@ -36,7 +36,7 @@ services:
3636 - test-elasticsearch-e2e-testing
3737 - test-cassandra-e2e-testing
3838 - test-redis-e2e-testing
39- - clickhouse-e2e-testing
39+ - test- clickhouse-e2e-testing
4040 command : ["pnpm", "start"]
4141
4242 testMySQL-e2e-testing :
@@ -170,11 +170,21 @@ services:
170170 - discovery.type=single-node
171171 - ELASTIC_PASSWORD=SuperSecretElasticPassword
172172 - xpack.security.enabled=true
173+ - ES_JAVA_OPTS=-Xms512m -Xmx512m
174+ ulimits :
175+ memlock :
176+ soft : -1
177+ hard : -1
173178 healthcheck :
174- test : ["CMD", "curl", "-f", "http://localhost:9200"]
175- interval : 30s
176- timeout : 10s
177- retries : 3
179+ test :
180+ [
181+ " CMD-SHELL" ,
182+ " curl -s -u elastic:SuperSecretElasticPassword http://localhost:9200/_cluster/health | grep -E '\" status\" :\" (green|yellow)\" '" ,
183+ ]
184+ interval : 10s
185+ timeout : 5s
186+ retries : 20
187+ start_period : 60s
178188
179189 test-cassandra-e2e-testing :
180190 image : cassandra:5.0.4
@@ -223,8 +233,9 @@ services:
223233 timeout : 10s
224234 retries : 3
225235
226- clickhouse-e2e-testing :
227- image : clickhouse/clickhouse-server:latest
236+ test-clickhouse-e2e-testing :
237+ image : clickhouse/clickhouse-server:24.8
238+ restart : unless-stopped
228239 ports :
229240 - 8123:8123
230241 - 9000:9000
@@ -238,10 +249,18 @@ services:
238249 soft : 262144
239250 hard : 262144
240251 healthcheck :
241- test : ["CMD", "wget", "--spider", "-q", "http://localhost:8123/ping"]
242- interval : 30s
243- timeout : 10s
244- retries : 3
252+ test :
253+ [
254+ " CMD" ,
255+ " clickhouse-client" ,
256+ " --user=default" ,
257+ " --password=clickhouse_password" ,
258+ " --query=SELECT 1" ,
259+ ]
260+ interval : 10s
261+ timeout : 5s
262+ retries : 20
263+ start_period : 60s
245264
246265 # === Postgres Proxy E2E Testing ===
247266
@@ -453,10 +472,10 @@ services:
453472 - ./rocketadmin-agent/src:/app/src
454473 links :
455474 - autoadmin-ws-server
456- - clickhouse-e2e-testing
475+ - test- clickhouse-e2e-testing
457476 depends_on :
458477 - autoadmin-ws-server
459- - clickhouse-e2e-testing
478+ - test- clickhouse-e2e-testing
460479 environment :
461480 - REMOTE_WEBSOCKET_ADDRESS=ws://autoadmin-ws-server:8009
462481 - APPLICATION_CONFIG_FILE_NAME=.clickhouse_test_agent_config.txt
0 commit comments