Skip to content

Commit 02d394f

Browse files
committed
Merge branch 'patch-1' of https://github.com/bowrna/azure-docs into 2023-09-25-merge-public-prs
2 parents 63f426e + c0069ff commit 02d394f

File tree

1 file changed

+37
-33
lines changed

1 file changed

+37
-33
lines changed

articles/data-factory/copy-activity-fault-tolerance.md

Lines changed: 37 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -42,42 +42,46 @@ To configure fault tolerance in a Copy activity in a pipeline with UI, complete
4242
When you copy binary files between storage stores, you can enable fault tolerance as followings:
4343

4444
```json
45-
"typeProperties": {
46-
"source": {
47-
"type": "BinarySource",
48-
"storeSettings": {
49-
"type": "AzureDataLakeStoreReadSettings",
50-
"recursive": true
51-
}
52-
},
53-
"sink": {
54-
"type": "BinarySink",
55-
"storeSettings": {
56-
"type": "AzureDataLakeStoreWriteSettings"
57-
}
58-
},
59-
"skipErrorFile": {
60-
"fileMissing": true,
61-
"fileForbidden": true,
62-
"dataInconsistency": true,
63-
"invalidFileName": true
64-
},
65-
"validateDataConsistency": true,
45+
{
46+
"name": "CopyActivityFaultTolerance",
47+
"type": "Copy",
48+
"typeProperties": {
49+
"source": {
50+
"type": "BinarySource",
51+
"storeSettings": {
52+
"type": "AzureDataLakeStoreReadSettings",
53+
"recursive": true
54+
}
55+
},
56+
"sink": {
57+
"type": "BinarySink",
58+
"storeSettings": {
59+
"type": "AzureDataLakeStoreWriteSettings"
60+
}
61+
},
62+
"skipErrorFile": {
63+
"fileMissing": true,
64+
"fileForbidden": true,
65+
"dataInconsistency": true,
66+
"invalidFileName": true
67+
},
68+
"validateDataConsistency": true,
6669
"logSettings": {
67-
"enableCopyActivityLog": true,
68-
"copyActivityLogSettings": {
69-
"logLevel": "Warning",
70-
"enableReliableLogging": false
70+
"enableCopyActivityLog": true,
71+
"copyActivityLogSettings": {
72+
"logLevel": "Warning",
73+
"enableReliableLogging": false
74+
},
75+
"logLocationSettings": {
76+
"linkedServiceName": {
77+
"referenceName": "ADLSGen2",
78+
"type": "LinkedServiceReference"
7179
},
72-
"logLocationSettings": {
73-
"linkedServiceName": {
74-
"referenceName": "ADLSGen2",
75-
"type": "LinkedServiceReference"
76-
},
77-
"path": "sessionlog/"
78-
}
80+
"path": "sessionlog/"
81+
}
7982
}
80-
}
83+
}
84+
}
8185
```
8286
Property | Description | Allowed values | Required
8387
-------- | ----------- | -------------- | --------

0 commit comments

Comments
 (0)