InterviewSolution
| 1. |
What is event sourcing in microservices architecture? |
|
Answer» In the microservices architecture, it is possible that due to service boundaries, a lot of TIMES you need to update one or more entities on the state change of one of the entities. In that case, one needs to publish a message and new event gets created and appended to already executed events. In case of FAILURE, one can replay all events in the same sequence and you will get the DESIRED state as required. You can think of event sourcing as your bank account statement. You will start your account with initial money. Then all of the credit and debit events happen and the latest state is generated by calculating all of the events one by one. In a case where events are too many, the application can create a periodic SNAPSHOT of events so that there isn’t any need to replay all of the events again and again. |
|