EventsSourcing-on-Azure-Functions icon indicating copy to clipboard operation
EventsSourcing-on-Azure-Functions copied to clipboard

[Example] Move "work" out of the trigger functions for interest accrual/payment

Open MerrionComputing opened this issue 5 years ago • 0 comments

The HTTP trigger functions for these two get the set of all the accounts to process - this is innefficient and runs the risk of the trigger function timing out. (20k entities seems to be the limit for this)

It should be changed such that a durable functions activity does that part of the job so that iot does not time out and can potentially be performed in parallel.

MerrionComputing avatar Feb 17 '20 07:02 MerrionComputing