-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-53593][SDP] Add response field for DefineDataset and DefineFlow RPC #52328
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 32 commits
585ad11
1c89918
3c7d421
692579c
84b6d0f
30311cb
36811b4
3907448
7472e0c
7c425f9
11aca82
c032f7a
540baca
51921b9
5e4c7a4
2bd1ffe
983df42
2981e4d
6bd24a0
215e317
ffcc0df
d39132d
533743e
2b3ae69
a920e06
882ed02
017e1ea
541584e
f042af1
a4b309c
f196df9
26cadf8
7db13d6
e4a7f0f
39042fd
256d7d9
13beb23
762df1f
23ebeee
57f96c4
9f79fc9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,11 +48,6 @@ message PipelineCommand { | |
|
|
||
| // SQL configurations for all flows in this graph. | ||
| map<string, string> sql_conf = 5; | ||
|
|
||
| message Response { | ||
| // The ID of the created graph. | ||
| optional string dataflow_graph_id = 1; | ||
| } | ||
| } | ||
|
|
||
| // Drops the graph and stops any running attached flows. | ||
|
|
@@ -146,11 +141,26 @@ message PipelineCommand { | |
| message PipelineCommandResult { | ||
cookiedough77 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| oneof result_type { | ||
| CreateDataflowGraphResult create_dataflow_graph_result = 1; | ||
| DefineDatasetResult define_dataset_result = 2; | ||
| DefineFlowResult define_flow_result = 3; | ||
| } | ||
| message CatalogIdentifier { | ||
|
||
| optional string catalog = 1; | ||
| optional string database = 2; | ||
cookiedough77 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| optional string name = 3; | ||
| } | ||
| message CreateDataflowGraphResult { | ||
| // The ID of the created graph. | ||
| optional string dataflow_graph_id = 1; | ||
| } | ||
| message DefineDatasetResult { | ||
| // Resolved name of the dataset | ||
cookiedough77 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| optional CatalogIdentifier resolved_identifier = 1; | ||
| } | ||
| message DefineFlowResult { | ||
| // Resolved name of the flow | ||
cookiedough77 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| optional CatalogIdentifier resolved_identifier = 1; | ||
| } | ||
cookiedough77 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| // The type of dataset. | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.