-
Notifications
You must be signed in to change notification settings - Fork 5.6k
[Data Factory]Add ORC Dataset/Copy Source/Copy Sink #7040
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -776,6 +776,21 @@ | |
| } | ||
| } | ||
| }, | ||
| "OrcSource": { | ||
| "description": "A copy activity ORC source.", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One more thing is that where
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is the similiar usage. In specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/datafactory.json Sink is almost the same as Source.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do you use x-ms-discriminator-value in "OrcDataset" not in "OrcSource"?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because the real value we want for customer to use is "Orc" but not "OrcDataset".
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @TinaHu1 Thanks for your detailed explanation. Just ensure everything is in the right way. 😊 |
||
| "type": "object", | ||
| "allOf": [ | ||
| { | ||
| "$ref": "#/definitions/CopySource" | ||
| } | ||
| ], | ||
| "properties": { | ||
| "storeSettings": { | ||
| "$ref": "#/definitions/StoreReadSettings", | ||
| "description": "ORC store settings." | ||
| } | ||
| } | ||
| }, | ||
| "DelimitedTextSink": { | ||
| "description": "A copy activity DelimitedText sink.", | ||
| "type": "object", | ||
|
|
@@ -814,6 +829,21 @@ | |
| } | ||
| } | ||
| }, | ||
| "OrcSink": { | ||
| "description": "A copy activity ORC sink.", | ||
| "type": "object", | ||
| "allOf": [ | ||
| { | ||
| "$ref": "#/definitions/CopySink" | ||
| } | ||
| ], | ||
| "properties": { | ||
| "storeSettings": { | ||
| "$ref": "#/definitions/StoreWriteSettings", | ||
| "description": "ORC store settings." | ||
| } | ||
| } | ||
| }, | ||
| "CopyActivity": { | ||
| "x-ms-discriminator-value": "Copy", | ||
| "description": "Copy activity.", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.