feat: add orchestrator pipeline, TopicRegistry, and CI improvements#59
Merged
Conversation
8f1b8a8 to
ca20b81
Compare
sbalabanov
approved these changes
Feb 24, 2026
ca20b81 to
fa8cf85
Compare
- Add TopicRegistry to centralize queue topic configuration and decouple controllers from subscription details - Refactor consumer to accept TopicRegistry instead of raw queue + subscriber name - Add request controller to orchestrator pipeline with publisher for forwarding to next stage - Generate gomock mocks for consumer, queue, publisher, and subscriber interfaces - Simplify server startup by removing retry loops (rely on Docker Compose healthchecks via --wait) - Auto-tail container logs to stderr during integration/e2e tests - Fix CI Bazel caching: use disk-cache + repo-cache from .bazelrc, per-job cache keys to avoid save races - Stream test output in real-time (--test_output=streamed) - Remove redundant .github/actions/logs (logs now stream automatically) - Consolidate PROJECT_STRUCTURE.md into CLAUDE.md Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
fa8cf85 to
31ce3a2
Compare
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.
Summary
TopicRegistryinstead of rawqueue.Queue+ subscriber name. RemovesSubscriptionConfig()from theControllerinterface.--wait) to ensure dependencies are ready before services start.bazel-disk-cacheandbazel-repo-cache(matching.bazelrcpaths) with per-job keys to avoid concurrent save races. Previous setup cached the wrong directory and all jobs raced on a single key.ComposeStack.tailLogs(). Removes the now-redundant.github/actions/logsaction.--test_output=streamedfor real-time output in both local and CI runs.PROJECT_STRUCTURE.mdintoCLAUDE.md, updatesTESTING.mdfor new ComposeStack behavior.Test plan
make buildpassesmake testpassesmake gazelleproduces no changes🤖 Generated with Claude Code