@@ -42,42 +42,46 @@ To configure fault tolerance in a Copy activity in a pipeline with UI, complete
42
42
When you copy binary files between storage stores, you can enable fault tolerance as followings:
43
43
44
44
``` 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 ,
66
69
"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"
71
79
},
72
- "logLocationSettings" : {
73
- "linkedServiceName" : {
74
- "referenceName" : " ADLSGen2" ,
75
- "type" : " LinkedServiceReference"
76
- },
77
- "path" : " sessionlog/"
78
- }
80
+ "path" : " sessionlog/"
81
+ }
79
82
}
80
- }
83
+ }
84
+ }
81
85
```
82
86
Property | Description | Allowed values | Required
83
87
-------- | ----------- | -------------- | --------
0 commit comments