Conversation
|
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
This stack of pull requests is managed by Graphite. Learn more about stacking. |
📝 WalkthroughWalkthroughThis PR removes the entire Hydra workflow system (engine, worker, steps, sleep, cron, marshalling, metrics, store/SQLC, tests, docs) and related initialization from deployment. It also updates infra/docs to reflect the absence of Hydra, including Docker setup and database schema docs. One CLI doc file receives formatting-only tweaks. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant Client
participant Engine
participant DB
participant Worker
participant Cron
rect rgb(230,245,255)
note over Engine,Worker: Before (Hydra present)
Client->>Engine: StartWorkflow(payload)
Engine->>DB: Insert workflow + payload
Worker->>DB: Poll pending workflows
Worker->>DB: Acquire lease
Worker->>Worker: Execute steps (idempotent)
Worker->>DB: Update step/workflow state
Cron->>DB: List due cron jobs
Cron->>Engine: Trigger StartWorkflow
end
rect rgb(255,235,230)
note over Client,DB: After (Hydra removed)
Client--X Engine: (API removed)
Worker--X DB: (Polling/leases removed)
Cron--X Engine: (Cron registration removed)
end
Estimated code review effort🎯 4 (Complex) | ⏱️ ~60 minutes Possibly related PRs
Suggested reviewers
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (40)
💤 Files with no reviewable changes (38)
🧰 Additional context used🧠 Learnings (1)📚 Learning: 2025-04-22T14:43:11.724ZApplied to files:
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
it failed to build otherwise
|
Thank you for following the naming conventions for pull request titles! 🙏 |
ogzhanolguncu
left a comment
There was a problem hiding this comment.
I thought hydra was unkillable
Graphite Automations"Post a GIF when PR approved" took an action on this PR • (10/03/25)1 gif was posted to this PR based on Andreas Thomas's automation. |


What does this PR do?
we're not using this anymore
Fixes # (issue)
If there is not an issue for this, please create one first. This is used to tracking purposes and also helps use understand why this PR exists
Type of change
How should this be tested?
Checklist
Required
pnpm buildpnpm fmtconsole.logsgit pull origin mainAppreciated