Updated Book Rating Fail (v1.0.0)
Represents a failed integration event when updating a book's rating in the system
Overview
This event represents a failed integration event when updating a book’s rating in the system. The BookUpdatedRatingFailedIntegrationEvent
is a domain event that captures the failure to update a book’s rating in the Catalog bounded context. It carries the necessary value objects including the book identity, the failed rating value, and the error message to notify the system about the failed operation. This event adheres to the ubiquitous language of our domain and serves as the contract between the Catalog and external systems, facilitating the transition from a successful rating update to a failed one.
Purpose
The BookUpdatedRatingFailedIntegrationEvent
serves several important purposes in the system:
- Error Handling: It provides a mechanism to handle cases where a book rating update fails, ensuring system consistency.
- Compensation: It enables the Rating service to clean up any partially created feedback when the book rating update fails.
- System Resilience: It helps maintain system integrity by allowing services to roll back or clean up failed operations.
Usage
This event is typically published in the following scenarios:
- When attempting to update a book’s rating but the book doesn’t exist in the Catalog service
- When there’s a failure in the rating update process in the Catalog service
- When the integration between Rating and Catalog services fails
Event Flow
- The Rating service creates a new feedback
- The Catalog service attempts to update the book’s rating
- If the update fails, this event is published
- The Rating service receives the event and deletes the associated feedback
Event Structure
The event contains the following key information:
FeedbackId
: The unique identifier of the feedback that needs to be deletedTimestamp
: When the failure occurred
Consumer Behavior
The BookUpdatedRatingFailedIntegrationEventHandler
in the Rating service:
- Receives the event
- Retrieves the feedback by ID
- If the feedback exists:
- Deletes the feedback
- Saves the changes to the database
- If the feedback doesn’t exist, gracefully returns without taking action
Examples
Publishing the Event
await publishEndpoint.Publish(new BookUpdatedRatingFailedIntegrationEvent(feedbackId));
Handling the Event
public async Task Consume(ConsumeContext<BookUpdatedRatingFailedIntegrationEvent> context){ var @event = context.Message; var feedback = await repository.GetByIdAsync(@event.FeedbackId);
if (feedback is null) { return; }
repository.Delete(feedback); await repository.UnitOfWork.SaveEntitiesAsync();}
Architecture
Related Events
FeedbackCreatedIntegrationEvent
: The event that triggers the rating update process