如何在 Azure 数据工厂中为 Blob 接收器定义翻转文件大小?
How can I define roll over file size in Azure Data Factory for Blob sink?
我想将大型数据库 table 复制到 Azure Blob 存储,但我希望 Azure Blob 存储中的每个文件不超过特定大小。 Azure 数据工厂中是否有一种方法可以定义这种滚动大小?因为我看不到。
Microsoft Azure 不提供每个容器的限制。 Azure 提供块 blob 或附加 blob 中的最大块数为(50,000 个块),块 blob 中块的最大大小为(4000 MiB),块 blob 的最大大小为(50,000 X 4000 MiB(大约 190.7 TiB))。根据您的要求,在移动到 azure blob 之前,您必须限制大型数据库 table 中的某些数据。请参考Azure subscription limits and quotas - Azure Resource Manager | Microsoft Docs
我想将大型数据库 table 复制到 Azure Blob 存储,但我希望 Azure Blob 存储中的每个文件不超过特定大小。 Azure 数据工厂中是否有一种方法可以定义这种滚动大小?因为我看不到。
Microsoft Azure 不提供每个容器的限制。 Azure 提供块 blob 或附加 blob 中的最大块数为(50,000 个块),块 blob 中块的最大大小为(4000 MiB),块 blob 的最大大小为(50,000 X 4000 MiB(大约 190.7 TiB))。根据您的要求,在移动到 azure blob 之前,您必须限制大型数据库 table 中的某些数据。请参考Azure subscription limits and quotas - Azure Resource Manager | Microsoft Docs