1

错误: 复制活动在“源”端遇到存储操作失败。来自存储执行的错误消息:未找到请求的值“AppendBlob”。

我最初试图将 blob 复制到 prem sql 上,但收到了上述错误。只是为了测试,我试图将 blob 复制到 blob,但仍然收到相同的错误。

我可以看到容器中的斑点。但似乎 azure 数据工厂复制活动无法访问它。AppendBlobs 是否适用于 azure 数据工厂复制活动?任何其他人遇到这个问题,关于如何解决的任何想法?

谢谢。

Azure 数据工厂 JSON 定义文件:

输入块:

{
"name": "InputBlobTest",
"properties": {
    "published": false,
    "type": "AzureBlob",
    "linkedServiceName": "AzureStorageLinkedService",
    "typeProperties": {
        "fileName": "ContractHeader.csv",
        "folderPath": "testcontainer/",
        "format": {
            "type": "TextFormat",
            "rowDelimiter": "\n",
            "columnDelimiter": ","
        }
    },
    "availability": {
        "frequency": "Hour",
        "interval": 1
    },
    "external": true,
    "policy": {
        "externalData": {
            "retryInterval": "00:01:00",
            "retryTimeout": "00:10:00",
            "maximumRetry": 3
        }
    }
}

输出块:

{
"name": "OutputBlobTest",
"properties": {
    "published": false,
    "type": "AzureBlob",
    "linkedServiceName": "AzureStorageLinkedService",
    "typeProperties": {
        "fileName": "Sample.csv",
        "folderPath": "testcontainer/",
        "format": {
            "type": "TextFormat",
            "rowDelimiter": "\n",
            "columnDelimiter": ","
        }
    },
    "availability": {
        "frequency": "Hour",
        "interval": 1
    }
}

管道:

{
"name": "PipelineBlobToBlob",
"properties": {
    "description": "Copy data from a blob to Azure SQL table",
    "activities": [
        {
            "type": "Copy",
            "typeProperties": {
                "source": {
                    "type": "BlobSource",
                    "skipHeaderLineCount": 1
                },
                "sink": {
                    "type": "BlobSink",
                    "writeBatchSize": 0,
                    "writeBatchTimeout": "00:00:00"
                }
            },
            "inputs": [
                {
                    "name": "InputBlobTest"
                }
            ],
            "outputs": [
                {
                    "name": "OutputBlobTest"
                }
            ],
            "policy": {
                "timeout": "01:00:00",
                "concurrency": 1,
                "executionPriorityOrder": "NewestFirst"
            },
            "scheduler": {
                "frequency": "Hour",
                "interval": 1
            },
            "name": "CopyFromBlobToBlob",
            "description": ""
        }
    ],
    "start": "2015-07-12T00:00:00Z",
    "end": "2015-07-12T01:00:00Z",
    "isPaused": false
}
4

1 回答 1

0

收到确认,Azure 数据工厂复制活动当前不支持附加 blob。

于 2016-05-31T17:49:52.647 回答