Search the practice set
126 questions, 454 terms and 400 topics in 20 areas.
4 results for “Outbox”
Questions · 2
quiz
Data Architecture
quiz
Polyglot Persistence
A service writes to its database and then publishes an event to Kafka. Sometimes consumers see an event for a record that does not exist, and sometimes a record exists with no event. Why, and how do you fix it?
What the interviewer is testing Recognition of the dual write problem — one of the most common defects in event driven systems and one that testing rarely catch
Your search index and your database disagree — some products appear in search that were deleted, and some new ones never appear. How do you make this reliable?
Why it drifts Almost always a dual write : the application writes to the database and then to the search index as two independent operations. One can succeed an