Azure 相当于 AWS Athena over s3
Azure Equivalent of AWS Athena over s3
我有一个 AWS 工作负载,它在 s3 的分区中存储 csv 文件,然后使用 Athena 通过 SQL 查询查询数据,将结果写回 s3。
我正在寻找 Azure 中的等效行为,我可以在其中将 csv 文件存储在存储中并查询它们并将结果写回该存储。
与 Azure 中的 Amazon Athena 等效的服务将是 Data Lake Analytics as per this Microsoft doc。
另外根据 this 文档 Azure 相当于 Athena 是 Data Lake Analytics。与 Athena 一样,它也是“无服务器”和按使用付费的。它使用 U-SQL,它是 SQL 和 C# 的组合,提供了 SQL 单独无法提供的强大功能和灵活性。 Data Lake Analytics 的一个优点是它不仅限于查询 Azure Data Lake Store 和 Blob Storage,它还可以与 SQL 数据库和 SQL 数据仓库对话。
基于 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
上提供的信息。
我有一个 AWS 工作负载,它在 s3 的分区中存储 csv 文件,然后使用 Athena 通过 SQL 查询查询数据,将结果写回 s3。
我正在寻找 Azure 中的等效行为,我可以在其中将 csv 文件存储在存储中并查询它们并将结果写回该存储。
与 Azure 中的 Amazon Athena 等效的服务将是 Data Lake Analytics as per this Microsoft doc。
另外根据 this 文档 Azure 相当于 Athena 是 Data Lake Analytics。与 Athena 一样,它也是“无服务器”和按使用付费的。它使用 U-SQL,它是 SQL 和 C# 的组合,提供了 SQL 单独无法提供的强大功能和灵活性。 Data Lake Analytics 的一个优点是它不仅限于查询 Azure Data Lake Store 和 Blob Storage,它还可以与 SQL 数据库和 SQL 数据仓库对话。
基于 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
上提供的信息。