Building-permit review and fee-collection microservices must scale independently, keep each task until success or dead-letter, and avoid losing work if one side slows. Which Domain 3 service best fits that decoupling?
Select an answer to reveal the explanation.
Short Explanation
When two city desks must not drop a form between them, use a durable inbox. Queue keeps the task until delete, and a DLQ isolates poison messages. Always-on HTTP or a click firehose solves different problems.
Full Explanation
OCI Queue is the Domain 3 choice when microservice producers and consumers must scale independently and tasks must remain durable until successful delete, with failed processing isolatable on a dead-letter queue. Always-on request/response fits API Gateway plus Functions or OKE. High-volume click or telemetry firehoses fit Streaming. Bucket or resource state changes fit Events.