Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

etcd_docker 5: Incorporate docker based etcd approach into docker integration tests. #4149

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 20 additions & 3 deletions scripts/docker-integration-tests/aggregator/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,28 @@
version: "3.5"
services:
etcd:
image: docker.io/bitnami/etcd:3.5
expose:
- "2379-2380"
ports:
- "0.0.0.0:2379-2380:2379-2380"
environment:
- ALLOW_NONE_AUTHENTICATION=yes
- ETCD_ADVERTISE_CLIENT_URLS=http://etcd:2379
networks:
- backend
dbnode01:
expose:
- "9000-9004"
- "2379-2380"
- "7201"
ports:
- "0.0.0.0:9000-9004:9000-9004"
- "0.0.0.0:2379-2380:2379-2380"
- "0.0.0.0:7201:7201"
networks:
- backend
image: "m3dbnode_integration:${REVISION}"
depends_on:
- etcd
m3coordinator01:
expose:
- "7202"
Expand All @@ -26,6 +37,8 @@ services:
image: "m3coordinator_integration:${REVISION}"
volumes:
- "./m3coordinator.yml:/etc/m3coordinator/m3coordinator.yml"
depends_on:
- etcd
m3aggregator01:
expose:
- "6001"
Expand All @@ -38,6 +51,8 @@ services:
image: "m3aggregator_integration:${REVISION}"
volumes:
- "./m3aggregator.yml:/etc/m3aggregator/m3aggregator.yml"
depends_on:
- etcd
m3aggregator02:
networks:
- backend
Expand All @@ -46,5 +61,7 @@ services:
image: "m3aggregator_integration:${REVISION}"
volumes:
- "./m3aggregator.yml:/etc/m3aggregator/m3aggregator.yml"
depends_on:
- etcd
networks:
backend:
backend: null
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ kvClient:
autoSyncInterval: 10m
dialTimeout: 1m
endpoints:
- dbnode01:2379
- etcd:2379

runtimeOptions:
kvConfig:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ clusters:
autoSyncInterval: 10m
dialTimeout: 1m
endpoints:
- dbnode01:2379
- etcd:2379

downsample:
rules:
Expand Down
2 changes: 2 additions & 0 deletions scripts/docker-integration-tests/aggregator/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ echo "Pull containers required for test"
docker pull $PROMREMOTECLI_IMAGE
docker pull $JQ_IMAGE

docker-compose -f ${COMPOSE_FILE} up -d etcd

echo "Run m3dbnode"
docker-compose -f ${COMPOSE_FILE} up -d dbnode01

Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
version: "3.5"
services:
etcd:
image: docker.io/bitnami/etcd:3.5
environment:
- ALLOW_NONE_AUTHENTICATION=yes
- ETCD_ADVERTISE_CLIENT_URLS=http://etcd:2379
networks:
- backend
dbnode01:
expose:
- "9000-9004"
- "2379-2380"
- "7201"
ports:
- "0.0.0.0:9000-9004:9000-9004"
- "0.0.0.0:2379-2380:2379-2380"
- "0.0.0.0:7201:7201"
networks:
- backend
image: "m3dbnode_integration:${REVISION}"
depends_on:
- etcd
m3coordinator01:
expose:
- "7202"
Expand All @@ -26,6 +33,8 @@ services:
image: "m3coordinator_integration:${REVISION}"
volumes:
- "./m3coordinator.yml:/etc/m3coordinator/m3coordinator.yml"
depends_on:
- etcd
m3aggregator01:
expose:
- "6001"
Expand All @@ -38,6 +47,8 @@ services:
image: "m3aggregator_integration:${REVISION}"
volumes:
- "./m3aggregator.yml:/etc/m3aggregator/m3aggregator.yml"
depends_on:
- etcd
m3aggregator02:
networks:
- backend
Expand All @@ -46,5 +57,7 @@ services:
image: "m3aggregator_integration:${REVISION}"
volumes:
- "./m3aggregator.yml:/etc/m3aggregator/m3aggregator.yml"
depends_on:
- etcd
networks:
backend:
backend: null
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ kvClient:
etcdClusters:
- zone: embedded
endpoints:
- dbnode01:2379
- etcd:2379

runtimeOptions:
kvConfig:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ clusters:
etcdClusters:
- zone: embedded
endpoints:
- dbnode01:2379
- etcd:2379

downsample:
remoteAggregator:
Expand Down
3 changes: 3 additions & 0 deletions scripts/docker-integration-tests/aggregator_legacy/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ REVISION=$(git rev-parse HEAD)
COMPOSE_FILE="$M3_PATH"/scripts/docker-integration-tests/aggregator_legacy/docker-compose.yml
export REVISION

echo "Run etcd"
docker-compose -f ${COMPOSE_FILE} up -d etcd

echo "Run m3dbnode"
docker-compose -f ${COMPOSE_FILE} up -d dbnode01

Expand Down
19 changes: 16 additions & 3 deletions scripts/docker-integration-tests/carbon/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
version: "3.5"
services:
etcd:
image: docker.io/bitnami/etcd:3.5
expose:
- "2379-2380"
ports:
- "0.0.0.0:2379-2380:2379-2380"
environment:
- ALLOW_NONE_AUTHENTICATION=yes
- ETCD_ADVERTISE_CLIENT_URLS=http://etcd:2379
networks:
- backend
dbnode01:
expose:
- "9000-9004"
- "2379-2380"
ports:
- "0.0.0.0:9000-9004:9000-9004"
- "0.0.0.0:2379-2380:2379-2380"
networks:
- backend
image: "m3dbnode_integration:${REVISION}"
depends_on:
- etcd
coordinator01:
expose:
- "7201"
Expand All @@ -24,5 +35,7 @@ services:
image: "m3coordinator_integration:${REVISION}"
volumes:
- "./:/etc/m3coordinator/"
depends_on:
- etcd
networks:
backend:
backend: null
2 changes: 1 addition & 1 deletion scripts/docker-integration-tests/carbon/m3coordinator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ clusters:
etcdClusters:
- zone: embedded
endpoints:
- dbnode01:2379
- etcd:2379

carbon:
findResultsIncludeBothExpandableAndLeaf: true
Expand Down
5 changes: 2 additions & 3 deletions scripts/docker-integration-tests/carbon/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ EXPECTED_PATH=$SCRIPT_PATH/expected
export REVISION

echo "Run m3dbnode and m3coordinator containers"
docker-compose -f ${COMPOSE_FILE} up -d dbnode01
docker-compose -f ${COMPOSE_FILE} up -d coordinator01
docker-compose -f ${COMPOSE_FILE} up -d

# Think of this as a defer func() in golang
METRIC_EMIT_PID="-1"
Expand Down Expand Up @@ -152,7 +151,7 @@ ATTEMPTS=20 MAX_TIMEOUT=4 TIMEOUT=1 retry_with_backoff "wait_carbon_values_accum

# Now test the max datapoints behavior using max of four datapoints (4x 5s resolution = 20s)
end=$(date +%s)
start=$(($end-20))
start=$(($end-20))
# 1. no max datapoints set, should not adjust number of datapoints coming back
ATTEMPTS=2 MAX_TIMEOUT=4 TIMEOUT=1 retry_with_backoff "read_carbon 'stat.already-aggregated.foo' 42 $start $end"
# 2. max datapoints with LTTB, should be an existing value (i.e. 42)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
version: "3.5"
services:
etcd:
image: docker.io/bitnami/etcd:3.5
expose:
- "2379-2380"
ports:
- "0.0.0.0:2379-2380:2379-2380"
environment:
- ALLOW_NONE_AUTHENTICATION=yes
- ETCD_ADVERTISE_CLIENT_URLS=http://etcd:2379
networks:
- backend
dbnode01:
expose:
- "9000-9004"
- "2379-2380"
ports:
- "0.0.0.0:9000-9004:9000-9004"
- "0.0.0.0:2379-2380:2379-2380"
networks:
- backend
image: "m3dbnode_integration:${REVISION}"
depends_on:
- etcd
coordinator01:
expose:
- "7201"
Expand All @@ -24,5 +35,7 @@ services:
image: "m3coordinator_integration:${REVISION}"
volumes:
- "./:/etc/m3coordinator/"
depends_on:
- etcd
networks:
backend:
backend: null
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ clusters:
etcdClusters:
- zone: embedded
endpoints:
- dbnode01:2379
- etcd:2379
5 changes: 2 additions & 3 deletions scripts/docker-integration-tests/cold_writes_simple/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ SCRIPT_PATH="$M3_PATH"/scripts/docker-integration-tests/cold_writes_simple
COMPOSE_FILE=$SCRIPT_PATH/docker-compose.yml
export REVISION

echo "Run m3dbnode and m3coordinator containers"
docker-compose -f ${COMPOSE_FILE} up -d --renew-anon-volumes dbnode01
docker-compose -f ${COMPOSE_FILE} up -d --renew-anon-volumes coordinator01
echo "Run etcd, m3dbnode and m3coordinator containers"
docker-compose -f "${COMPOSE_FILE}" up -d --renew-anon-volumes

# Think of this as a defer func() in golang
function defer {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
version: "3.5"
services:
etcd:
image: docker.io/bitnami/etcd:3.5
expose:
- "2379-2380"
ports:
- "0.0.0.0:2379-2380:2379-2380"
environment:
- ALLOW_NONE_AUTHENTICATION=yes
- ETCD_ADVERTISE_CLIENT_URLS=http://etcd:2379
networks:
- backend
dbnode01:
expose:
- "9000-9004"
- "2379-2380"
ports:
- "0.0.0.0:9000-9004:9000-9004"
- "0.0.0.0:2379-2380:2379-2380"
networks:
- backend
image: "m3dbnode_integration:${REVISION}"
depends_on:
- etcd
coordinator01:
expose:
- "7201"
Expand All @@ -24,5 +35,7 @@ services:
image: "m3coordinator_integration:${REVISION}"
volumes:
- "./:/etc/m3coordinator/"
depends_on:
- etcd
networks:
backend:
backend: null
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ clusters:
etcdClusters:
- zone: embedded
endpoints:
- dbnode01:2379
- etcd:2379

downsample:
rules:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ docker pull $PROMREMOTECLI_IMAGE
docker pull $JQ_IMAGE

echo "Run m3dbnode and m3coordinator containers"
docker-compose -f ${COMPOSE_FILE} up -d dbnode01
docker-compose -f ${COMPOSE_FILE} up -d coordinator01
docker-compose -f ${COMPOSE_FILE} up -d

# Think of this as a defer func() in golang
function defer {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
version: "3.5"
services:
etcd:
image: docker.io/bitnami/etcd:3.5
expose:
- "2379-2380"
ports:
- "0.0.0.0:2379-2380:2379-2380"
environment:
- ALLOW_NONE_AUTHENTICATION=yes
- ETCD_ADVERTISE_CLIENT_URLS=http://etcd:2379
networks:
- backend
coordinator01:
expose:
- "7201"
Expand All @@ -10,33 +21,7 @@ services:
image: "m3coordinator_integration:${REVISION}"
volumes:
- "./m3coordinator.yml:/etc/m3coordinator/m3coordinator.yml"
etcd01:
expose:
- "2379-2380"
ports:
- "0.0.0.0:2379-2380:2379-2380"
networks:
- backend
image: quay.io/coreos/etcd:v3.4.3
command:
- "etcd"
- "--name"
- "etcd01"
- "--listen-peer-urls"
- "http://0.0.0.0:2380"
- "--listen-client-urls"
- "http://0.0.0.0:2379"
- "--advertise-client-urls"
- "http://etcd01:2379"
- "--initial-cluster-token"
- "etcd-cluster-1"
- "--initial-advertise-peer-urls"
- "http://etcd01:2380"
- "--initial-cluster"
- "etcd01=http://etcd01:2380"
- "--initial-cluster-state"
- "new"
- "--data-dir"
- "/var/lib/etcd"
depends_on:
- etcd
networks:
backend:
backend: null
Loading