jcamachor commented on a change in pull request #794: HIVE-21884
URL: https://github.com/apache/hive/pull/794#discussion_r332263885
##########
File path:
standalone-metastore/metastore-common/src/main/thrift/hive_metastore.thrift
##########
@@ -1754,6 +1754,57 @@ struct CreateTableRequest {
10: optional string processorIdentifier
}
+struct ScheduledQueryPollRequest {
+ 1: required string clusterNamespace
+}
+
+struct ScheduledQueryPollResponse {
+ 1: optional ScheduledQueryKey scheduleKey,
+ 2: optional i64 executionId,
+ 3: optional string query,
+ 4: optional string user,
+}
+
+struct ScheduledQueryKey {
+ 1: required string scheduleName,
+ 2: required string clusterNamespace,
+}
+
+struct ScheduledQuery {
+ 1: required ScheduledQueryKey scheduleKey,
+ 2: optional bool enabled,
+ 4: optional string schedule,
+ 5: optional string user,
+ 6: optional string query,
+ 7: optional i32 nextExecution,
+}
+
+enum ScheduledQueryMaintenanceRequestType {
+ INSERT = 1,
Review comment:
We can change the enum keys here (left similar comment above).
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]