We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc0c6f8 commit b68e1a8Copy full SHA for b68e1a8
README.rst
@@ -69,7 +69,11 @@ Passing session configuration
69
hive.connect('localhost', configuration={'hive.exec.reducers.max': '123'})
70
presto.connect('localhost', session_props={'query_max_run_time': '1234m'})
71
# SQLAlchemy
72
- create_engine('presto://user@host:443/hive', connect_args={'protocol': 'https'})
+ create_engine(
73
+ 'presto://user@host:443/hive',
74
+ connect_args={'protocol': 'https',
75
+ 'session_props': {'query_max_run_time': '1234m'}}
76
+ )
77
create_engine(
78
'hive://user@host:10000/database',
79
connect_args={'configuration': {'hive.exec.reducers.max': '123'}},
0 commit comments