0

I've been building a Datafactory pipeline to move data from my azure table storage to a datalake store, but the tasks fail with an exception that I can't find any information on. The error is

Copy activity encountered a user error: ErrorCode=UserErrorTabularCopyBehaviorNotSupported,'Type=Microsoft.DataTransfer.Common.Shared.HybridDeliveryException,Message=CopyBehavior property is not supported if the source is tabular data source.,Source=Microsoft.DataTransfer.ClientLibrary,'.

I don't know where the problem lies, if in the datasets, the linked services or the pipeline, and can't seem to find any info at all on the error I'm seeing on the console.

4

2 回答 2

1

由于当前不支持从 Azure 表存储到 Azure Data Lake Store 的复制行为作为临时解决方法,因此您可以从 Azure 表存储到 Azure Blob 存储再到 Azure Data Lake 存储。

Azure 表存储到 Azure Blob 存储

Azure Blob 存储到 Azure Data Lake Store

我知道这不是理想的解决方案,但如果您受到时间限制,这只是将数据导入数据湖的中间步骤。

HTH

于 2016-03-25T18:35:10.103 回答
0

您尝试在 ADF 复制活动中用作源的表存储(不是基于文件的存储)不支持“CopyBehaviour”属性。这就是您看到此错误消息的原因。

于 2016-03-25T00:28:22.457 回答