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.
max_overflow
1 parent 996e5b0 commit bf8e3a9Copy full SHA for bf8e3a9
metadata-ingestion/src/datahub/ingestion/source/bigquery_v2/bigquery_config.py
@@ -290,7 +290,7 @@ class BigQueryV2Config(
290
def profile_default_settings(cls, values: Dict) -> Dict:
291
# Extra default SQLAlchemy option for better connection pooling and threading.
292
# https://docs.sqlalchemy.org/en/14/core/pooling.html#sqlalchemy.pool.QueuePool.params.max_overflow
293
- values["options"].setdefault("max_overflow", values["profiling"].max_workers)
+ values["options"].setdefault("max_overflow", -1)
294
295
return values
296
0 commit comments