I am using Event Hubs to process data that is flowing into my system. I have implemented an IEventProcessor and the messages are delivered to my ProcessEventsAsync method. I am typically seeing these messages delivered in batches of 10. I am doing quite a bit of volume in this Event Hub and I would like to get the messages in larger batches for processing efficiency. Is there a way for me to tell the Event Hub to deliver more than 10 messages at a time?
I see this option in EventHubReceiver.ReceiveAsync, but I do not see a way to do this for an IEventProcessor.
Thanks!
Bryan