Search code examples
amazon-s3azure-storageazure-blob-storageamazon-athena

Azure Equivalent of AWS Athena over s3


I have an AWS workload that stores csv files in partitions in s3 and then queries the data with SQL queries using Athena, writing the results back to s3.

I'm looking for an equivalent behavior in Azure, where I could store csv files in a storage and query them and write the results back to that storage.


Solution

  • Based on the information provided on AWS to Azure services comparison, the equivalent service in Azure is Azure Data Lake Analytics. For Storage, S3 equivalent service would be Azure Data Lake Storage which is built on top of Azure Blob Storage.

    enter image description here