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
perf: Add HTTP connect timeout and double-checked locking for ADBC init
- Set 10s connect timeout on the static HttpClient used for dataset
refresh, preventing threads from blocking indefinitely on unreachable
endpoints.
- Replace synchronized initADBCIfNeeded() with double-checked locking
using a volatile adbcInitialized flag. After warmup, parameterized
queries skip the monitor entirely (volatile read only), eliminating
contention at high concurrency.
0 commit comments