Skip to content

Commit

Permalink
test: add integration test for dremio
Browse files Browse the repository at this point in the history
  • Loading branch information
sagar-salvi-apptware committed Oct 17, 2024
1 parent 84227b6 commit bd1ad49
Show file tree
Hide file tree
Showing 6 changed files with 1,500 additions and 0 deletions.
35 changes: 35 additions & 0 deletions metadata-ingestion/tests/integration/dremio/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
version: "3"

services:
# Minio Storage Server
minio:
image: minio/minio:RELEASE.2023-07-21T21-12-44Z
container_name: minio
environment:
- MINIO_ROOT_USER=miniouser
- MINIO_ROOT_PASSWORD=miniopassword
- MINIO_DOMAIN=storage
- MINIO_REGION_NAME=us-east-1
- MINIO_REGION=us-east-1
networks:
dremio-network:
ports:
- 9001:9001
- 9000:9000
command: ["server", "/data", "--console-address", ":9001"]
# Dremio
dremio:
platform: linux/x86_64
image: dremio/dremio-oss:latest
ports:
- 9047:9047
- 31010:31010
- 32010:32010
container_name: dremio
networks:
dremio-network:
depends_on:
- minio

networks:
dremio-network:
Loading

0 comments on commit bd1ad49

Please sign in to comment.