Skip to content
Merged
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
6 changes: 5 additions & 1 deletion docker/compose/docker-compose_hadoop284_hive233_spark244.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@ services:
- PRESTO_MEMORY_HEAP_HEADROOM_PER_NODE=100MB
- TERM=xterm
links:
- "hivemetastore"
- "hivemetastore"
volumes:
- ${HUDI_WS}:/var/hoodie/ws
command: coordinator

presto-worker-1:
Expand All @@ -215,6 +217,8 @@ services:
- "hiveserver"
- "hive-metastore-postgresql"
- "namenode"
volumes:
- ${HUDI_WS}:/var/hoodie/ws
command: worker

adhoc-1:
Expand Down
3 changes: 3 additions & 0 deletions docker/hoodie/hadoop/prestobase/bin/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ do
cat ${conf_file}.mustache | mustache.sh > ${conf_file}
done

# Copy the presto bundle at run time so that locally built bundle overrides the one that is present in the image
cp ${HUDI_PRESTO_BUNDLE} ${PRESTO_HOME}/plugin/hive-hadoop2/

case "$1" in
"coordinator" | "worker" )
server_role="$1"
Expand Down