Skip to content
Open
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
4 changes: 2 additions & 2 deletions packaging/src/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ docker compose logs -f llapdaemon
To stop and remove the LLAP stack:

```shell
./stop-hive.sh --llap # to stop and delete containers
./stop-hive.sh # to stop and delete containers
#OR
./stop-hive.sh --llap --cleanup # to remove volumes also
./stop-hive.sh --cleanup # to remove volumes also
```

#### Usage
Expand Down
10 changes: 10 additions & 0 deletions packaging/src/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,16 @@ services:
HIVE_SCRATCH_DIR: /opt/hive/scratch
HIVE_QUERY_RESULTS_CACHE_DIRECTORY: /opt/hive/scratch/_resultscache_

# LLAP / external Tez session wiring — consumed by envsubst against
# hive-site.xml.template and tez-site.xml.template in entrypoint.sh.
# Without these, the templates fall back to the defaults in
# entrypoint.sh (external sessions disabled) even when start-hive.sh
# was invoked with --llap.
HIVE_ZOOKEEPER_QUORUM: "${HIVE_ZOOKEEPER_QUORUM:-}"
HIVE_LLAP_DAEMON_SERVICE_HOSTS: "${HIVE_LLAP_DAEMON_SERVICE_HOSTS:-}"
HIVE_SERVER2_TEZ_USE_EXTERNAL_SESSIONS: "${HIVE_SERVER2_TEZ_USE_EXTERNAL_SESSIONS:-false}"
TEZ_FRAMEWORK_MODE: "${TEZ_FRAMEWORK_MODE:-}"

DB_DRIVER: postgres
SERVICE_OPTS: >-
-Xmx1G
Expand Down
Loading