DEV Community

Discussion on: Ordered queue processing in Azure Functions with Sessions

Collapse
 
jwisener profile image
Jason Wisener • Edited

Hi Jeff, thanks for the great article and example. One question I had. If you are using topics and subscriptions, is the session lock at the subscription level?

For example if you had two subscriptions (session enabled) with the enforce ordering on the topic. I assume the 2 subscriptions would both get copies of the messages (in order), if you had two azure functions each listening to a respective subscription, the order of those triggering functions maybe in any order?

I think the order of the messages themselves would be in-order delivered to each function. But the functions could possibly execute at the same or different times?