// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.28.1 // protoc v3.21.6 // source: greptime/v1/meta/procedure.proto package meta import ( protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" reflect "reflect" sync "sync" ) const ( // Verify that this generated code is sufficiently up-to-date. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) // Verify that runtime/protoimpl is sufficiently up-to-date. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) ) type ProcedureStatus int32 const ( ProcedureStatus_Running ProcedureStatus = 0 ProcedureStatus_Done ProcedureStatus = 1 ProcedureStatus_Retrying ProcedureStatus = 2 ProcedureStatus_Failed ProcedureStatus = 3 ProcedureStatus_PrepareRollback ProcedureStatus = 4 ProcedureStatus_RollingBack ProcedureStatus = 5 ProcedureStatus_Poisoned ProcedureStatus = 6 ) // Enum value maps for ProcedureStatus. var ( ProcedureStatus_name = map[int32]string{ 0: "Running", 1: "Done", 2: "Retrying", 3: "Failed", 4: "PrepareRollback", 5: "RollingBack", 6: "Poisoned", } ProcedureStatus_value = map[string]int32{ "Running": 0, "Done": 1, "Retrying": 2, "Failed": 3, "PrepareRollback": 4, "RollingBack": 5, "Poisoned": 6, } ) func (x ProcedureStatus) Enum() *ProcedureStatus { p := new(ProcedureStatus) *p = x return p } func (x ProcedureStatus) String() string { return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) } func (ProcedureStatus) Descriptor() protoreflect.EnumDescriptor { return file_greptime_v1_meta_procedure_proto_enumTypes[0].Descriptor() } func (ProcedureStatus) Type() protoreflect.EnumType { return &file_greptime_v1_meta_procedure_proto_enumTypes[0] } func (x ProcedureStatus) Number() protoreflect.EnumNumber { return protoreflect.EnumNumber(x) } // Deprecated: Use ProcedureStatus.Descriptor instead. func (ProcedureStatus) EnumDescriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{0} } type ResolveStrategy int32 const ( ResolveStrategy_UseLatest ResolveStrategy = 0 ResolveStrategy_UseMetasrv ResolveStrategy = 1 ResolveStrategy_AbortOnConflict ResolveStrategy = 2 ) // Enum value maps for ResolveStrategy. var ( ResolveStrategy_name = map[int32]string{ 0: "UseLatest", 1: "UseMetasrv", 2: "AbortOnConflict", } ResolveStrategy_value = map[string]int32{ "UseLatest": 0, "UseMetasrv": 1, "AbortOnConflict": 2, } ) func (x ResolveStrategy) Enum() *ResolveStrategy { p := new(ResolveStrategy) *p = x return p } func (x ResolveStrategy) String() string { return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) } func (ResolveStrategy) Descriptor() protoreflect.EnumDescriptor { return file_greptime_v1_meta_procedure_proto_enumTypes[1].Descriptor() } func (ResolveStrategy) Type() protoreflect.EnumType { return &file_greptime_v1_meta_procedure_proto_enumTypes[1] } func (x ResolveStrategy) Number() protoreflect.EnumNumber { return protoreflect.EnumNumber(x) } // Deprecated: Use ResolveStrategy.Descriptor instead. func (ResolveStrategy) EnumDescriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{1} } type ProcedureMeta struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Id *ProcedureId `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` TypeName string `protobuf:"bytes,2,opt,name=type_name,json=typeName,proto3" json:"type_name,omitempty"` Status ProcedureStatus `protobuf:"varint,3,opt,name=status,proto3,enum=greptime.v1.meta.ProcedureStatus" json:"status,omitempty"` StartTimeMs int64 `protobuf:"varint,4,opt,name=start_time_ms,json=startTimeMs,proto3" json:"start_time_ms,omitempty"` EndTimeMs int64 `protobuf:"varint,5,opt,name=end_time_ms,json=endTimeMs,proto3" json:"end_time_ms,omitempty"` LockKeys []string `protobuf:"bytes,6,rep,name=lock_keys,json=lockKeys,proto3" json:"lock_keys,omitempty"` Error string `protobuf:"bytes,7,opt,name=error,proto3" json:"error,omitempty"` } func (x *ProcedureMeta) Reset() { *x = ProcedureMeta{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ProcedureMeta) String() string { return protoimpl.X.MessageStringOf(x) } func (*ProcedureMeta) ProtoMessage() {} func (x *ProcedureMeta) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[0] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ProcedureMeta.ProtoReflect.Descriptor instead. func (*ProcedureMeta) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{0} } func (x *ProcedureMeta) GetId() *ProcedureId { if x != nil { return x.Id } return nil } func (x *ProcedureMeta) GetTypeName() string { if x != nil { return x.TypeName } return "" } func (x *ProcedureMeta) GetStatus() ProcedureStatus { if x != nil { return x.Status } return ProcedureStatus_Running } func (x *ProcedureMeta) GetStartTimeMs() int64 { if x != nil { return x.StartTimeMs } return 0 } func (x *ProcedureMeta) GetEndTimeMs() int64 { if x != nil { return x.EndTimeMs } return 0 } func (x *ProcedureMeta) GetLockKeys() []string { if x != nil { return x.LockKeys } return nil } func (x *ProcedureMeta) GetError() string { if x != nil { return x.Error } return "" } type QueryProcedureRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` Pid *ProcedureId `protobuf:"bytes,2,opt,name=pid,proto3" json:"pid,omitempty"` } func (x *QueryProcedureRequest) Reset() { *x = QueryProcedureRequest{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *QueryProcedureRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*QueryProcedureRequest) ProtoMessage() {} func (x *QueryProcedureRequest) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[1] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use QueryProcedureRequest.ProtoReflect.Descriptor instead. func (*QueryProcedureRequest) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{1} } func (x *QueryProcedureRequest) GetHeader() *RequestHeader { if x != nil { return x.Header } return nil } func (x *QueryProcedureRequest) GetPid() *ProcedureId { if x != nil { return x.Pid } return nil } type ProcedureStateResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` Status ProcedureStatus `protobuf:"varint,2,opt,name=status,proto3,enum=greptime.v1.meta.ProcedureStatus" json:"status,omitempty"` Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"` } func (x *ProcedureStateResponse) Reset() { *x = ProcedureStateResponse{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ProcedureStateResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ProcedureStateResponse) ProtoMessage() {} func (x *ProcedureStateResponse) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[2] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ProcedureStateResponse.ProtoReflect.Descriptor instead. func (*ProcedureStateResponse) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{2} } func (x *ProcedureStateResponse) GetHeader() *ResponseHeader { if x != nil { return x.Header } return nil } func (x *ProcedureStateResponse) GetStatus() ProcedureStatus { if x != nil { return x.Status } return ProcedureStatus_Running } func (x *ProcedureStateResponse) GetError() string { if x != nil { return x.Error } return "" } type ProcedureDetailRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` } func (x *ProcedureDetailRequest) Reset() { *x = ProcedureDetailRequest{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ProcedureDetailRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ProcedureDetailRequest) ProtoMessage() {} func (x *ProcedureDetailRequest) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[3] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ProcedureDetailRequest.ProtoReflect.Descriptor instead. func (*ProcedureDetailRequest) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{3} } func (x *ProcedureDetailRequest) GetHeader() *RequestHeader { if x != nil { return x.Header } return nil } type ProcedureDetailResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` Procedures []*ProcedureMeta `protobuf:"bytes,2,rep,name=procedures,proto3" json:"procedures,omitempty"` } func (x *ProcedureDetailResponse) Reset() { *x = ProcedureDetailResponse{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ProcedureDetailResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ProcedureDetailResponse) ProtoMessage() {} func (x *ProcedureDetailResponse) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ProcedureDetailResponse.ProtoReflect.Descriptor instead. func (*ProcedureDetailResponse) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{4} } func (x *ProcedureDetailResponse) GetHeader() *ResponseHeader { if x != nil { return x.Header } return nil } func (x *ProcedureDetailResponse) GetProcedures() []*ProcedureMeta { if x != nil { return x.Procedures } return nil } type ReconcileTable struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields CatalogName string `protobuf:"bytes,1,opt,name=catalog_name,json=catalogName,proto3" json:"catalog_name,omitempty"` SchemaName string `protobuf:"bytes,2,opt,name=schema_name,json=schemaName,proto3" json:"schema_name,omitempty"` TableName string `protobuf:"bytes,3,opt,name=table_name,json=tableName,proto3" json:"table_name,omitempty"` ResolveStrategy ResolveStrategy `protobuf:"varint,4,opt,name=resolve_strategy,json=resolveStrategy,proto3,enum=greptime.v1.meta.ResolveStrategy" json:"resolve_strategy,omitempty"` } func (x *ReconcileTable) Reset() { *x = ReconcileTable{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ReconcileTable) String() string { return protoimpl.X.MessageStringOf(x) } func (*ReconcileTable) ProtoMessage() {} func (x *ReconcileTable) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ReconcileTable.ProtoReflect.Descriptor instead. func (*ReconcileTable) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{5} } func (x *ReconcileTable) GetCatalogName() string { if x != nil { return x.CatalogName } return "" } func (x *ReconcileTable) GetSchemaName() string { if x != nil { return x.SchemaName } return "" } func (x *ReconcileTable) GetTableName() string { if x != nil { return x.TableName } return "" } func (x *ReconcileTable) GetResolveStrategy() ResolveStrategy { if x != nil { return x.ResolveStrategy } return ResolveStrategy_UseLatest } type ReconcileDatabase struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields CatalogName string `protobuf:"bytes,1,opt,name=catalog_name,json=catalogName,proto3" json:"catalog_name,omitempty"` DatabaseName string `protobuf:"bytes,2,opt,name=database_name,json=databaseName,proto3" json:"database_name,omitempty"` Parallelism uint32 `protobuf:"varint,3,opt,name=parallelism,proto3" json:"parallelism,omitempty"` ResolveStrategy ResolveStrategy `protobuf:"varint,4,opt,name=resolve_strategy,json=resolveStrategy,proto3,enum=greptime.v1.meta.ResolveStrategy" json:"resolve_strategy,omitempty"` } func (x *ReconcileDatabase) Reset() { *x = ReconcileDatabase{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ReconcileDatabase) String() string { return protoimpl.X.MessageStringOf(x) } func (*ReconcileDatabase) ProtoMessage() {} func (x *ReconcileDatabase) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ReconcileDatabase.ProtoReflect.Descriptor instead. func (*ReconcileDatabase) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{6} } func (x *ReconcileDatabase) GetCatalogName() string { if x != nil { return x.CatalogName } return "" } func (x *ReconcileDatabase) GetDatabaseName() string { if x != nil { return x.DatabaseName } return "" } func (x *ReconcileDatabase) GetParallelism() uint32 { if x != nil { return x.Parallelism } return 0 } func (x *ReconcileDatabase) GetResolveStrategy() ResolveStrategy { if x != nil { return x.ResolveStrategy } return ResolveStrategy_UseLatest } type ReconcileCatalog struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields CatalogName string `protobuf:"bytes,1,opt,name=catalog_name,json=catalogName,proto3" json:"catalog_name,omitempty"` Parallelism uint32 `protobuf:"varint,2,opt,name=parallelism,proto3" json:"parallelism,omitempty"` ResolveStrategy ResolveStrategy `protobuf:"varint,3,opt,name=resolve_strategy,json=resolveStrategy,proto3,enum=greptime.v1.meta.ResolveStrategy" json:"resolve_strategy,omitempty"` } func (x *ReconcileCatalog) Reset() { *x = ReconcileCatalog{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ReconcileCatalog) String() string { return protoimpl.X.MessageStringOf(x) } func (*ReconcileCatalog) ProtoMessage() {} func (x *ReconcileCatalog) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ReconcileCatalog.ProtoReflect.Descriptor instead. func (*ReconcileCatalog) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{7} } func (x *ReconcileCatalog) GetCatalogName() string { if x != nil { return x.CatalogName } return "" } func (x *ReconcileCatalog) GetParallelism() uint32 { if x != nil { return x.Parallelism } return 0 } func (x *ReconcileCatalog) GetResolveStrategy() ResolveStrategy { if x != nil { return x.ResolveStrategy } return ResolveStrategy_UseLatest } type ReconcileRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` // Types that are assignable to Target: // // *ReconcileRequest_ReconcileTable // *ReconcileRequest_ReconcileDatabase // *ReconcileRequest_ReconcileCatalog Target isReconcileRequest_Target `protobuf_oneof:"target"` } func (x *ReconcileRequest) Reset() { *x = ReconcileRequest{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ReconcileRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ReconcileRequest) ProtoMessage() {} func (x *ReconcileRequest) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ReconcileRequest.ProtoReflect.Descriptor instead. func (*ReconcileRequest) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{8} } func (x *ReconcileRequest) GetHeader() *RequestHeader { if x != nil { return x.Header } return nil } func (m *ReconcileRequest) GetTarget() isReconcileRequest_Target { if m != nil { return m.Target } return nil } func (x *ReconcileRequest) GetReconcileTable() *ReconcileTable { if x, ok := x.GetTarget().(*ReconcileRequest_ReconcileTable); ok { return x.ReconcileTable } return nil } func (x *ReconcileRequest) GetReconcileDatabase() *ReconcileDatabase { if x, ok := x.GetTarget().(*ReconcileRequest_ReconcileDatabase); ok { return x.ReconcileDatabase } return nil } func (x *ReconcileRequest) GetReconcileCatalog() *ReconcileCatalog { if x, ok := x.GetTarget().(*ReconcileRequest_ReconcileCatalog); ok { return x.ReconcileCatalog } return nil } type isReconcileRequest_Target interface { isReconcileRequest_Target() } type ReconcileRequest_ReconcileTable struct { ReconcileTable *ReconcileTable `protobuf:"bytes,2,opt,name=reconcile_table,json=reconcileTable,proto3,oneof"` } type ReconcileRequest_ReconcileDatabase struct { ReconcileDatabase *ReconcileDatabase `protobuf:"bytes,3,opt,name=reconcile_database,json=reconcileDatabase,proto3,oneof"` } type ReconcileRequest_ReconcileCatalog struct { ReconcileCatalog *ReconcileCatalog `protobuf:"bytes,4,opt,name=reconcile_catalog,json=reconcileCatalog,proto3,oneof"` } func (*ReconcileRequest_ReconcileTable) isReconcileRequest_Target() {} func (*ReconcileRequest_ReconcileDatabase) isReconcileRequest_Target() {} func (*ReconcileRequest_ReconcileCatalog) isReconcileRequest_Target() {} type ReconcileResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` Pid *ProcedureId `protobuf:"bytes,2,opt,name=pid,proto3" json:"pid,omitempty"` } func (x *ReconcileResponse) Reset() { *x = ReconcileResponse{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ReconcileResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ReconcileResponse) ProtoMessage() {} func (x *ReconcileResponse) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use ReconcileResponse.ProtoReflect.Descriptor instead. func (*ReconcileResponse) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{9} } func (x *ReconcileResponse) GetHeader() *ResponseHeader { if x != nil { return x.Header } return nil } func (x *ReconcileResponse) GetPid() *ProcedureId { if x != nil { return x.Pid } return nil } type GcRegionsRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` RegionIds []uint64 `protobuf:"varint,2,rep,packed,name=region_ids,json=regionIds,proto3" json:"region_ids,omitempty"` // Whether to perform a full file listing on datanodes when GC'ing the regions. FullFileListing bool `protobuf:"varint,3,opt,name=full_file_listing,json=fullFileListing,proto3" json:"full_file_listing,omitempty"` // Timeout in seconds for the entire GC procedure. TimeoutSecs uint32 `protobuf:"varint,4,opt,name=timeout_secs,json=timeoutSecs,proto3" json:"timeout_secs,omitempty"` } func (x *GcRegionsRequest) Reset() { *x = GcRegionsRequest{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GcRegionsRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*GcRegionsRequest) ProtoMessage() {} func (x *GcRegionsRequest) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[10] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GcRegionsRequest.ProtoReflect.Descriptor instead. func (*GcRegionsRequest) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{10} } func (x *GcRegionsRequest) GetHeader() *RequestHeader { if x != nil { return x.Header } return nil } func (x *GcRegionsRequest) GetRegionIds() []uint64 { if x != nil { return x.RegionIds } return nil } func (x *GcRegionsRequest) GetFullFileListing() bool { if x != nil { return x.FullFileListing } return false } func (x *GcRegionsRequest) GetTimeoutSecs() uint32 { if x != nil { return x.TimeoutSecs } return 0 } type GcStats struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // Number of regions requested for GC (accepted by the server side). ProcessedRegions uint64 `protobuf:"varint,1,opt,name=processed_regions,json=processedRegions,proto3" json:"processed_regions,omitempty"` // Regions that need retry in the next GC round. NeedRetryRegions []uint64 `protobuf:"varint,2,rep,packed,name=need_retry_regions,json=needRetryRegions,proto3" json:"need_retry_regions,omitempty"` // Number of deleted SST files. DeletedFiles uint64 `protobuf:"varint,3,opt,name=deleted_files,json=deletedFiles,proto3" json:"deleted_files,omitempty"` // Number of deleted index files. DeletedIndexes uint64 `protobuf:"varint,4,opt,name=deleted_indexes,json=deletedIndexes,proto3" json:"deleted_indexes,omitempty"` } func (x *GcStats) Reset() { *x = GcStats{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GcStats) String() string { return protoimpl.X.MessageStringOf(x) } func (*GcStats) ProtoMessage() {} func (x *GcStats) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[11] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GcStats.ProtoReflect.Descriptor instead. func (*GcStats) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{11} } func (x *GcStats) GetProcessedRegions() uint64 { if x != nil { return x.ProcessedRegions } return 0 } func (x *GcStats) GetNeedRetryRegions() []uint64 { if x != nil { return x.NeedRetryRegions } return nil } func (x *GcStats) GetDeletedFiles() uint64 { if x != nil { return x.DeletedFiles } return 0 } func (x *GcStats) GetDeletedIndexes() uint64 { if x != nil { return x.DeletedIndexes } return 0 } type GcRegionsResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` Stats *GcStats `protobuf:"bytes,2,opt,name=stats,proto3" json:"stats,omitempty"` } func (x *GcRegionsResponse) Reset() { *x = GcRegionsResponse{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GcRegionsResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*GcRegionsResponse) ProtoMessage() {} func (x *GcRegionsResponse) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GcRegionsResponse.ProtoReflect.Descriptor instead. func (*GcRegionsResponse) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{12} } func (x *GcRegionsResponse) GetHeader() *ResponseHeader { if x != nil { return x.Header } return nil } func (x *GcRegionsResponse) GetStats() *GcStats { if x != nil { return x.Stats } return nil } type GcTableRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` CatalogName string `protobuf:"bytes,2,opt,name=catalog_name,json=catalogName,proto3" json:"catalog_name,omitempty"` SchemaName string `protobuf:"bytes,3,opt,name=schema_name,json=schemaName,proto3" json:"schema_name,omitempty"` TableName string `protobuf:"bytes,4,opt,name=table_name,json=tableName,proto3" json:"table_name,omitempty"` // Whether to perform a full file listing on datanodes when GC'ing the regions. FullFileListing bool `protobuf:"varint,5,opt,name=full_file_listing,json=fullFileListing,proto3" json:"full_file_listing,omitempty"` // Timeout in seconds for the entire GC procedure. TimeoutSecs uint32 `protobuf:"varint,6,opt,name=timeout_secs,json=timeoutSecs,proto3" json:"timeout_secs,omitempty"` } func (x *GcTableRequest) Reset() { *x = GcTableRequest{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GcTableRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*GcTableRequest) ProtoMessage() {} func (x *GcTableRequest) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GcTableRequest.ProtoReflect.Descriptor instead. func (*GcTableRequest) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{13} } func (x *GcTableRequest) GetHeader() *RequestHeader { if x != nil { return x.Header } return nil } func (x *GcTableRequest) GetCatalogName() string { if x != nil { return x.CatalogName } return "" } func (x *GcTableRequest) GetSchemaName() string { if x != nil { return x.SchemaName } return "" } func (x *GcTableRequest) GetTableName() string { if x != nil { return x.TableName } return "" } func (x *GcTableRequest) GetFullFileListing() bool { if x != nil { return x.FullFileListing } return false } func (x *GcTableRequest) GetTimeoutSecs() uint32 { if x != nil { return x.TimeoutSecs } return 0 } type GcTableResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` Stats *GcStats `protobuf:"bytes,2,opt,name=stats,proto3" json:"stats,omitempty"` } func (x *GcTableResponse) Reset() { *x = GcTableResponse{} if protoimpl.UnsafeEnabled { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *GcTableResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*GcTableResponse) ProtoMessage() {} func (x *GcTableResponse) ProtoReflect() protoreflect.Message { mi := &file_greptime_v1_meta_procedure_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { ms.StoreMessageInfo(mi) } return ms } return mi.MessageOf(x) } // Deprecated: Use GcTableResponse.ProtoReflect.Descriptor instead. func (*GcTableResponse) Descriptor() ([]byte, []int) { return file_greptime_v1_meta_procedure_proto_rawDescGZIP(), []int{14} } func (x *GcTableResponse) GetHeader() *ResponseHeader { if x != nil { return x.Header } return nil } func (x *GcTableResponse) GetStats() *GcStats { if x != nil { return x.Stats } return nil } var File_greptime_v1_meta_procedure_proto protoreflect.FileDescriptor var file_greptime_v1_meta_procedure_proto_rawDesc = []byte{ 0x0a, 0x20, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x2f, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x1a, 0x1d, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1a, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x2f, 0x64, 0x64, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x8d, 0x02, 0x0a, 0x0d, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x2d, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x49, 0x64, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x79, 0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x39, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6d, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x4d, 0x73, 0x12, 0x1e, 0x0a, 0x0b, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6d, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x4d, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x6b, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x81, 0x01, 0x0a, 0x15, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x37, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x2f, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x49, 0x64, 0x52, 0x03, 0x70, 0x69, 0x64, 0x22, 0xa3, 0x01, 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x39, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x51, 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x37, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x22, 0x94, 0x01, 0x0a, 0x17, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x3f, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x73, 0x22, 0xc1, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x4c, 0x0a, 0x10, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x0f, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x22, 0xcb, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x12, 0x4c, 0x0a, 0x10, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x0f, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x22, 0xa5, 0x01, 0x0a, 0x10, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x69, 0x73, 0x6d, 0x12, 0x4c, 0x0a, 0x10, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x0f, 0x72, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x22, 0xcb, 0x02, 0x0a, 0x10, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x37, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x4b, 0x0a, 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x48, 0x00, 0x52, 0x0e, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x54, 0x0a, 0x12, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x48, 0x00, 0x52, 0x11, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x11, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x48, 0x00, 0x52, 0x10, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x42, 0x08, 0x0a, 0x06, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x22, 0x7e, 0x0a, 0x11, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x2f, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x49, 0x64, 0x52, 0x03, 0x70, 0x69, 0x64, 0x22, 0xb9, 0x01, 0x0a, 0x10, 0x47, 0x63, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x37, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x04, 0x52, 0x09, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x75, 0x6c, 0x6c, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x66, 0x75, 0x6c, 0x6c, 0x46, 0x69, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x73, 0x22, 0xb2, 0x01, 0x0a, 0x07, 0x47, 0x63, 0x53, 0x74, 0x61, 0x74, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x10, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2c, 0x0a, 0x12, 0x6e, 0x65, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x74, 0x72, 0x79, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x04, 0x52, 0x10, 0x6e, 0x65, 0x65, 0x64, 0x52, 0x65, 0x74, 0x72, 0x79, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x65, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x65, 0x73, 0x22, 0x7e, 0x0a, 0x11, 0x47, 0x63, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x2f, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x47, 0x63, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x73, 0x22, 0xfb, 0x01, 0x0a, 0x0e, 0x47, 0x63, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x37, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x75, 0x6c, 0x6c, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x66, 0x75, 0x6c, 0x6c, 0x46, 0x69, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x73, 0x22, 0x7c, 0x0a, 0x0f, 0x47, 0x63, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x2f, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x47, 0x63, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x73, 0x2a, 0x76, 0x0a, 0x0f, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x6f, 0x6e, 0x65, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x52, 0x65, 0x74, 0x72, 0x79, 0x69, 0x6e, 0x67, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x46, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x10, 0x03, 0x12, 0x13, 0x0a, 0x0f, 0x50, 0x72, 0x65, 0x70, 0x61, 0x72, 0x65, 0x52, 0x6f, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x10, 0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x52, 0x6f, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x42, 0x61, 0x63, 0x6b, 0x10, 0x05, 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x6f, 0x69, 0x73, 0x6f, 0x6e, 0x65, 0x64, 0x10, 0x06, 0x2a, 0x45, 0x0a, 0x0f, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x0d, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x73, 0x72, 0x76, 0x10, 0x01, 0x12, 0x13, 0x0a, 0x0f, 0x41, 0x62, 0x6f, 0x72, 0x74, 0x4f, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x6c, 0x69, 0x63, 0x74, 0x10, 0x02, 0x32, 0xf4, 0x04, 0x0a, 0x10, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5a, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x12, 0x27, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4a, 0x0a, 0x03, 0x64, 0x64, 0x6c, 0x12, 0x20, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x44, 0x64, 0x6c, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x44, 0x64, 0x6c, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x54, 0x0a, 0x09, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x12, 0x22, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5a, 0x0a, 0x07, 0x6d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x12, 0x26, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5e, 0x0a, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x28, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x64, 0x75, 0x72, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x0a, 0x67, 0x63, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x22, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x47, 0x63, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x47, 0x63, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x08, 0x67, 0x63, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x20, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x47, 0x63, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x47, 0x63, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x3c, 0x5a, 0x3a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x47, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x2f, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x2f, 0x67, 0x72, 0x65, 0x70, 0x74, 0x69, 0x6d, 0x65, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x65, 0x74, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( file_greptime_v1_meta_procedure_proto_rawDescOnce sync.Once file_greptime_v1_meta_procedure_proto_rawDescData = file_greptime_v1_meta_procedure_proto_rawDesc ) func file_greptime_v1_meta_procedure_proto_rawDescGZIP() []byte { file_greptime_v1_meta_procedure_proto_rawDescOnce.Do(func() { file_greptime_v1_meta_procedure_proto_rawDescData = protoimpl.X.CompressGZIP(file_greptime_v1_meta_procedure_proto_rawDescData) }) return file_greptime_v1_meta_procedure_proto_rawDescData } var file_greptime_v1_meta_procedure_proto_enumTypes = make([]protoimpl.EnumInfo, 2) var file_greptime_v1_meta_procedure_proto_msgTypes = make([]protoimpl.MessageInfo, 15) var file_greptime_v1_meta_procedure_proto_goTypes = []interface{}{ (ProcedureStatus)(0), // 0: greptime.v1.meta.ProcedureStatus (ResolveStrategy)(0), // 1: greptime.v1.meta.ResolveStrategy (*ProcedureMeta)(nil), // 2: greptime.v1.meta.ProcedureMeta (*QueryProcedureRequest)(nil), // 3: greptime.v1.meta.QueryProcedureRequest (*ProcedureStateResponse)(nil), // 4: greptime.v1.meta.ProcedureStateResponse (*ProcedureDetailRequest)(nil), // 5: greptime.v1.meta.ProcedureDetailRequest (*ProcedureDetailResponse)(nil), // 6: greptime.v1.meta.ProcedureDetailResponse (*ReconcileTable)(nil), // 7: greptime.v1.meta.ReconcileTable (*ReconcileDatabase)(nil), // 8: greptime.v1.meta.ReconcileDatabase (*ReconcileCatalog)(nil), // 9: greptime.v1.meta.ReconcileCatalog (*ReconcileRequest)(nil), // 10: greptime.v1.meta.ReconcileRequest (*ReconcileResponse)(nil), // 11: greptime.v1.meta.ReconcileResponse (*GcRegionsRequest)(nil), // 12: greptime.v1.meta.GcRegionsRequest (*GcStats)(nil), // 13: greptime.v1.meta.GcStats (*GcRegionsResponse)(nil), // 14: greptime.v1.meta.GcRegionsResponse (*GcTableRequest)(nil), // 15: greptime.v1.meta.GcTableRequest (*GcTableResponse)(nil), // 16: greptime.v1.meta.GcTableResponse (*ProcedureId)(nil), // 17: greptime.v1.meta.ProcedureId (*RequestHeader)(nil), // 18: greptime.v1.meta.RequestHeader (*ResponseHeader)(nil), // 19: greptime.v1.meta.ResponseHeader (*DdlTaskRequest)(nil), // 20: greptime.v1.meta.DdlTaskRequest (*MigrateRegionRequest)(nil), // 21: greptime.v1.meta.MigrateRegionRequest (*DdlTaskResponse)(nil), // 22: greptime.v1.meta.DdlTaskResponse (*MigrateRegionResponse)(nil), // 23: greptime.v1.meta.MigrateRegionResponse } var file_greptime_v1_meta_procedure_proto_depIdxs = []int32{ 17, // 0: greptime.v1.meta.ProcedureMeta.id:type_name -> greptime.v1.meta.ProcedureId 0, // 1: greptime.v1.meta.ProcedureMeta.status:type_name -> greptime.v1.meta.ProcedureStatus 18, // 2: greptime.v1.meta.QueryProcedureRequest.header:type_name -> greptime.v1.meta.RequestHeader 17, // 3: greptime.v1.meta.QueryProcedureRequest.pid:type_name -> greptime.v1.meta.ProcedureId 19, // 4: greptime.v1.meta.ProcedureStateResponse.header:type_name -> greptime.v1.meta.ResponseHeader 0, // 5: greptime.v1.meta.ProcedureStateResponse.status:type_name -> greptime.v1.meta.ProcedureStatus 18, // 6: greptime.v1.meta.ProcedureDetailRequest.header:type_name -> greptime.v1.meta.RequestHeader 19, // 7: greptime.v1.meta.ProcedureDetailResponse.header:type_name -> greptime.v1.meta.ResponseHeader 2, // 8: greptime.v1.meta.ProcedureDetailResponse.procedures:type_name -> greptime.v1.meta.ProcedureMeta 1, // 9: greptime.v1.meta.ReconcileTable.resolve_strategy:type_name -> greptime.v1.meta.ResolveStrategy 1, // 10: greptime.v1.meta.ReconcileDatabase.resolve_strategy:type_name -> greptime.v1.meta.ResolveStrategy 1, // 11: greptime.v1.meta.ReconcileCatalog.resolve_strategy:type_name -> greptime.v1.meta.ResolveStrategy 18, // 12: greptime.v1.meta.ReconcileRequest.header:type_name -> greptime.v1.meta.RequestHeader 7, // 13: greptime.v1.meta.ReconcileRequest.reconcile_table:type_name -> greptime.v1.meta.ReconcileTable 8, // 14: greptime.v1.meta.ReconcileRequest.reconcile_database:type_name -> greptime.v1.meta.ReconcileDatabase 9, // 15: greptime.v1.meta.ReconcileRequest.reconcile_catalog:type_name -> greptime.v1.meta.ReconcileCatalog 19, // 16: greptime.v1.meta.ReconcileResponse.header:type_name -> greptime.v1.meta.ResponseHeader 17, // 17: greptime.v1.meta.ReconcileResponse.pid:type_name -> greptime.v1.meta.ProcedureId 18, // 18: greptime.v1.meta.GcRegionsRequest.header:type_name -> greptime.v1.meta.RequestHeader 19, // 19: greptime.v1.meta.GcRegionsResponse.header:type_name -> greptime.v1.meta.ResponseHeader 13, // 20: greptime.v1.meta.GcRegionsResponse.stats:type_name -> greptime.v1.meta.GcStats 18, // 21: greptime.v1.meta.GcTableRequest.header:type_name -> greptime.v1.meta.RequestHeader 19, // 22: greptime.v1.meta.GcTableResponse.header:type_name -> greptime.v1.meta.ResponseHeader 13, // 23: greptime.v1.meta.GcTableResponse.stats:type_name -> greptime.v1.meta.GcStats 3, // 24: greptime.v1.meta.ProcedureService.query:input_type -> greptime.v1.meta.QueryProcedureRequest 20, // 25: greptime.v1.meta.ProcedureService.ddl:input_type -> greptime.v1.meta.DdlTaskRequest 10, // 26: greptime.v1.meta.ProcedureService.reconcile:input_type -> greptime.v1.meta.ReconcileRequest 21, // 27: greptime.v1.meta.ProcedureService.migrate:input_type -> greptime.v1.meta.MigrateRegionRequest 5, // 28: greptime.v1.meta.ProcedureService.details:input_type -> greptime.v1.meta.ProcedureDetailRequest 12, // 29: greptime.v1.meta.ProcedureService.gc_regions:input_type -> greptime.v1.meta.GcRegionsRequest 15, // 30: greptime.v1.meta.ProcedureService.gc_table:input_type -> greptime.v1.meta.GcTableRequest 4, // 31: greptime.v1.meta.ProcedureService.query:output_type -> greptime.v1.meta.ProcedureStateResponse 22, // 32: greptime.v1.meta.ProcedureService.ddl:output_type -> greptime.v1.meta.DdlTaskResponse 11, // 33: greptime.v1.meta.ProcedureService.reconcile:output_type -> greptime.v1.meta.ReconcileResponse 23, // 34: greptime.v1.meta.ProcedureService.migrate:output_type -> greptime.v1.meta.MigrateRegionResponse 6, // 35: greptime.v1.meta.ProcedureService.details:output_type -> greptime.v1.meta.ProcedureDetailResponse 14, // 36: greptime.v1.meta.ProcedureService.gc_regions:output_type -> greptime.v1.meta.GcRegionsResponse 16, // 37: greptime.v1.meta.ProcedureService.gc_table:output_type -> greptime.v1.meta.GcTableResponse 31, // [31:38] is the sub-list for method output_type 24, // [24:31] is the sub-list for method input_type 24, // [24:24] is the sub-list for extension type_name 24, // [24:24] is the sub-list for extension extendee 0, // [0:24] is the sub-list for field type_name } func init() { file_greptime_v1_meta_procedure_proto_init() } func file_greptime_v1_meta_procedure_proto_init() { if File_greptime_v1_meta_procedure_proto != nil { return } file_greptime_v1_meta_common_proto_init() file_greptime_v1_meta_ddl_proto_init() file_greptime_v1_meta_region_proto_init() if !protoimpl.UnsafeEnabled { file_greptime_v1_meta_procedure_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProcedureMeta); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*QueryProcedureRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProcedureStateResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProcedureDetailRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ProcedureDetailResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ReconcileTable); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ReconcileDatabase); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ReconcileCatalog); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ReconcileRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ReconcileResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GcRegionsRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GcStats); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GcRegionsResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GcTableRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_greptime_v1_meta_procedure_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GcTableResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } } file_greptime_v1_meta_procedure_proto_msgTypes[8].OneofWrappers = []interface{}{ (*ReconcileRequest_ReconcileTable)(nil), (*ReconcileRequest_ReconcileDatabase)(nil), (*ReconcileRequest_ReconcileCatalog)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_greptime_v1_meta_procedure_proto_rawDesc, NumEnums: 2, NumMessages: 15, NumExtensions: 0, NumServices: 1, }, GoTypes: file_greptime_v1_meta_procedure_proto_goTypes, DependencyIndexes: file_greptime_v1_meta_procedure_proto_depIdxs, EnumInfos: file_greptime_v1_meta_procedure_proto_enumTypes, MessageInfos: file_greptime_v1_meta_procedure_proto_msgTypes, }.Build() File_greptime_v1_meta_procedure_proto = out.File file_greptime_v1_meta_procedure_proto_rawDesc = nil file_greptime_v1_meta_procedure_proto_goTypes = nil file_greptime_v1_meta_procedure_proto_depIdxs = nil }