Skip to content

Commit

Permalink
[DataFactory] Add optional property disableChunking in FTP and SFTP r…
Browse files Browse the repository at this point in the history
…ead settings (#16633)

* [DataFactory] Add optional property disableChunking in FTP and SFTP read settings

* Add "disableChunking" in Synapse stable version
  • Loading branch information
yew authored Nov 12, 2021
1 parent 8fa31bd commit 9e8a591
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,10 @@
"useBinaryTransfer": {
"type": "boolean",
"description": "Specify whether to use binary transfer mode for FTP stores."
},
"disableChunking": {
"type": "object",
"description": "If true, disable parallel reading within each file. Default is false. Type: boolean (or Expression with resultType boolean)."
}
}
},
Expand Down Expand Up @@ -836,6 +840,10 @@
"modifiedDatetimeEnd": {
"type": "object",
"description": "The end of file's modified datetime. Type: string (or Expression with resultType string)."
},
"disableChunking": {
"type": "object",
"description": "If true, disable parallel reading within each file. Default is false. Type: boolean (or Expression with resultType boolean)."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,10 @@
"useBinaryTransfer": {
"type": "boolean",
"description": "Specify whether to use binary transfer mode for FTP stores."
},
"disableChunking": {
"type": "object",
"description": "If true, disable parallel reading within each file. Default is false. Type: boolean (or Expression with resultType boolean)."
}
}
},
Expand Down Expand Up @@ -699,6 +703,10 @@
"modifiedDatetimeEnd": {
"type": "object",
"description": "The end of file's modified datetime. Type: string (or Expression with resultType string)."
},
"disableChunking": {
"type": "object",
"description": "If true, disable parallel reading within each file. Default is false. Type: boolean (or Expression with resultType boolean)."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,10 @@
"useBinaryTransfer": {
"type": "boolean",
"description": "Specify whether to use binary transfer mode for FTP stores."
},
"disableChunking": {
"type": "object",
"description": "If true, disable parallel reading within each file. Default is false. Type: boolean (or Expression with resultType boolean)."
}
}
},
Expand Down Expand Up @@ -699,6 +703,10 @@
"modifiedDatetimeEnd": {
"type": "object",
"description": "The end of file's modified datetime. Type: string (or Expression with resultType string)."
},
"disableChunking": {
"type": "object",
"description": "If true, disable parallel reading within each file. Default is false. Type: boolean (or Expression with resultType boolean)."
}
}
},
Expand Down

0 comments on commit 9e8a591

Please sign in to comment.