mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-10 17:50:58 +00:00
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)
|