hello-stephen opened a new pull request, #65103: URL: https://github.com/apache/doris/pull/65103
## Problem Paimon filesystem catalog OBS queries intermittently fail with `Connect timed out` / `RequestTimeOut (408)` errors. Root cause: test machines are in Alibaba Cloud Hong Kong, while the OBS endpoint is `obs.cn-north-4.myhuaweicloud.com` (Beijing). Cross-region network instability causes transient TCP connection failures. Related: [DORIS-26713](http://39.106.86.136:8090/browse/DORIS-26713) ## Solution Add `retry(5, 3000)` (5 attempts, 3s interval) around OBS data access queries in `paimon_base_filesystem.groovy`: - OBS `show databases`, `use`, SELECT queries block - Both `qt_obs obs` comparison calls (force_jni_scanner=false and true) The retry uses the existing framework `Suite.retry()` method which catches any Throwable and re-executes the closure. Network errors from OBS will be retried transparently. OSS/COS/COSN operations are unaffected as they use different endpoints. 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
