Hi Andrew Yanni,
Welcome to Microsoft Q&A Forum, thank you for posting your query here!
If you are looking for a solution specific to a particular storage account, here’s an approach to consider.
You can append data to a blob by creating an append blob. Append blobs are made up of blocks like block blobs but are optimized for append operations. Append blobs are ideal for scenarios such as logging data from virtual machines.
Please make sure you enable Change feed option in your storage account
However, we have some limitations here
- Maximum Size: An append blob can grow up to a maximum size of 195 GB12. This might be insufficient for some large-scale applications.
- Block Limit: Each append blob can contain up to 50,000 blocks, with each block being up to 4 MB in size12.
- No Random Write Operations: Append blobs are designed for append-only operations, meaning you cannot perform random read-write operations
- No Tiering Support: Append blobs do not support tiering, so you cannot move them between different access tiers like hot, cool, or archive.
For more information Refer below links:
https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs
https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blob-change-feed?tabs=azure-portal
https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blob-append
Please do not forget to "Accept the answer” wherever the information provided helps you, this can be beneficial to other community members.