0

With a CosmosDb-trigger function-binding to process a change feed, do I need to handle the possibility that multiple functions can be running concurrently, processing different parts of the change feed?

If not, am I right to consider that this means there is a potential performance bottleneck? (in that it may be possible for data to be ingested by multiple instances, faster than a single instance can process the feed).

Lee
  • 1,591
  • 1
  • 14
  • 28

1 Answers1

0

Yes I need to handle the possibility. And there shouldn't be a performance bottleneck.

See Matias' answer at cosmosdb-change-feed-scaling, which goes into more detail.

Lee
  • 1,591
  • 1
  • 14
  • 28