I have an Azure CDN and all my raw logs (every request made to the CDN) goes to my Azure Blob Storage formatted as "JSON Lines". (these are AzureCdnAccessLog)
I am looking to process those logs (every 10-20 minutes) to count the number of times each resource has been accessed, when and from which platform etc... and output the result to my Azure SQL Database.
What is the best solution to batch process those logs on Azure?
Thank you in advance for your aswers.