My case is as follows, processing one event takes from 30s up to 3min. I am creating/(event hub is receiving) around 100k-300k events every day. What I created is an Event Hub with 32 partitions (max available for standard plan), an Consumer plan Azure function.
But the problem is that, the Azure function is scaling up to 32 instances, which is not enough. The workaround that I can think of is to create another Function App and connect it to the same Consumer Group. But that does not sound like a reasonable solution.
Can I increase the number available Function Instances in any other way that is more appropriate?