Azure Service Bus allows to use sessioned entities(queues and topics), we use them to keep batching processing by the same consumer(if we send a batch from producer, it must be processed by the same consumer service). I cannot find any recommendations about max allowed sessions number per entity, we have 4 sessions for 1000 000 messages for now and I am wondered if we can increase the number. If we can, what is max possible value for my case?
Short info about my process: * 1 000 000 messages to be sent to ASB entity * Batch size is 100 messages * Number of sessions is 4 * ASB entities have enabled sessions and partitioning
Thank you