JNSimba opened a new pull request, #61894: URL: https://github.com/apache/doris/pull/61894
## Summary - `StreamingInsertJob` does not support manual task cancellation - `cancelAllTasks()` is only triggered internally when job is STOPPED or PAUSED, meaning the task was interrupted passively - Changed `canceledTaskCount.incrementAndGet()` to `failedTaskCount.incrementAndGet()` in `cancelAllTasks()`, so `canceledTaskCount` always stays 0 for streaming jobs ## Test plan - [ ] Verify that when a streaming job is STOPPED/PAUSED, the failed task count increments correctly - [ ] Verify that canceled task count remains 0 for streaming jobs 🤖 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]
