You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
maxsize=settings.CLICKHOUSE_CONN_POOL_MAX, # max number of open connection per pool
block=True, # makes the maxsize limit per pool, keeps connections
num_pools=12, # number of pools
ca_cert=settings.CLICKHOUSE_CA,
ca_cert=settings.CLICKHOUSE_CA,# type: ignore[arg-type] # ca_cert default value is None, but the type hint is str instead of Optional[str], https://github.com/ClickHouse/clickhouse-connect/pull/450