btalukder-ea commented on issue #17870:
URL: https://github.com/apache/druid/issues/17870#issuecomment-2777664825
This is the docker-compose have used initially..
in environment file
druid_extensions_loadList=["postgresql-metadata-storage"]
druid_metadata_storage_type=postgresql
druid_metadata_storage_connector_connectURI=jdbc:postgresql://<>connetor-uri?currentSchema=druid
#this schema it is populating
druid_metadata_storage_connector_user=username
druid_metadata_storage_connector_password=password
druid_metadata_postgres_dbTableSchema=druidt #this does not work
druid_storage_type=google
druid_google_bucket=druid_data
druid_zk_service_host=zookeeper
druid_zk_service_port=2181
```
version: "3.3"
volumes:
metadata_data: {}
services:
zookeeper:
image: zookeeper:3.8
restart: always
ports:
- "2181:2181"
druid-coordinator:
image: apache/druid:32.0.1
restart: always
environment:
- DRUID_NODE_TYPE=coordinator
command:
- coordinator
depends_on:
- zookeeper
- postgres
env_file:
- environment
ports:
- "8081:8081"
volumes:
- ./gcs-service-account.json:/opt/druid/conf/gcs-service-account.json
druid-overlord:
image: apache/druid:32.0.1
restart: always
env_file:
- environment
command:
- overlord
depends_on:
- zookeeper
- druid-coordinator
- postgres
environment:
- DRUID_NODE_TYPE=overlord
ports:
- "8090:8090"
druid-broker:
image: apache/druid:32.0.1
restart: always
command:
- broker
depends_on:
- zookeeper
- postgres
env_file:
- environment
environment:
- DRUID_NODE_TYPE=broker
ports:
- "8082:8082"
druid-historical:
image: apache/druid:32.0.1
restart: always
command:
- historical
depends_on:
- zookeeper
- postgres
env_file:
- environment
environment:
- DRUID_NODE_TYPE=historical
ports:
- "8083:8083"
volumes:
- ./gcs-service-account.json:/opt/druid/conf/gcs-service-account.json
druid-middlemanager:
image: apache/druid:32.0.1
restart: always
command:
- middleManager
depends_on:
- zookeeper
- postgres
env_file:
- environment
environment:
- DRUID_NODE_TYPE=middleManager
ports:
- "8091:8091"
druid-router:
image: apache/druid:32.0.1
env_file:
- environment
command:
- router
restart: always
depends_on:
- zookeeper
- postgres
environment:
- DRUID_NODE_TYPE=router
ports:
- "8888:8888"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]