Hi Nagur Shaik,
Thank you for reaching out to Microsoft Q&A
Azure Event Trigger does not support batching. Reference: https://stackoverflow.com/questions/69572929/event-grid-batching-behavior
But Event grid does, so instead of using Event Grid Function you can use an HTTP-triggered Azure Function to receive the full array of events and process all blobs in one go. This lets you handle true batch logic in a single execution.
Another approach is using Blob Trigger: Blob Trigger always fires once per blob and does not support batching. To achieve batch processing, use an aggregation pattern such as Durable Functions or a queue-based approach. Each Blob Trigger invocation adds blob names to a queue or orchestrator, which collects items for a time window or count threshold and then processes them together as a batch.