grundprinzip commented on code in PR #39995:
URL: https://github.com/apache/spark/pull/39995#discussion_r1114948149
##########
connector/connect/common/src/main/protobuf/spark/connect/base.proto:
##########
@@ -183,6 +183,85 @@ message ExecutePlanResponse {
}
}
+// Request to update or fetch the configurations.
+message ConfigRequest {
Review Comment:
maybe more like
```
message ConfigRequest {
oneof type {
GetConfig get_config = 1;
SetConfig set_config = 2;
}
message GetConfig {
repeated string keys = 1;
}
message SetConfig {
repeated KeyValue pairs = 1;
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]