Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomwhite/docker-impala
Run Impala in a Docker container.
https://github.com/tomwhite/docker-impala
docker hadoop impala
Last synced: about 1 month ago
JSON representation
Run Impala in a Docker container.
- Host: GitHub
- URL: https://github.com/tomwhite/docker-impala
- Owner: tomwhite
- License: apache-2.0
- Created: 2017-10-12T14:31:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-05T16:22:55.000Z (almost 6 years ago)
- Last Synced: 2024-08-01T18:40:54.591Z (3 months ago)
- Topics: docker, hadoop, impala
- Language: Shell
- Size: 9.77 KB
- Stars: 15
- Watchers: 3
- Forks: 17
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Docker Impala
Run Impala in a Docker container.
```bash
docker-compose up -d
```When Impala has started the web UI will be visible (after a minute or so) by running:
```bash
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:
```bash
docker-compose exec impala impala-shell -q 'select 1'
```Shutdown the container with:
```bash
docker-compose down
```This is based on the work at [https://github.com/parrot-stream](https://github.com/parrot-stream), the main difference being that unnecessary services like YARN are
not included.