Building Event-Driven Microservices - Chapter 10 - Basic Producer and Consumer Microservices
Basic Producer and Consumer (BPC) is a simple pattern for creating microservices. It forms the foundation of stateless and stateful services.
You can use it for:
- interfacing layer between event streams and legacy systems
- leverage external stream processing systems to augment capabilities.
But it requires your extra effort for:
- simple state materialization
- event scheduling
- timestamp-based decision making
All of these is disclosed in the Chapter 10 of the book we are currently studying: