kevin91nl commented on issue #19435: URL: https://github.com/apache/druid/issues/19435#issuecomment-4412006582
Hey! 👋 The `CoordinatorPauseTest` timeout at 12.8s (waiting 10s for an event) suggests the coordinator isnt publishing the expected event within the window. These intermittent coordinator-event timing issues are notoriously hard to reproduce locally since they depend on scheduler state. We ran into similar flaky embedded-test patterns and built [Teststep](https://teststep.tuvia.nl) — a free GitHub Action that tracks per-test pass rates across CI runs. It auto-flags tests that pass/fail inconsistently so you can quantify whether this is a 1-in-20 or 1-in-100 flake without manually grepping logs. Add it after your test step: ```yaml - uses: ovoWeb/teststep-action@v1 with: test-format: pytest # or whatever your embedded test format uses api-key: ${{ secrets.TESTSTEP_API_KEY }} ``` Free tier includes full history. Might help decide whether to bump the timeout or investigate the coordinator event path. Hope it helps! -- 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]
