gpt4 book ai didi

Azure 数据工厂复制 liveness 能调整

转载 作者:行者123 更新时间:2023-12-02 18:08:09 26 4
gpt4 key购买 nike

https://learn.microsoft.com/en-us/azure/data-factory/data-factory-load-sql-data-warehouse 。根据此链接,使用 1000 DWU 和 Polybase 我应该获得 200MBps 的吞吐量。但我得到了 4.66 MBps。我在 xlargerc 资源类中添加了用户,以从 azure sql 数据仓库实现最佳吞吐量。

下面是管道 JSON。

                         {
"name": "UCBPipeline-Copy",
"properties": {
"description": "pipeline with copy activity",
"activities": [
{
"type": "Copy",
"typeProperties": {
"source": {
"type": "BlobSource"
},
"sink": {
"type": "SqlDWSink",
"allowPolyBase": true,
"writeBatchSize": 0,
"writeBatchTimeout": "00:00:00"
},
"cloudDataMovementUnits": 4
},
"inputs": [
{
"name": "USBBlob_Concept
}
],
"outputs": [
{
"name": "AzureDW_Concept"
}
],
"policy": {
"timeout": "01:00:00",
"concurrency": 1
},
"scheduler": {
"frequency": "Day",
"interval": 1
},
"name": "AzureBlobtoSQLDW_Concept",
"description": "Copy Activity"
}
],
"start": "2017-02-28T18:00:00Z",
"end": "2017-03-01T19:00:00Z",
"isPaused": false,
"hubName": "sampledf1_hub",
"pipelineMode": "Scheduled"
}
}

输入数据集:

{
"name": "AzureBlob_Concept",
"properties": {
"published": false,
"type": "AzureBlob",
"linkedServiceName": "AzureZRSStorageLinkedService",
"typeProperties": {
"fileName": "conceptTab.txt",
"folderPath": "source/",
"format": {
"type": "TextFormat",
"columnDelimiter": "\t"
}
},
"availability": {
"frequency": "Day",
"interval": 1
},
"external": true,
"policy": {}
}
}

输出数据集:

{
"name": "AzureDW_Concept",
"properties": {
"published": false,
"type": "AzureSqlDWTable",
"linkedServiceName": "AzureSqlDWLinkedService",
"typeProperties": {
"tableName": "concept"
},
"availability": {
"frequency": "Day",
"interval": 1
}
}
}

配置中是否缺少任何内容?

最佳答案

我查看了 runId“e98ac557-a507-4a6e-8833-978eff1723c3”,它应该属于您的复制事件。从我们的服务日志来看,源文件不够大(在您的情况下为 270 MB),因此服务调用延迟会使吞吐量不够好。您可以尝试加载更大的文件以获得更好的吞吐量。

关于Azure 数据工厂复制 liveness 能调整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42663582/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com