I have an existing system which uploads entities to Azure Table Storage in response to usage of our product. I am tasked with keeping a separate analytics system up to date with a copy of all entities stored in Azure Table Storage.
I have written a process to list all existing entities on Azure and import them into the analytics system. This allows me to run a once-off import of the Azure Table data into the analytics system. This is working and I have completed a once-off import.
I now need to keep the system up to date as new items are uploaded to Azure Table Storage.
I had hoped to run an Azure Function in response to a new item being added to Table Storage, but it appears that Azure Table Storage cannot be used as a trigger for Azure functions.
The next approach I was considering was to somehow list any new items on table storage. I have easy access to the most recent Partition Key, Row Key and Timestamp of the entity added to the analytics system, but I cannot find a way to any list entities with a timestamp greater than some give timestamp using the NodeJS Azure SDK. If I could list the new entities, then I would be able to periodically query for new entities and add them to the analytics system.
Is there a way to be notified of new uploads to Table Storage? Or to list any items created after a given timestamp?