こんにちは、コピー アクティビティに Azure Data Factory を使用しています。コピーをコンテナー全体で再帰的にしたいのですが、サブフォルダーは次のようになります: myfolder/Year/Month/Day/Hour}/New_Generated_File.csv
生成してフォルダーにインポートするファイルには、常に異なる名前が付けられています。
問題は、活動がいつまでも待っているように見えることです。
パイプラインは 1 時間ごとにスケジュールされます。
データセットとリンクされたサービスの json コードを添付しています。
データセット:
{
"name": "Txns_In_Blob",
"properties": {
"structure": [
{
"name": "Column0",
"type": "String"
},
[....Other Columns....]
],
"published": false,
"type": "AzureBlob",
"linkedServiceName": "LinkedService_To_Blob",
"typeProperties": {
"folderPath": "uploadtransactional/yearno={Year}/monthno={Month}/dayno={Day}/hourno={Hour}/{Custom}.csv",
"format": {
"type": "TextFormat",
"rowDelimiter": "\n",
"columnDelimiter": " "
}
},
"availability": {
"frequency": "Hour",
"interval": 1
},
"external": true,
"policy": {}
}
}
連携サービス:
{
"name": "LinkedService_To_Blob",
"properties": {
"description": "",
"hubName": "dataorchestrationsystem_hub",
"type": "AzureStorage",
"typeProperties": {
"connectionString": "DefaultEndpointsProtocol=https;AccountName=wizestorage;AccountKey=**********"
}
}
}