mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-10 09:41:54 +00:00

This offloads most of the heavy lifting to SQLAlchemy. Also add a docker file for testing
8 lines
272 B
Python
8 lines
272 B
Python
from common import run
|
|
|
|
# See https://github.com/dropbox/PyHive for more details
|
|
URL = '' # e.g. hive://username:password@hostname:port
|
|
OPTIONS = {} # e.g. {"connect_args": {"configuration": {"hive.exec.reducers.max": "123"}}
|
|
PLATFORM = 'hive'
|
|
|
|
run(URL, OPTIONS, PLATFORM) |