Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR datafactory] [Data Factory]Add maxRowPerFile/fileNamePrefix to tabular format settings #266

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 47 additions & 2 deletions schemas/2018-06-01/Microsoft.DataFactory.json
Original file line number Diff line number Diff line change
Expand Up @@ -5878,6 +5878,12 @@
},
{
"$ref": "#/definitions/DatasetZipDeflateCompression"
},
{
"$ref": "#/definitions/DatasetTarCompression"
},
{
"$ref": "#/definitions/DatasetTarGZipCompression"
}
],
"properties": {
Expand Down Expand Up @@ -6058,6 +6064,41 @@
},
"description": "The format definition of a storage."
},
"DatasetTarCompression": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"Tar"
]
}
},
"required": [
"type"
],
"description": "The Tar archive method used on a dataset."
},
"DatasetTarGZipCompression": {
"type": "object",
"properties": {
"level": {
"type": "object",
"properties": {},
"description": "The TarGZip compression level."
},
"type": {
"type": "string",
"enum": [
"TarGZip"
]
}
},
"required": [
"type"
],
"description": "The TarGZip compression method used on a dataset."
},
"DatasetZipDeflateCompression": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -6355,7 +6396,9 @@
"bzip2",
"deflate",
"zipDeflate",
"lz4"
"lz4",
"tar",
"tarGZip"
]
},
{
Expand Down Expand Up @@ -14374,7 +14417,9 @@
"bzip2",
"deflate",
"zipDeflate",
"lz4"
"lz4",
"tar",
"tarGZip"
]
},
{
Expand Down