Lesson 16 · Senior platform judgment
Delivery guarantees, dual-write trade-offs, and runtime failure honesty
How to talk honestly about what the platform really guarantees across outbox, publish-after-commit, retries, swallowed failures, and different runtime shapes.
Your win: explain the platform’s delivery and runtime model truthfully, including where guarantees are strong, where they are pragmatic, and where they are intentionally imperfect.
Why this page matters so much
This course is full of systems that are good, useful, and still imperfect. That is exactly why this lesson matters. Senior engineers are judged not only on whether they can describe platform machinery, but whether they can describe it without accidentally upgrading best-effort behavior into a guarantee.
That is harder than it sounds. Once you learn a pattern well, it becomes tempting to tell one neat story. But the repo’s actual operational truth is more layered than that.
Why one tidy reliability story would be misleading
Several truths have to sit next to each other here. eureka’s outbox is stronger than publish-after-commit for the dual-write gap. Retries improve liveness but can repeat work. Idempotency absorbs duplicates. Swallowed push failures avoid double-send at the cost of more aggressive recovery. CronJobs, one-off jobs, and long-running consumers are all “runtime,” but they do not behave the same way.
If you compress all of that into “we have reliable async infrastructure,” the answer becomes cleaner and less true at the same time. The senior move is to resist that temptation.
What this changes in how you explain the platform
The goal is not to make the system sound worse. The goal is to make the explanation sound real. Once you separate hard guarantees from softer recovery mechanisms, your answer becomes more trustworthy, and your design judgment becomes easier to evaluate.
That is what interviewers usually want: not a flawless-sounding platform, but an engineer who can tell the truth about trade-offs without losing the bigger architecture picture.
Keep the guarantee story attached to the concrete mechanisms
Use the outbox docs and the repo map together so “reliable delivery” does not become a vague slogan.
Check yourself (from memory)
Q1. What makes a delivery/runtime explanation sound senior?
Sources. Outbox docs; repo toolkit map.