Skip to content

Commit

Permalink
final changes to release 29.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sergioferragut committed Feb 24, 2024
1 parent 5716441 commit e791179
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions docker-compose-local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:
- KAFKA_ENABLE_KRAFT=false

coordinator:
image: imply/druid:${DRUID_VERSION:-28.0.1}
image: imply/druid:${DRUID_VERSION:-29.0.0}
container_name: coordinator
profiles: ["druid-jupyter", "all-services"]
volumes:
Expand All @@ -89,7 +89,7 @@ services:
- environment

broker:
image: imply/druid:${DRUID_VERSION:-28.0.1}
image: imply/druid:${DRUID_VERSION:-29.0.0}
container_name: broker
profiles: ["druid-jupyter", "all-services"]
volumes:
Expand All @@ -107,7 +107,7 @@ services:
- environment

historical:
image: imply/druid:${DRUID_VERSION:-28.0.1}
image: imply/druid:${DRUID_VERSION:-29.0.0}
container_name: historical
profiles: ["druid-jupyter", "all-services"]
volumes:
Expand All @@ -125,7 +125,7 @@ services:
- environment

middlemanager:
image: imply/druid:${DRUID_VERSION:-28.0.1}
image: imply/druid:${DRUID_VERSION:-29.0.0}
container_name: middlemanager
profiles: ["druid-jupyter", "all-services"]
volumes:
Expand All @@ -144,7 +144,7 @@ services:
- environment

router:
image: imply/druid:${DRUID_VERSION:-28.0.1}
image: imply/druid:${DRUID_VERSION:-29.0.0}
container_name: router
profiles: ["druid-jupyter", "all-services"]
volumes:
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:
- KAFKA_ENABLE_KRAFT=false

coordinator:
image: imply/druid:${DRUID_VERSION:-28.0.1}
image: imply/druid:${DRUID_VERSION:-29.0.0}
container_name: coordinator
profiles: ["druid-jupyter", "all-services"]
volumes:
Expand All @@ -89,7 +89,7 @@ services:
- environment

broker:
image: imply/druid:${DRUID_VERSION:-28.0.1}
image: imply/druid:${DRUID_VERSION:-29.0.0}
container_name: broker
profiles: ["druid-jupyter", "all-services"]
volumes:
Expand All @@ -107,7 +107,7 @@ services:
- environment

historical:
image: imply/druid:${DRUID_VERSION:-28.0.1}
image: imply/druid:${DRUID_VERSION:-29.0.0}
container_name: historical
profiles: ["druid-jupyter", "all-services"]
volumes:
Expand All @@ -125,7 +125,7 @@ services:
- environment

middlemanager:
image: imply/druid:${DRUID_VERSION:-28.0.1}
image: imply/druid:${DRUID_VERSION:-29.0.0}
container_name: middlemanager
profiles: ["druid-jupyter", "all-services"]
volumes:
Expand All @@ -144,7 +144,7 @@ services:
- environment

router:
image: imply/druid:${DRUID_VERSION:-28.0.1}
image: imply/druid:${DRUID_VERSION:-29.0.0}
container_name: router
profiles: ["druid-jupyter", "all-services"]
volumes:
Expand Down
4 changes: 2 additions & 2 deletions tests/test-notebooks-local-jupyter-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ retry 'curl http://localhost:8888/status' 50 2
#echo "Waiting for Data Generator readiness..."
retry 'curl http://localhost:9999/jobs' 50 2

docker exec -it jupyter pytest --nbmake $TEST_PATH
docker exec -it jupyter pytest --nbmake $TEST_PATH --nbmake-timeout=1200
# run it a second time to test re-runnability of the notebooks
docker exec -it jupyter pytest --nbmake $TEST_PATH
docker exec -it jupyter pytest --nbmake $TEST_PATH --nbmake-timeout=1200
docker compose -f ../docker-compose-local.yaml --profile all-services down -v
6 changes: 3 additions & 3 deletions tests/test-notebooks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ retry 'curl http://localhost:8888/status' 50 2
#echo "Waiting for Data Generator readiness..."
retry 'curl http://localhost:9999/jobs' 50 2

docker exec -it jupyter pytest --nbmake $TEST_PATH
docker exec -it jupyter pytest --nbmake $TEST_PATH --nbmake-timeout=1200
# run it a second time to test re-runnability of the notebooks
docker exec -it jupyter pytest --nbmake $TEST_PATH
docker compose --profile all-services down -v
docker exec -it jupyter pytest --nbmake $TEST_PATH --nbmake-timeout=1200
docker compose --profile all-services down -v

0 comments on commit e791179

Please sign in to comment.