Home > Enterprise >  Azure Data Factory ForEach activity pricing
Azure Data Factory ForEach activity pricing

Time:07-07

I'm having a hard time understanding how ADF will be charged in the following scenario

1 pipeline, 2 activities with 1 being a ForEach which will loop 1000 times. Activity inside the ForEach is a stored procedure.

enter image description here

So will this be 2 activity runs or more than 1000?

CodePudding user response:

You can see the result in ADF monitor - but it will be 1002 activities at $1/1000 (or whatever the current rate is).

It's much cheaper (if you mind the dollar) if you can pass the list into your proc; the lookup.output field is just json with your table list in it, which you could parse in the proc. https://docs.microsoft.com/en-us/azure/data-factory/pricing-concepts

  • Related