QiuYucheng2003

Results 3 issues of QiuYucheng2003

In SmppSessionFactoryBean.java, the scheduleReconnect() method submits a reconnection task to reconnectingExecutor using submit(). The Defect (ENC - Exception Not Caught): The submitted Runnable (lines ~310) contains a try-catch block that...

**Description** The `HystrixContextScheduler` (specifically its internal `ThreadPoolWorker`) uses `ThreadPoolExecutor.submit()` to schedule tasks. While it captures the returned `Future` object, it wraps it in a `FutureCompleterWithConfigurableInterrupt` which **only uses the Future...

### environment * canal version: Master * mysql version: All ### Issue Description In `com.alibaba.otter.canal.parse.inbound.mysql.MysqlMultiStageCoprocessor`, the thread pools `parserExecutor` and `stageExecutor` are initialized using `Executors.newFixedThreadPool()`. Code location: ```java // Line...