Learning a lot from your course! Is there some name to this pattern, where event is saved in DB to make sure idempotency when sending emails? It's similar to Outbox, but kinda in reverse.
Hi Shiva, can we implement Outbox pattern in notification service as well? Since there is a chance to loose the events if there is any issue while sending email notifications, we can save the events to DB with a flag (isNotificationSent) and have a job to send emails and update the flag once done.
This is great no words... Excellent... I pray ur channel grows
Thanks for the video! Greetins from Argentina! .
Learning a lot from your course! Is there some name to this pattern, where event is saved in DB to make sure idempotency when sending emails? It's similar to Outbox, but kinda in reverse.
I followed Outbox Pattern described in microservices.io/patterns/data/transactional-outbox.html.
hi sir..
can you please make a video on how to secure our microservices by using spring security by api gateway
Hi Shiva, can we implement Outbox pattern in notification service as well? Since there is a chance to loose the events if there is any issue while sending email notifications, we can save the events to DB with a flag (isNotificationSent) and have a job to send emails and update the flag once done.
Yes, you can apply same pattern in notification service also.