Follow-up · depth 1
What metrics prove Trunk-Based Development vs Long-Lived Branches is healthy in prod?
What metrics prove Trunk-Based Development vs Long-Lived Branches is healthy in prod?
Answers use simple, clear English.
Quick interview answer
Prove Trunk-Based Development vs Long-Lived Branches is healthy with latency (p50/p95/p99), error/saturation rates, and queue/event-loop lag — not just CPU. Context: Simple view: Short-lived branches merge to main frequently; feature flags hide incomplete work. Long-lived release branches increase merge pain and drift.
Detailed answer
Production health signals for Trunk-Based Development vs Long-Lived Branches: • Latency: p50/p95/p99 of the critical path that uses Trunk-Based Development vs Long-Lived Branches. • Errors: failure rate, timeouts, and retry storms. • Saturation: queue depth, event-loop delay, thread/pool utilization. • Business SLIs: request success and user-visible freshness where relevant. Trade-off lens: Pros: Smaller PRs; continuous integration truly continuous. Cons: Needs solid CI and flag discipline. Explain thresholds + alerts, then how you triage. Parent context: Simple view: Short-lived branches merge to main frequently; feature flags hide incomplete work. Long-lived release branches increase merge pain and drift.
Full explanation
Good answers name measurable signals and what “bad” looks like for Trunk-Based Development vs Long-Lived Branches. Short-lived branches merge to main frequently; feature flags hide incomplete work. Long-lived release branches increase merge pain and drift.
Follow-up questions
Only answered follow-ups are shown — click to open with full answers
Parent context — Trunk-Based Development vs Long-Lived Branches
Simple view: Short-lived branches merge to main frequently; feature flags hide incomplete work. Long-lived release branches increase merge pain and drift.
View full parent question →