- Docker
- Python3
To start the Hive server in Docker: ./hive.sh
To connect to Hive via the Beeline cli: docker exec -it hive4 beeline -u 'jdbc:hive2://localhost:10000/'
To see the logs in a web browser: http://localhost:10002
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
python hive_example.pypython src/test.pyThis will initialize the tables, generate some fake data (10 MiB by default),
and run 50 queries (see src/queries.py).