azureservicebus - Will abandoned session ids have any impact on azure service bus performance? -
scenario: send messages (of same type) a queue multiple senders. each sender send groups of messages tied unique session id given group. there not limit number of groups. on consuming side, have multiple receivers.
question: if receivers not call await session.closeasync() on last message in group, there performance implications down road in our instance of azure service bus?
with message sessions, closing session indicates other receiver can pick session , continue processing (message sessions can processed single receiver ensure fifo semantics). should strive close session when it's no longer needed or over. way client can start processing messages session pending processing.
there sample explanation how sessions work clemens might have @ well.
Comments
Post a Comment