Skip to content

Commit

Permalink
debug #888, debug TestIntegrationAzure, tmpfs for /data
Browse files Browse the repository at this point in the history
  • Loading branch information
Slach committed Jul 30, 2024
1 parent c9288fd commit b4cecca
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
14 changes: 12 additions & 2 deletions test/integration/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ services:
test: nc 127.0.0.1 10000 -z
interval: 1s
retries: 30
command: [ "azurite", "--debug", "/data/debug.log" , "-l", "/data", "--blobHost", "0.0.0.0","--queueHost", "0.0.0.0", "--tableHost", "0.0.0.0","--inMemoryPersistence" ]
command: ["azurite", "--debug", "/data/debug.log" , "-l", "/data", "--blobHost", "0.0.0.0","--queueHost", "0.0.0.0", "--tableHost", "0.0.0.0" ]
volumes:
- azure:/data
# environment:
# - AZURITE_DB="mysql://root:root@mysql:3306/azurite_blob"

Expand Down Expand Up @@ -240,4 +242,12 @@ services:
image: hello-world
depends_on:
clickhouse-backup:
condition: service_healthy
condition: service_healthy

volumes:
azure:
driver: local
driver_opts:
device: tmpfs
type: tmpfs
o: size=60m
10 changes: 9 additions & 1 deletion test/integration/docker-compose_advanced.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ services:
test: nc 127.0.0.1 10000 -z
interval: 1s
retries: 30
command: ["azurite", "--debug", "/data/debug.log" , "-l", "/data", "--blobHost", "0.0.0.0","--queueHost", "0.0.0.0", "--tableHost", "0.0.0.0", "--inMemoryPersistence"]
command: ["azurite", "--debug", "/data/debug.log" , "-l", "/data", "--blobHost", "0.0.0.0","--queueHost", "0.0.0.0", "--tableHost", "0.0.0.0" ]
volumes:
- azure:/data
# environment:
# - AZURITE_DB="mysql://root:root@mysql:3306/azurite_blob"

Expand Down Expand Up @@ -318,6 +320,12 @@ volumes:
type: tmpfs
o: size=250m
pgsql:
driver: local
driver_opts:
device: tmpfs
type: tmpfs
o: size=60m
azure:
driver: local
driver_opts:
device: tmpfs
Expand Down

0 comments on commit b4cecca

Please sign in to comment.