An Azure service that provides an event-driven serverless compute platform.
Hi Ayush Mishra •,
Your time-triggered approach to scan and process blobs is valid and gives you more control. To improve it:
- Track processed blobs (e.g., using metadata or a database) to avoid duplicates.
- Use blob metadata/tags to mark completion.
- Optimize the cron interval for performance.
- Add error handling and retries for reliability.
- Consider parallel processing for large blob sets.