Hacker News new | ask | show | jobs
by rammy1234 747 days ago
My 2 cents - There is no anti-pattern specific to event driven. It is essentially asynchronous nature. It means you start with understanding the business needs and SLA. Question often comes in my experience is "can they wait?" and what's the risk of dirty data or data fetched with delay ( worst case ). event driven is always about worst case scenario and will it work then.
1 comments

The main anti pattern is making the wrong choice; using async when sync fits better.