user989988
user989988

Reputation: 3736

Activity function in Durable Function

I'm converting an Azure Function to Durable Function. Currently, I have added one Activity function. Is there any benefit in adding multiple Activity functions instead of one (for instance, cost reduction, less completion time)?

Upvotes: 0

Views: 283

Answers (1)

ZZZSharePoint
ZZZSharePoint

Reputation: 1351

If you have just one Activity function , then I dont see a reason, why you should go for a Durable function. Durable function is meant for operations taking long time which cant be handled due to Timeout issues. with multiple activity, you divide your tasks in multiple function, each taking their time to complete before triggering other

Upvotes: 1

Related Questions