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 (Azure#16633)

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

* Add "disableChunking" in Synapse stable version
  • Loading branch information
yew authored and LeiWang3 committed Mar 31, 2022
1 parent 11dec78 commit ac40a97
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 ac40a97

Please sign in to comment.