Design a scalable Webhook delivery service. Users register a callback URL paired with an eventId. Whenever that eventId is triggered, the system must call the registered callback address with a specific payload. Constraints: each eventId maps to exactly one unique callback address (one-to-one mapping). The system must handle up to…