networknt / microservices-framework-benchmark

Raw benchmarks on throughput, latency and transfer of Hello World on popular microservices frameworks
MIT License
705 stars 127 forks source link

Microservices Use Cases Design #15

Open stevehu opened 7 years ago

stevehu commented 7 years ago

So far we just have a use case to gauge the raw throughput and the latency of each framework under load. For real microservices, service to service calls are adding latency and it is a critical test. I am thinking about to implement several microservice patterns with database access involved. Currently, I am planning to implement two typical pattens.

Aggregator: A calls B, C, D. Chain: A calls B, B calls C, C calls D.

All inputs are welcome and let's work together to design the use cases to cover majority business scenarios. Thanks.