Skip to content
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (20 loc) · 795 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 795 Bytes

Docker Impala

Run Impala in a Docker container.

docker-compose up -d

When Impala has started the web UI will be visible (after a minute or so) by running:

open http://$(docker-machine ip):25000

(Note that for troubleshooting purposes you can connect to the container with docker-compose exec impala bash, then check /tmp/supervisord.log and the log files in /var/log/hadoop-hdfs, /var/log/hive, and /var/log/impala.)

Perform a trivial query:

docker-compose exec impala impala-shell -q 'select 1'

Shutdown the container with:

docker-compose down

This is based on the work at https://github.com/parrot-stream, the main difference being that unnecessary services like YARN are not included.