MerrionComputing / EventsSourcing-on-Azure-Functions

A library to demonstrate doing Event Sourcing as a data persistence mechanism for Azure Functions
MIT License
103 stars 20 forks source link

Orchestration of "pay accrued interest" is innefficient #25

Closed MerrionComputing closed 4 years ago

MerrionComputing commented 4 years ago

Currently the orchestration is done for all accounts in 2 waitall() loops.

It would be more efficient if a single wait-all had a sub-orchestration with the two command steps.

MerrionComputing commented 4 years ago

Fixed with change to a sub-orchestration based system.