fix(kubernetes-overlord-extensions): implement streamTaskReports in K…#18711
Merged
FrankChen021 merged 2 commits intoNov 6, 2025
Merged
Conversation
…ubernetesAndWorkerTaskRunner
Progress details were missing when using druid.indexer.runner.type=k8sAndWorker.
Implement streamTaskReports to delegate to kubernetesTaskRunner first, then fall back to workerTaskRunner if it implements TaskLogStreamer.
Progress details now show correctly when druid.indexer.runner.k8sAndWorker.runnerStrategy.type={k8s,worker}.
keoliva
marked this pull request as draft
November 3, 2025 19:57
keoliva
marked this pull request as ready for review
November 4, 2025 05:28
riovic918data
pushed a commit
to riovic918data/druid
that referenced
this pull request
Jun 12, 2026
apache#18711) * fix(kubernetes-overlord-extensions): implement streamTaskReports in KubernetesAndWorkerTaskRunner Progress details were missing when using druid.indexer.runner.type=k8sAndWorker. Implement streamTaskReports to delegate to kubernetesTaskRunner first, then fall back to workerTaskRunner if it implements TaskLogStreamer. Progress details now show correctly when druid.indexer.runner.k8sAndWorker.runnerStrategy.type={k8s,worker}. * add tests
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…ubernetesAndWorkerTaskRunner
Description
Fixed a bug where progress details were missing when using

druid.indexer.runner.type=k8sAndWorker.We kept seeing “Loading…” in the Druid Console instead of the view we’re used to seeing.After overriding
KubernetesAndWorkerTaskRunner's implementation ofstreamTaskReports, progress details now show correctly, whetherdruid.indexer.runner.k8sAndWorker.runnerStrategy.typeis set tok8sorworker.Release note
Fix an issue where ingestion task progress was not displayed in the Druid Console when running in migration mode (
druid.indexer.runner.type=k8sAndWorker) for MM-less Druid.Key changed/added classes in this PR
KubernetesAndWorkerTaskRunnerThis PR has: