diff --git a/go-tipb/analyze.pb.go b/go-tipb/analyze.pb.go index 89a864e0..c494f306 100644 --- a/go-tipb/analyze.pb.go +++ b/go-tipb/analyze.pb.go @@ -51,6 +51,7 @@ Limit Kill ExecutorExecutionSummary + TiFlashScanContext Sort WindowFrameBound WindowFrame diff --git a/go-tipb/executor.pb.go b/go-tipb/executor.pb.go index b7287bed..8257016b 100644 --- a/go-tipb/executor.pb.go +++ b/go-tipb/executor.pb.go @@ -1101,8 +1101,11 @@ type ExecutorExecutionSummary struct { // Coresponding executor id ExecutorId *string `protobuf:"bytes,4,opt,name=executor_id,json=executorId" json:"executor_id,omitempty"` // The execution concurrency for this executor - Concurrency *uint64 `protobuf:"varint,5,opt,name=concurrency" json:"concurrency,omitempty"` - XXX_unrecognized []byte `json:"-"` + Concurrency *uint64 `protobuf:"varint,5,opt,name=concurrency" json:"concurrency,omitempty"` + // Types that are valid to be assigned to DetailInfo: + // *ExecutorExecutionSummary_TiflashScanContext + DetailInfo isExecutorExecutionSummary_DetailInfo `protobuf_oneof:"DetailInfo"` + XXX_unrecognized []byte `json:"-"` } func (m *ExecutorExecutionSummary) Reset() { *m = ExecutorExecutionSummary{} } @@ -1112,6 +1115,25 @@ func (*ExecutorExecutionSummary) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{13} } +type isExecutorExecutionSummary_DetailInfo interface { + isExecutorExecutionSummary_DetailInfo() + MarshalTo([]byte) (int, error) + Size() int +} + +type ExecutorExecutionSummary_TiflashScanContext struct { + TiflashScanContext *TiFlashScanContext `protobuf:"bytes,6,opt,name=tiflash_scan_context,json=tiflashScanContext,oneof"` +} + +func (*ExecutorExecutionSummary_TiflashScanContext) isExecutorExecutionSummary_DetailInfo() {} + +func (m *ExecutorExecutionSummary) GetDetailInfo() isExecutorExecutionSummary_DetailInfo { + if m != nil { + return m.DetailInfo + } + return nil +} + func (m *ExecutorExecutionSummary) GetTimeProcessedNs() uint64 { if m != nil && m.TimeProcessedNs != nil { return *m.TimeProcessedNs @@ -1147,6 +1169,133 @@ func (m *ExecutorExecutionSummary) GetConcurrency() uint64 { return 0 } +func (m *ExecutorExecutionSummary) GetTiflashScanContext() *TiFlashScanContext { + if x, ok := m.GetDetailInfo().(*ExecutorExecutionSummary_TiflashScanContext); ok { + return x.TiflashScanContext + } + return nil +} + +// XXX_OneofFuncs is for the internal use of the proto package. +func (*ExecutorExecutionSummary) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { + return _ExecutorExecutionSummary_OneofMarshaler, _ExecutorExecutionSummary_OneofUnmarshaler, _ExecutorExecutionSummary_OneofSizer, []interface{}{ + (*ExecutorExecutionSummary_TiflashScanContext)(nil), + } +} + +func _ExecutorExecutionSummary_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { + m := msg.(*ExecutorExecutionSummary) + // DetailInfo + switch x := m.DetailInfo.(type) { + case *ExecutorExecutionSummary_TiflashScanContext: + _ = b.EncodeVarint(6<<3 | proto.WireBytes) + if err := b.EncodeMessage(x.TiflashScanContext); err != nil { + return err + } + case nil: + default: + return fmt.Errorf("ExecutorExecutionSummary.DetailInfo has unexpected type %T", x) + } + return nil +} + +func _ExecutorExecutionSummary_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { + m := msg.(*ExecutorExecutionSummary) + switch tag { + case 6: // DetailInfo.tiflash_scan_context + if wire != proto.WireBytes { + return true, proto.ErrInternalBadWireType + } + msg := new(TiFlashScanContext) + err := b.DecodeMessage(msg) + m.DetailInfo = &ExecutorExecutionSummary_TiflashScanContext{msg} + return true, err + default: + return false, nil + } +} + +func _ExecutorExecutionSummary_OneofSizer(msg proto.Message) (n int) { + m := msg.(*ExecutorExecutionSummary) + // DetailInfo + switch x := m.DetailInfo.(type) { + case *ExecutorExecutionSummary_TiflashScanContext: + s := proto.Size(x.TiflashScanContext) + n += proto.SizeVarint(6<<3 | proto.WireBytes) + n += proto.SizeVarint(uint64(s)) + n += s + case nil: + default: + panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) + } + return n +} + +type TiFlashScanContext struct { + TotalScannedPacksInDmfile *uint64 `protobuf:"varint,1,opt,name=total_scanned_packs_in_dmfile,json=totalScannedPacksInDmfile" json:"total_scanned_packs_in_dmfile,omitempty"` + TotalSkippedPacksInDmfile *uint64 `protobuf:"varint,2,opt,name=total_skipped_packs_in_dmfile,json=totalSkippedPacksInDmfile" json:"total_skipped_packs_in_dmfile,omitempty"` + TotalScannedRowsInDmfile *uint64 `protobuf:"varint,3,opt,name=total_scanned_rows_in_dmfile,json=totalScannedRowsInDmfile" json:"total_scanned_rows_in_dmfile,omitempty"` + TotalSkippedRowsInDmfile *uint64 `protobuf:"varint,4,opt,name=total_skipped_rows_in_dmfile,json=totalSkippedRowsInDmfile" json:"total_skipped_rows_in_dmfile,omitempty"` + TotalRoughSetIndexLoadTimeInNs *uint64 `protobuf:"varint,5,opt,name=total_rough_set_index_load_time_in_ns,json=totalRoughSetIndexLoadTimeInNs" json:"total_rough_set_index_load_time_in_ns,omitempty"` + TotalDmfileReadTimeInNs *uint64 `protobuf:"varint,6,opt,name=total_dmfile_read_time_in_ns,json=totalDmfileReadTimeInNs" json:"total_dmfile_read_time_in_ns,omitempty"` + TotalCreateSnapshotTimeInNs *uint64 `protobuf:"varint,7,opt,name=total_create_snapshot_time_in_ns,json=totalCreateSnapshotTimeInNs" json:"total_create_snapshot_time_in_ns,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *TiFlashScanContext) Reset() { *m = TiFlashScanContext{} } +func (m *TiFlashScanContext) String() string { return proto.CompactTextString(m) } +func (*TiFlashScanContext) ProtoMessage() {} +func (*TiFlashScanContext) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{14} } + +func (m *TiFlashScanContext) GetTotalScannedPacksInDmfile() uint64 { + if m != nil && m.TotalScannedPacksInDmfile != nil { + return *m.TotalScannedPacksInDmfile + } + return 0 +} + +func (m *TiFlashScanContext) GetTotalSkippedPacksInDmfile() uint64 { + if m != nil && m.TotalSkippedPacksInDmfile != nil { + return *m.TotalSkippedPacksInDmfile + } + return 0 +} + +func (m *TiFlashScanContext) GetTotalScannedRowsInDmfile() uint64 { + if m != nil && m.TotalScannedRowsInDmfile != nil { + return *m.TotalScannedRowsInDmfile + } + return 0 +} + +func (m *TiFlashScanContext) GetTotalSkippedRowsInDmfile() uint64 { + if m != nil && m.TotalSkippedRowsInDmfile != nil { + return *m.TotalSkippedRowsInDmfile + } + return 0 +} + +func (m *TiFlashScanContext) GetTotalRoughSetIndexLoadTimeInNs() uint64 { + if m != nil && m.TotalRoughSetIndexLoadTimeInNs != nil { + return *m.TotalRoughSetIndexLoadTimeInNs + } + return 0 +} + +func (m *TiFlashScanContext) GetTotalDmfileReadTimeInNs() uint64 { + if m != nil && m.TotalDmfileReadTimeInNs != nil { + return *m.TotalDmfileReadTimeInNs + } + return 0 +} + +func (m *TiFlashScanContext) GetTotalCreateSnapshotTimeInNs() uint64 { + if m != nil && m.TotalCreateSnapshotTimeInNs != nil { + return *m.TotalCreateSnapshotTimeInNs + } + return 0 +} + type Sort struct { ByItems []*ByItem `protobuf:"bytes,1,rep,name=byItems" json:"byItems,omitempty"` IsPartialSort *bool `protobuf:"varint,2,opt,name=isPartialSort" json:"isPartialSort,omitempty"` @@ -1157,7 +1306,7 @@ type Sort struct { func (m *Sort) Reset() { *m = Sort{} } func (m *Sort) String() string { return proto.CompactTextString(m) } func (*Sort) ProtoMessage() {} -func (*Sort) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{14} } +func (*Sort) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{15} } func (m *Sort) GetByItems() []*ByItem { if m != nil { @@ -1191,7 +1340,7 @@ type WindowFrameBound struct { func (m *WindowFrameBound) Reset() { *m = WindowFrameBound{} } func (m *WindowFrameBound) String() string { return proto.CompactTextString(m) } func (*WindowFrameBound) ProtoMessage() {} -func (*WindowFrameBound) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{15} } +func (*WindowFrameBound) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{16} } func (m *WindowFrameBound) GetType() WindowBoundType { if m != nil { @@ -1231,7 +1380,7 @@ type WindowFrame struct { func (m *WindowFrame) Reset() { *m = WindowFrame{} } func (m *WindowFrame) String() string { return proto.CompactTextString(m) } func (*WindowFrame) ProtoMessage() {} -func (*WindowFrame) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{16} } +func (*WindowFrame) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{17} } func (m *WindowFrame) GetType() WindowFrameType { if m != nil { @@ -1266,7 +1415,7 @@ type Window struct { func (m *Window) Reset() { *m = Window{} } func (m *Window) String() string { return proto.CompactTextString(m) } func (*Window) ProtoMessage() {} -func (*Window) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{17} } +func (*Window) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{18} } func (m *Window) GetFuncDesc() []*Expr { if m != nil { @@ -1318,6 +1467,7 @@ func init() { proto.RegisterType((*Limit)(nil), "tipb.Limit") proto.RegisterType((*Kill)(nil), "tipb.Kill") proto.RegisterType((*ExecutorExecutionSummary)(nil), "tipb.ExecutorExecutionSummary") + proto.RegisterType((*TiFlashScanContext)(nil), "tipb.TiFlashScanContext") proto.RegisterType((*Sort)(nil), "tipb.Sort") proto.RegisterType((*WindowFrameBound)(nil), "tipb.WindowFrameBound") proto.RegisterType((*WindowFrame)(nil), "tipb.WindowFrame") @@ -2356,6 +2506,83 @@ func (m *ExecutorExecutionSummary) MarshalTo(dAtA []byte) (int, error) { i++ i = encodeVarintExecutor(dAtA, i, uint64(*m.Concurrency)) } + if m.DetailInfo != nil { + nn21, err := m.DetailInfo.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += nn21 + } + if m.XXX_unrecognized != nil { + i += copy(dAtA[i:], m.XXX_unrecognized) + } + return i, nil +} + +func (m *ExecutorExecutionSummary_TiflashScanContext) MarshalTo(dAtA []byte) (int, error) { + i := 0 + if m.TiflashScanContext != nil { + dAtA[i] = 0x32 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(m.TiflashScanContext.Size())) + n22, err := m.TiflashScanContext.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n22 + } + return i, nil +} +func (m *TiFlashScanContext) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *TiFlashScanContext) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if m.TotalScannedPacksInDmfile != nil { + dAtA[i] = 0x8 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalScannedPacksInDmfile)) + } + if m.TotalSkippedPacksInDmfile != nil { + dAtA[i] = 0x10 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalSkippedPacksInDmfile)) + } + if m.TotalScannedRowsInDmfile != nil { + dAtA[i] = 0x18 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalScannedRowsInDmfile)) + } + if m.TotalSkippedRowsInDmfile != nil { + dAtA[i] = 0x20 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalSkippedRowsInDmfile)) + } + if m.TotalRoughSetIndexLoadTimeInNs != nil { + dAtA[i] = 0x28 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalRoughSetIndexLoadTimeInNs)) + } + if m.TotalDmfileReadTimeInNs != nil { + dAtA[i] = 0x30 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalDmfileReadTimeInNs)) + } + if m.TotalCreateSnapshotTimeInNs != nil { + dAtA[i] = 0x38 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalCreateSnapshotTimeInNs)) + } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } @@ -2403,11 +2630,11 @@ func (m *Sort) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n21, err := m.Child.MarshalTo(dAtA[i:]) + n23, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n21 + i += n23 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -2486,21 +2713,21 @@ func (m *WindowFrame) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Start.Size())) - n22, err := m.Start.MarshalTo(dAtA[i:]) + n24, err := m.Start.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n22 + i += n24 } if m.End != nil { dAtA[i] = 0x1a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.End.Size())) - n23, err := m.End.MarshalTo(dAtA[i:]) + n25, err := m.End.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n23 + i += n25 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -2563,21 +2790,21 @@ func (m *Window) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x22 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Frame.Size())) - n24, err := m.Frame.MarshalTo(dAtA[i:]) + n26, err := m.Frame.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n24 + i += n26 } if m.Child != nil { dAtA[i] = 0x2a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n25, err := m.Child.MarshalTo(dAtA[i:]) + n27, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n25 + i += n27 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3047,6 +3274,48 @@ func (m *ExecutorExecutionSummary) Size() (n int) { if m.Concurrency != nil { n += 1 + sovExecutor(uint64(*m.Concurrency)) } + if m.DetailInfo != nil { + n += m.DetailInfo.Size() + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *ExecutorExecutionSummary_TiflashScanContext) Size() (n int) { + var l int + _ = l + if m.TiflashScanContext != nil { + l = m.TiflashScanContext.Size() + n += 1 + l + sovExecutor(uint64(l)) + } + return n +} +func (m *TiFlashScanContext) Size() (n int) { + var l int + _ = l + if m.TotalScannedPacksInDmfile != nil { + n += 1 + sovExecutor(uint64(*m.TotalScannedPacksInDmfile)) + } + if m.TotalSkippedPacksInDmfile != nil { + n += 1 + sovExecutor(uint64(*m.TotalSkippedPacksInDmfile)) + } + if m.TotalScannedRowsInDmfile != nil { + n += 1 + sovExecutor(uint64(*m.TotalScannedRowsInDmfile)) + } + if m.TotalSkippedRowsInDmfile != nil { + n += 1 + sovExecutor(uint64(*m.TotalSkippedRowsInDmfile)) + } + if m.TotalRoughSetIndexLoadTimeInNs != nil { + n += 1 + sovExecutor(uint64(*m.TotalRoughSetIndexLoadTimeInNs)) + } + if m.TotalDmfileReadTimeInNs != nil { + n += 1 + sovExecutor(uint64(*m.TotalDmfileReadTimeInNs)) + } + if m.TotalCreateSnapshotTimeInNs != nil { + n += 1 + sovExecutor(uint64(*m.TotalCreateSnapshotTimeInNs)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -6378,6 +6647,229 @@ func (m *ExecutorExecutionSummary) Unmarshal(dAtA []byte) error { } } m.Concurrency = &v + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TiflashScanContext", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthExecutor + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &TiFlashScanContext{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.DetailInfo = &ExecutorExecutionSummary_TiflashScanContext{v} + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipExecutor(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthExecutor + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *TiFlashScanContext) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: TiFlashScanContext: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: TiFlashScanContext: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalScannedPacksInDmfile", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.TotalScannedPacksInDmfile = &v + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalSkippedPacksInDmfile", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.TotalSkippedPacksInDmfile = &v + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalScannedRowsInDmfile", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.TotalScannedRowsInDmfile = &v + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalSkippedRowsInDmfile", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.TotalSkippedRowsInDmfile = &v + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalRoughSetIndexLoadTimeInNs", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.TotalRoughSetIndexLoadTimeInNs = &v + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalDmfileReadTimeInNs", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.TotalDmfileReadTimeInNs = &v + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TotalCreateSnapshotTimeInNs", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.TotalCreateSnapshotTimeInNs = &v default: iNdEx = preIndex skippy, err := skipExecutor(dAtA[iNdEx:]) @@ -7131,137 +7623,152 @@ var ( func init() { proto.RegisterFile("executor.proto", fileDescriptorExecutor) } var fileDescriptorExecutor = []byte{ - // 2105 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x73, 0x1b, 0x4b, - 0xf1, 0xf7, 0x4a, 0xab, 0x5f, 0x2d, 0x59, 0x5a, 0xcf, 0x37, 0xc9, 0x77, 0x93, 0x47, 0x12, 0x45, - 0x24, 0xc4, 0xb8, 0x82, 0x93, 0x97, 0x40, 0x01, 0x07, 0xe0, 0xc5, 0x79, 0xf1, 0x7b, 0x4e, 0x1e, - 0x79, 0xae, 0xb5, 0x0b, 0x8e, 0x5b, 0xab, 0xdd, 0x91, 0x3c, 0xc9, 0x6a, 0x66, 0x33, 0xbb, 0x8b, - 0xad, 0x9c, 0xb8, 0x70, 0xe3, 0x06, 0x45, 0x71, 0xe3, 0xc2, 0x85, 0xa2, 0x8a, 0xbf, 0xe3, 0x1d, - 0xb9, 0x42, 0x51, 0x14, 0x15, 0xfe, 0x05, 0xee, 0x50, 0x3d, 0x33, 0xbb, 0x5a, 0x59, 0xb2, 0xc9, - 0x91, 0x93, 0x35, 0x9f, 0xfe, 0x74, 0x6f, 0x4f, 0xf7, 0x74, 0xcf, 0xb4, 0xa1, 0x4f, 0xcf, 0x68, - 0x98, 0x67, 0x42, 0xee, 0x26, 0x52, 0x64, 0x82, 0xd8, 0x19, 0x4b, 0xc6, 0x37, 0x1c, 0x7a, 0x96, - 0x48, 0x9a, 0xa6, 0x4c, 0x70, 0x8d, 0xdf, 0xe8, 0xa5, 0xe1, 0x09, 0x9d, 0x05, 0x66, 0x75, 0x65, - 0x2a, 0xa6, 0x42, 0xfd, 0x7c, 0x88, 0xbf, 0x34, 0x3a, 0xfa, 0x57, 0x13, 0xda, 0xcf, 0x8d, 0x39, - 0x72, 0x17, 0x6a, 0x59, 0xe2, 0x5a, 0x43, 0x6b, 0xbb, 0xff, 0xb8, 0xbf, 0x8b, 0x56, 0x77, 0x51, - 0x76, 0x3c, 0x4f, 0xe8, 0x9e, 0xfd, 0xd5, 0xdf, 0x6f, 0x6f, 0x78, 0xb5, 0x2c, 0x21, 0x3b, 0xd0, - 0xce, 0xc6, 0xb1, 0x9f, 0x86, 0x01, 0x77, 0x6b, 0x43, 0x6b, 0xbb, 0xfb, 0x78, 0xa0, 0xb9, 0xc7, - 0xc1, 0x38, 0xa6, 0x47, 0x61, 0xc0, 0xbd, 0x56, 0x36, 0x8e, 0xf1, 0x07, 0x72, 0x59, 0x74, 0xa6, - 0xb9, 0xf5, 0x2a, 0xf7, 0x80, 0x47, 0xf4, 0x4c, 0x73, 0x59, 0xa4, 0x7e, 0x90, 0x6f, 0x41, 0x27, - 0xa5, 0x31, 0x0d, 0x33, 0x26, 0xb8, 0x6b, 0x57, 0xc9, 0x47, 0x05, 0xec, 0x2d, 0x18, 0xe4, 0x09, - 0x74, 0x83, 0xe9, 0x54, 0xd2, 0x69, 0xa0, 0x14, 0x1a, 0x4a, 0x61, 0x4b, 0x2b, 0x3c, 0x5d, 0x08, - 0xbc, 0x2a, 0x8b, 0xdc, 0x02, 0x3b, 0x13, 0xc9, 0x2b, 0xb7, 0xa9, 0xd8, 0x60, 0xfc, 0x16, 0xc9, - 0x2b, 0x4f, 0xe1, 0xe4, 0x0e, 0x34, 0x62, 0x36, 0x63, 0x99, 0xdb, 0x52, 0x84, 0xae, 0x26, 0x7c, - 0x81, 0x90, 0xa7, 0x25, 0xe4, 0x19, 0x6c, 0xd1, 0xb3, 0xf0, 0x24, 0xe0, 0x53, 0xea, 0x4b, 0x1a, - 0x52, 0xf6, 0x33, 0x2a, 0xdd, 0xb6, 0xa2, 0x5f, 0x2b, 0x62, 0xa6, 0xc5, 0x9e, 0x91, 0x7a, 0x0e, - 0x3d, 0x87, 0xa0, 0x1f, 0xaf, 0x05, 0xe3, 0x6e, 0xa7, 0xea, 0xc7, 0x0b, 0xc1, 0xb8, 0xa7, 0x70, - 0x72, 0x1b, 0xba, 0x45, 0x92, 0x7d, 0x16, 0xb9, 0x30, 0xb4, 0xb6, 0x3b, 0x1e, 0x14, 0xd0, 0x41, - 0x84, 0x06, 0xde, 0xb0, 0x38, 0x76, 0xbb, 0x55, 0x03, 0x2f, 0x59, 0x1c, 0x7b, 0x0a, 0x27, 0x3f, - 0x80, 0x41, 0xe9, 0x65, 0x4a, 0x79, 0x44, 0xa5, 0xdb, 0x53, 0xd4, 0x2b, 0xcb, 0x3e, 0x1e, 0x29, - 0x99, 0xd7, 0xa7, 0x4b, 0x6b, 0xf2, 0x08, 0xe0, 0x50, 0x8a, 0xd7, 0x26, 0x19, 0x9b, 0x4a, 0xd3, - 0xd1, 0x9a, 0x0b, 0xdc, 0xab, 0x70, 0xc8, 0x0b, 0xb8, 0x92, 0x04, 0x32, 0x63, 0xb8, 0xf0, 0x33, - 0x3c, 0x09, 0x3a, 0xeb, 0x7d, 0xa5, 0xeb, 0x1a, 0xdd, 0x82, 0xb1, 0x38, 0x2a, 0x24, 0x59, 0xc1, - 0x70, 0x73, 0xa9, 0x90, 0x99, 0x3b, 0xa8, 0x6e, 0xee, 0x48, 0xc8, 0xcc, 0x53, 0x38, 0xb9, 0x0b, - 0xcd, 0x53, 0xc6, 0x23, 0x71, 0xea, 0x3a, 0x8a, 0xd1, 0xd3, 0x8c, 0x9f, 0x2a, 0xcc, 0x33, 0x32, - 0xf2, 0x0a, 0xee, 0x4c, 0x18, 0xa7, 0xfe, 0x54, 0x06, 0x8c, 0xd3, 0xc8, 0x4f, 0x4f, 0xf2, 0xc9, - 0x04, 0xdd, 0xca, 0x24, 0x0d, 0x66, 0x7e, 0x28, 0x72, 0x9e, 0xb9, 0x5b, 0x43, 0x6b, 0xdb, 0x36, - 0x87, 0xfb, 0x26, 0xd2, 0x3f, 0xd3, 0xec, 0x23, 0x4d, 0x3e, 0x52, 0xdc, 0x67, 0x48, 0x25, 0x2f, - 0xe0, 0xf6, 0x5a, 0x7b, 0xe3, 0x20, 0x0b, 0x4f, 0xfc, 0x94, 0xbd, 0xa3, 0x2e, 0xa9, 0x58, 0xfb, - 0x68, 0xd5, 0xda, 0x1e, 0x32, 0x8f, 0xd8, 0x3b, 0x3a, 0xfa, 0x5d, 0x0d, 0xfa, 0xcb, 0x29, 0x20, - 0xdb, 0x95, 0xe2, 0x23, 0xcb, 0x49, 0x5a, 0x29, 0xc0, 0x2d, 0xca, 0x43, 0x11, 0xd1, 0xc8, 0xcf, - 0x82, 0xf4, 0x8d, 0x3f, 0xa3, 0x59, 0xe0, 0xd6, 0x86, 0xf5, 0xed, 0x9e, 0x37, 0x30, 0x82, 0xe3, - 0x20, 0x7d, 0xf3, 0x63, 0x9a, 0x05, 0xe4, 0x63, 0xe8, 0x2f, 0xd2, 0xf2, 0x86, 0xce, 0x53, 0xb7, - 0x3e, 0xac, 0x2f, 0x82, 0xfa, 0xfc, 0x2c, 0x91, 0xde, 0x66, 0xc9, 0x78, 0x49, 0xe7, 0x29, 0xb9, - 0x0b, 0x8d, 0xf0, 0x84, 0xc5, 0x91, 0xa9, 0xc1, 0x4a, 0x23, 0xc0, 0xb3, 0xe7, 0x69, 0x21, 0xb9, - 0x07, 0x8d, 0x6c, 0x9e, 0xd0, 0xd4, 0x6d, 0x28, 0x7b, 0xa6, 0x52, 0xf7, 0x19, 0x8d, 0x23, 0x74, - 0xd7, 0xd3, 0x52, 0xf2, 0x5d, 0x18, 0x04, 0x71, 0xec, 0x4f, 0x10, 0xf7, 0xb5, 0x42, 0x73, 0xbd, - 0xc2, 0x66, 0x10, 0xc7, 0xe5, 0x2a, 0x1d, 0xfd, 0xda, 0x02, 0xe7, 0x7c, 0x21, 0xad, 0xdf, 0xb9, - 0xb5, 0x7e, 0xe7, 0x8f, 0xa0, 0x5b, 0xfd, 0x6a, 0x6d, 0xfd, 0x57, 0x61, 0x52, 0x7e, 0x92, 0x8c, - 0x54, 0x06, 0xea, 0x17, 0x65, 0x00, 0x63, 0x3f, 0xfa, 0x65, 0x1d, 0x3a, 0x8b, 0x83, 0x7a, 0x1b, - 0xda, 0xfa, 0xa8, 0xb3, 0x48, 0x65, 0xae, 0x6e, 0xb2, 0xd4, 0x52, 0xe8, 0x41, 0x44, 0x76, 0xa0, - 0x15, 0x8a, 0x38, 0x9f, 0xf1, 0xc2, 0x01, 0x53, 0x44, 0xcf, 0x14, 0x78, 0xc0, 0x27, 0xc2, 0x2b, - 0x08, 0xc4, 0x05, 0x3b, 0xa2, 0x69, 0xa8, 0x1c, 0x68, 0x1b, 0x43, 0x0a, 0x21, 0x0f, 0x80, 0x24, - 0x92, 0xcd, 0x02, 0x39, 0xf7, 0x35, 0xd9, 0x67, 0x51, 0xea, 0xda, 0xc3, 0xfa, 0x76, 0xdd, 0x73, - 0x8c, 0xc4, 0x58, 0x8c, 0x52, 0xf2, 0x09, 0x38, 0x9c, 0x9e, 0x65, 0xbe, 0xa4, 0x41, 0xe4, 0x53, - 0x3e, 0x65, 0x9c, 0xaa, 0xee, 0xd8, 0x2f, 0x3e, 0xfe, 0x5c, 0x61, 0x95, 0x43, 0xd5, 0x47, 0xbe, - 0x47, 0x83, 0x48, 0x4b, 0xc8, 0x03, 0x68, 0x4a, 0xdc, 0x75, 0x91, 0x2b, 0x73, 0x04, 0x5e, 0xd2, - 0xb9, 0x87, 0xb0, 0xd1, 0x32, 0x1c, 0xf2, 0x7d, 0xb8, 0x5e, 0x78, 0x97, 0x48, 0x3a, 0x61, 0x67, - 0x55, 0x27, 0x5b, 0xca, 0xc9, 0x6b, 0x86, 0x70, 0xa8, 0xe4, 0x0b, 0x57, 0x6f, 0x02, 0xbc, 0xa1, - 0x34, 0xf1, 0x85, 0x8c, 0x4c, 0x13, 0x6d, 0x7b, 0x1d, 0x44, 0xbe, 0x44, 0x80, 0x0c, 0xa1, 0xc7, - 0x52, 0x7f, 0x12, 0xa4, 0x99, 0xee, 0x25, 0x1d, 0x45, 0x00, 0x96, 0xee, 0x07, 0x69, 0x86, 0x09, - 0x18, 0xfd, 0xb1, 0x06, 0x64, 0xb5, 0xa9, 0xfc, 0x6f, 0xe6, 0xe5, 0xd2, 0x38, 0x35, 0x2e, 0x8d, - 0xd3, 0xd7, 0x61, 0x51, 0xa3, 0x8a, 0xde, 0x54, 0xf4, 0x5e, 0x09, 0x22, 0xe9, 0x7c, 0xb4, 0x5a, - 0x2b, 0xd1, 0xfa, 0xb7, 0x0d, 0x36, 0x5e, 0x32, 0xe4, 0x63, 0xe8, 0xe0, 0x35, 0xa3, 0x4a, 0x63, - 0xf9, 0xbe, 0x47, 0x71, 0xe5, 0x64, 0xb4, 0x5f, 0x9b, 0x35, 0xf9, 0x21, 0xf4, 0x95, 0x0a, 0xde, - 0x41, 0x5a, 0xaf, 0x56, 0x2d, 0x14, 0xd4, 0x3b, 0xf7, 0x56, 0xe8, 0xbd, 0xae, 0x60, 0xf8, 0x12, - 0x50, 0x8d, 0x43, 0x52, 0x6e, 0x5a, 0xd0, 0xf9, 0xc6, 0x52, 0xca, 0xc9, 0x1d, 0xe8, 0x30, 0xce, - 0x29, 0x5e, 0x7d, 0x67, 0xaa, 0x0b, 0x15, 0xf9, 0x6b, 0x2b, 0xf8, 0x20, 0x3a, 0x23, 0x8f, 0xa0, - 0x1f, 0xd3, 0x49, 0xe6, 0x2b, 0x9f, 0x54, 0x5f, 0x6b, 0xac, 0xf4, 0xb5, 0x1e, 0x32, 0xd0, 0x31, - 0xd5, 0xd6, 0x1e, 0xc3, 0x40, 0xb2, 0xe9, 0x49, 0x55, 0xa5, 0xb9, 0xda, 0x0a, 0x15, 0xa5, 0xd4, - 0x79, 0x04, 0xdd, 0x44, 0x8a, 0x31, 0x35, 0x3d, 0xa4, 0x75, 0x41, 0x0f, 0x51, 0x1c, 0xdd, 0x43, - 0x1e, 0x41, 0x77, 0x9c, 0xb3, 0xb2, 0xeb, 0xb4, 0x2f, 0xd0, 0x50, 0x1c, 0xad, 0xf1, 0x04, 0x06, - 0x6a, 0x27, 0xa1, 0xe0, 0x91, 0xca, 0x65, 0xea, 0x76, 0x56, 0xfc, 0x52, 0x9b, 0x7d, 0x56, 0x32, - 0xc8, 0x77, 0xc0, 0xd1, 0x9b, 0xa9, 0x68, 0xc1, 0x8a, 0x96, 0xde, 0xf0, 0xb2, 0x9a, 0xc8, 0x4e, - 0xa8, 0xac, 0xaa, 0x75, 0x57, 0xd5, 0x14, 0xa7, 0xa2, 0xf6, 0x39, 0x7c, 0xa4, 0xd5, 0xe8, 0xdb, - 0x8a, 0xa6, 0x3f, 0x91, 0x62, 0xe6, 0x33, 0xee, 0xf6, 0x56, 0x2c, 0xfc, 0xbf, 0xa2, 0x3f, 0x7f, - 0xbb, 0xb0, 0xb1, 0x2f, 0xc5, 0xec, 0x80, 0x8f, 0xfe, 0x62, 0x41, 0xa7, 0x7c, 0xfa, 0xfd, 0xf7, - 0x32, 0xbd, 0x0d, 0x6d, 0x86, 0x6c, 0x24, 0xd4, 0xaa, 0x04, 0x85, 0x2e, 0xd7, 0x71, 0xfd, 0x43, - 0xeb, 0xd8, 0x5e, 0xa9, 0xe3, 0x6b, 0xd0, 0xcc, 0x39, 0x7b, 0x9b, 0xeb, 0x3e, 0xd9, 0xf6, 0xcc, - 0xea, 0x82, 0xfa, 0x6e, 0xae, 0xaf, 0xef, 0xd1, 0xaf, 0x2c, 0xe8, 0x94, 0x2f, 0x55, 0xb2, 0x03, - 0x50, 0x09, 0xb2, 0xb5, 0x12, 0xa2, 0x8a, 0x94, 0x7c, 0x1b, 0xfa, 0x32, 0xe1, 0xd5, 0xa4, 0xe8, - 0xa6, 0xb4, 0xa9, 0xf9, 0x5e, 0xc2, 0xcd, 0xe1, 0x4c, 0x78, 0x25, 0x2b, 0xe5, 0x3d, 0x5d, 0xbf, - 0xe4, 0x9e, 0x1e, 0xfd, 0xdc, 0xaa, 0x3e, 0xe5, 0xc8, 0x10, 0x1a, 0x38, 0x27, 0xac, 0xf3, 0x48, - 0x0b, 0xc8, 0x0e, 0x74, 0xd0, 0x19, 0xcd, 0x5a, 0xeb, 0x47, 0x5b, 0xea, 0x1f, 0x1f, 0xea, 0xc2, - 0x2f, 0x6a, 0xd0, 0xad, 0xbc, 0xc8, 0xc9, 0x3d, 0x68, 0x4f, 0xa5, 0xc8, 0x13, 0x7f, 0x3c, 0x5f, - 0xe3, 0x46, 0x4b, 0xc9, 0xf6, 0xe6, 0x48, 0x0b, 0xa6, 0x53, 0x7f, 0x92, 0xf3, 0xd0, 0xf8, 0xb1, - 0x44, 0x0b, 0xa6, 0xd3, 0xfd, 0x9c, 0x87, 0x64, 0x08, 0x6d, 0xfd, 0xa2, 0xa3, 0xd1, 0x52, 0x8b, - 0x2e, 0x51, 0xf2, 0x10, 0x7a, 0xb8, 0xa3, 0xf2, 0x9b, 0xf6, 0xba, 0x4d, 0x81, 0x4c, 0xf8, 0x67, - 0xe6, 0xcb, 0x46, 0xa1, 0xfc, 0x7a, 0xe3, 0x22, 0x85, 0xa7, 0xc6, 0x87, 0x32, 0x0e, 0xcd, 0xcb, - 0xe2, 0xf0, 0x16, 0x6c, 0x1c, 0x35, 0xc8, 0x7d, 0x68, 0xab, 0x0b, 0x6f, 0xb1, 0x7f, 0xf3, 0x80, - 0xdd, 0x9b, 0x1f, 0x64, 0x74, 0xe6, 0xb5, 0x94, 0x74, 0x6f, 0x4e, 0x6e, 0x14, 0xd3, 0x48, 0xad, - 0xf2, 0xae, 0x34, 0x63, 0xc8, 0x87, 0x85, 0xfe, 0x00, 0x1a, 0x6a, 0x78, 0x59, 0x98, 0xb2, 0x2e, - 0x31, 0x55, 0xbb, 0xcc, 0xd4, 0x27, 0x60, 0xe3, 0x7c, 0x41, 0xbe, 0x06, 0xcd, 0x50, 0x70, 0x7e, - 0xf0, 0xe9, 0x92, 0x29, 0x83, 0xe1, 0x77, 0xde, 0xe6, 0x54, 0xce, 0x95, 0xad, 0x22, 0x15, 0x1a, - 0x1a, 0xfd, 0xcd, 0x02, 0xb7, 0xb0, 0xaa, 0xff, 0x32, 0xc1, 0x8f, 0xf2, 0x19, 0x96, 0x11, 0x3e, - 0xed, 0x32, 0x36, 0xa3, 0x7e, 0x22, 0x45, 0x48, 0xd3, 0x94, 0x46, 0xbe, 0x2a, 0x1b, 0x6b, 0xdb, - 0xf6, 0x06, 0x28, 0x38, 0x2c, 0xf0, 0x57, 0x78, 0x44, 0xb7, 0x78, 0x3e, 0x43, 0x6a, 0x94, 0x87, - 0x34, 0xf2, 0xa5, 0x38, 0x4d, 0x75, 0x8c, 0xbc, 0x01, 0xcf, 0x67, 0x87, 0x06, 0xf7, 0xc4, 0x69, - 0x4a, 0xee, 0x41, 0x1f, 0xb9, 0x2c, 0xa3, 0x32, 0xd0, 0xb5, 0x55, 0x57, 0xc4, 0x4d, 0x9e, 0xcf, - 0x0e, 0x4a, 0xf0, 0xfc, 0xc0, 0x65, 0xaf, 0x0c, 0x5c, 0x43, 0xe8, 0x86, 0x82, 0x87, 0xb9, 0x94, - 0x94, 0x87, 0x73, 0xd5, 0x28, 0x6c, 0xaf, 0x0a, 0x8d, 0xde, 0x81, 0x8d, 0x33, 0x0a, 0xf9, 0x06, - 0xb4, 0xc6, 0x2a, 0x91, 0xe9, 0xfa, 0xec, 0x1a, 0x21, 0xb9, 0x0b, 0x9b, 0x2c, 0x55, 0x8f, 0x97, - 0x20, 0x46, 0x45, 0x1d, 0x32, 0x6f, 0x19, 0xfc, 0xc0, 0x3c, 0xff, 0xc1, 0x02, 0x47, 0x8f, 0x3f, - 0xfb, 0x32, 0x98, 0xd1, 0x3d, 0x91, 0x73, 0x3c, 0xf7, 0x76, 0xe5, 0x82, 0xbf, 0x5a, 0x1d, 0x92, - 0x14, 0xa1, 0x72, 0x57, 0x2b, 0x22, 0x19, 0x41, 0x27, 0xe7, 0x63, 0x14, 0xd1, 0x68, 0x29, 0x81, - 0x0b, 0x18, 0x7b, 0xa5, 0x98, 0x4c, 0x52, 0x9a, 0x99, 0x38, 0x9a, 0x15, 0xd9, 0x86, 0x4e, 0x18, - 0xc4, 0x21, 0x96, 0x43, 0x6a, 0x2a, 0xac, 0x5a, 0xae, 0x0b, 0xe1, 0xe8, 0x37, 0x16, 0x74, 0x2b, - 0xbe, 0x5e, 0xe6, 0xa6, 0x22, 0xac, 0xb8, 0xf9, 0x00, 0x1a, 0x69, 0x16, 0x98, 0x80, 0x95, 0x53, - 0xf7, 0xf9, 0xed, 0x7b, 0x9a, 0x44, 0xb6, 0xa1, 0x4e, 0x79, 0x11, 0xbe, 0x8b, 0xb8, 0x48, 0x19, - 0xfd, 0xd5, 0x82, 0xa6, 0x96, 0x90, 0xfb, 0xd0, 0xc1, 0xca, 0xf7, 0xd5, 0x85, 0xb1, 0xda, 0xa3, - 0xda, 0x28, 0xfc, 0x14, 0xaf, 0x8e, 0x87, 0xb0, 0x78, 0x84, 0x61, 0x3d, 0xd7, 0xd6, 0x64, 0xbc, - 0x5b, 0x32, 0xf6, 0xe6, 0x4b, 0xc5, 0x5f, 0xbf, 0xac, 0xf8, 0xef, 0x43, 0x63, 0x82, 0x0e, 0x9a, - 0x31, 0x6c, 0x6b, 0xc5, 0x73, 0x4f, 0xcb, 0x17, 0x27, 0xa4, 0x71, 0xc9, 0x09, 0xd9, 0xf9, 0x7d, - 0x4d, 0xff, 0xa3, 0x47, 0x3d, 0xc6, 0xb6, 0x60, 0x13, 0xff, 0x96, 0x0f, 0x66, 0x67, 0xa3, 0x80, - 0xca, 0xcb, 0xd9, 0xb1, 0x0a, 0xa8, 0xbc, 0xd3, 0x9c, 0x1a, 0xf9, 0x3f, 0x18, 0x20, 0x54, 0xe9, - 0xe6, 0x4e, 0x9d, 0xf4, 0xa0, 0xad, 0xac, 0x89, 0xe4, 0x95, 0x63, 0x93, 0x4d, 0xe8, 0xe0, 0x4a, - 0xb5, 0x1d, 0xa7, 0x51, 0x1a, 0x51, 0xcd, 0xf8, 0xe9, 0x74, 0xea, 0x34, 0x0b, 0x3e, 0xbe, 0xb2, - 0x9c, 0x56, 0xb1, 0xc2, 0xde, 0xe2, 0xb4, 0xc9, 0x35, 0x20, 0xb8, 0x5a, 0x9e, 0x8d, 0x9d, 0x0e, - 0x71, 0xe1, 0x4a, 0x15, 0x2f, 0x26, 0x42, 0x07, 0x08, 0x81, 0x3e, 0x4a, 0x16, 0x77, 0x9c, 0xd3, - 0x25, 0x37, 0xe0, 0x9a, 0xc2, 0x56, 0x26, 0x03, 0xa7, 0x57, 0x7c, 0x0f, 0x8b, 0xcb, 0xd9, 0x24, - 0x7d, 0x00, 0x5c, 0xe9, 0xb0, 0x3a, 0xfd, 0x9d, 0xef, 0x41, 0xaf, 0x3a, 0xf3, 0x91, 0x01, 0x74, - 0x0f, 0x83, 0x34, 0x3d, 0x3e, 0x91, 0x22, 0x9f, 0x9e, 0x38, 0x1b, 0xb8, 0xbd, 0x3d, 0x29, 0x82, - 0x28, 0x0c, 0xd2, 0xcc, 0xb1, 0x48, 0x1b, 0xec, 0xcf, 0x83, 0xf4, 0xc4, 0xa9, 0xed, 0xec, 0x02, - 0x2c, 0x06, 0x2b, 0xd2, 0x81, 0xc6, 0x17, 0x22, 0x0c, 0x62, 0x67, 0x03, 0x29, 0xc7, 0xec, 0xe5, - 0x4f, 0x1c, 0x8b, 0x74, 0xa1, 0x75, 0xcc, 0xf6, 0x63, 0xcd, 0xff, 0x93, 0x05, 0xed, 0xe2, 0xb5, - 0xbd, 0x88, 0x3e, 0xa7, 0x52, 0xc5, 0x65, 0x83, 0x5c, 0x85, 0x2d, 0x15, 0x47, 0x3a, 0xc9, 0xbe, - 0xcc, 0x33, 0x03, 0x5b, 0x45, 0x80, 0x3c, 0x7c, 0xd9, 0x2d, 0xf0, 0x1a, 0x71, 0xa0, 0xa7, 0x93, - 0x35, 0x63, 0x0a, 0xa9, 0x93, 0x2b, 0xe0, 0xa8, 0x5c, 0xf1, 0x8c, 0x95, 0xa8, 0x4d, 0xae, 0xc3, - 0xd5, 0x25, 0xb3, 0xa5, 0xa8, 0x41, 0x6e, 0xc2, 0xf5, 0x42, 0x61, 0x55, 0xdc, 0xdc, 0x19, 0x42, - 0xaf, 0xfa, 0xca, 0x2f, 0xbe, 0x88, 0xdb, 0xd7, 0x2e, 0xef, 0xfc, 0x08, 0x06, 0xe7, 0xda, 0x0b, - 0x86, 0x6b, 0x5f, 0xc4, 0xb1, 0x38, 0x65, 0x7c, 0xaa, 0xa3, 0x77, 0x28, 0x69, 0x48, 0x23, 0x5c, - 0x5a, 0x18, 0xfd, 0x67, 0xaa, 0x7d, 0x66, 0x9e, 0x38, 0x75, 0x6a, 0x3b, 0x4f, 0x0a, 0x03, 0x65, - 0xe1, 0x63, 0xf4, 0xb0, 0x8f, 0x3b, 0x1b, 0x04, 0xa0, 0xa9, 0xc6, 0xcf, 0xd4, 0xb1, 0xf0, 0xb7, - 0xba, 0xac, 0x53, 0xa7, 0xb6, 0xf7, 0xcd, 0xaf, 0xde, 0xdf, 0xb2, 0xfe, 0xfc, 0xfe, 0x96, 0xf5, - 0x8f, 0xf7, 0xb7, 0xac, 0xdf, 0xfe, 0xf3, 0xd6, 0x06, 0x5c, 0x0d, 0xc5, 0x6c, 0x37, 0x61, 0x7c, - 0x1a, 0x06, 0xc9, 0x6e, 0xc6, 0xa2, 0xb1, 0x2a, 0x89, 0x43, 0xeb, 0x3f, 0x01, 0x00, 0x00, 0xff, - 0xff, 0x1d, 0xc2, 0x00, 0x83, 0x3a, 0x15, 0x00, 0x00, + // 2337 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x73, 0x1b, 0x49, + 0xf5, 0xf7, 0xe8, 0xb7, 0x9e, 0x64, 0x69, 0xdc, 0x5f, 0x27, 0x3b, 0xc9, 0x6e, 0x1c, 0xad, 0xbe, + 0x09, 0x6b, 0x5c, 0x8b, 0x37, 0xbb, 0x81, 0x02, 0x0e, 0xbb, 0x24, 0x76, 0xe2, 0x8d, 0x92, 0xac, + 0xd7, 0x35, 0x76, 0xc1, 0x71, 0x6a, 0x3c, 0xd3, 0x92, 0x3a, 0x1e, 0xf5, 0x4c, 0x66, 0x5a, 0xd8, + 0xca, 0x89, 0x0b, 0x37, 0x6e, 0x50, 0x14, 0x37, 0x2e, 0x5c, 0x28, 0xaa, 0x38, 0xf3, 0x27, 0xec, + 0x91, 0x2b, 0x1c, 0x28, 0x2a, 0x9c, 0xb9, 0x71, 0x87, 0x7a, 0xdd, 0x3d, 0xa3, 0x96, 0x25, 0x9b, + 0x1c, 0x39, 0x49, 0xfd, 0xde, 0xe7, 0xbd, 0x7e, 0xfd, 0x5e, 0xbf, 0x1f, 0x3d, 0xd0, 0xa1, 0x17, + 0x34, 0x98, 0x8a, 0x38, 0xdd, 0x4d, 0xd2, 0x58, 0xc4, 0xa4, 0x22, 0x58, 0x72, 0x7a, 0xdb, 0xa6, + 0x17, 0x49, 0x4a, 0xb3, 0x8c, 0xc5, 0x5c, 0xd1, 0x6f, 0xb7, 0xb3, 0x60, 0x4c, 0x27, 0xbe, 0x5e, + 0x6d, 0x8e, 0xe2, 0x51, 0x2c, 0xff, 0x7e, 0x82, 0xff, 0x14, 0xb5, 0xff, 0xaf, 0x1a, 0x34, 0x9e, + 0x6a, 0x75, 0xe4, 0x1e, 0x94, 0x44, 0xe2, 0x58, 0x3d, 0x6b, 0xbb, 0xf3, 0x59, 0x67, 0x17, 0xb5, + 0xee, 0x22, 0xef, 0x64, 0x96, 0xd0, 0xbd, 0xca, 0x37, 0x7f, 0xbb, 0xbb, 0xe6, 0x96, 0x44, 0x42, + 0x76, 0xa0, 0x21, 0x4e, 0x23, 0x2f, 0x0b, 0x7c, 0xee, 0x94, 0x7a, 0xd6, 0x76, 0xeb, 0xb3, 0xae, + 0xc2, 0x9e, 0xf8, 0xa7, 0x11, 0x3d, 0x0e, 0x7c, 0xee, 0xd6, 0xc5, 0x69, 0x84, 0x7f, 0x10, 0xcb, + 0xc2, 0x0b, 0x85, 0x2d, 0x9b, 0xd8, 0x01, 0x0f, 0xe9, 0x85, 0xc2, 0xb2, 0x50, 0xfe, 0x21, 0xdf, + 0x81, 0x66, 0x46, 0x23, 0x1a, 0x08, 0x16, 0x73, 0xa7, 0x62, 0x82, 0x8f, 0x73, 0xb2, 0x3b, 0x47, + 0x90, 0x87, 0xd0, 0xf2, 0x47, 0xa3, 0x94, 0x8e, 0x7c, 0x29, 0x50, 0x95, 0x02, 0x1b, 0x4a, 0xe0, + 0xf1, 0x9c, 0xe1, 0x9a, 0x28, 0xb2, 0x05, 0x15, 0x11, 0x27, 0x87, 0x4e, 0x4d, 0xa2, 0x41, 0xdb, + 0x1d, 0x27, 0x87, 0xae, 0xa4, 0x93, 0x0f, 0xa1, 0x1a, 0xb1, 0x09, 0x13, 0x4e, 0x5d, 0x02, 0x5a, + 0x0a, 0xf0, 0x12, 0x49, 0xae, 0xe2, 0x90, 0x7d, 0xd8, 0xa0, 0x17, 0xc1, 0xd8, 0xe7, 0x23, 0xea, + 0xa5, 0x34, 0xa0, 0xec, 0xa7, 0x34, 0x75, 0x1a, 0x12, 0x7e, 0x33, 0xf7, 0x99, 0x62, 0xbb, 0x9a, + 0xeb, 0xda, 0xf4, 0x12, 0x05, 0xed, 0x78, 0x15, 0x33, 0xee, 0x34, 0x4d, 0x3b, 0x9e, 0xc7, 0x8c, + 0xbb, 0x92, 0x4e, 0xee, 0x42, 0x2b, 0x0f, 0xb2, 0xc7, 0x42, 0x07, 0x7a, 0xd6, 0x76, 0xd3, 0x85, + 0x9c, 0x34, 0x08, 0x51, 0xc1, 0x19, 0x8b, 0x22, 0xa7, 0x65, 0x2a, 0x78, 0xc1, 0xa2, 0xc8, 0x95, + 0x74, 0xf2, 0x39, 0x74, 0x0b, 0x2b, 0x33, 0xca, 0x43, 0x9a, 0x3a, 0x6d, 0x09, 0xdd, 0x5c, 0xb4, + 0xf1, 0x58, 0xf2, 0xdc, 0x0e, 0x5d, 0x58, 0x93, 0x07, 0x00, 0x47, 0x69, 0xfc, 0x4a, 0x07, 0x63, + 0x5d, 0x4a, 0xda, 0x4a, 0x72, 0x4e, 0x77, 0x0d, 0x0c, 0x79, 0x0e, 0x9b, 0x89, 0x9f, 0x0a, 0x86, + 0x0b, 0x4f, 0xe0, 0x4d, 0x50, 0x51, 0xef, 0x48, 0x59, 0x47, 0xcb, 0xe6, 0x88, 0xf9, 0x55, 0x21, + 0xc9, 0x12, 0x0d, 0x0f, 0x97, 0xc5, 0xa9, 0x70, 0xba, 0xe6, 0xe1, 0x8e, 0xe3, 0x54, 0xb8, 0x92, + 0x4e, 0xee, 0x41, 0xed, 0x9c, 0xf1, 0x30, 0x3e, 0x77, 0x6c, 0x89, 0x68, 0x2b, 0xc4, 0x4f, 0x24, + 0xcd, 0xd5, 0x3c, 0x72, 0x08, 0x1f, 0x0e, 0x19, 0xa7, 0xde, 0x28, 0xf5, 0x19, 0xa7, 0xa1, 0x97, + 0x8d, 0xa7, 0xc3, 0x21, 0x9a, 0x25, 0x52, 0xea, 0x4f, 0xbc, 0x20, 0x9e, 0x72, 0xe1, 0x6c, 0xf4, + 0xac, 0xed, 0x8a, 0xbe, 0xdc, 0x77, 0x10, 0xfe, 0xa5, 0x42, 0x1f, 0x2b, 0xf0, 0xb1, 0xc4, 0xee, + 0x23, 0x94, 0x3c, 0x87, 0xbb, 0x2b, 0xf5, 0x9d, 0xfa, 0x22, 0x18, 0x7b, 0x19, 0x7b, 0x43, 0x1d, + 0x62, 0x68, 0x7b, 0x7f, 0x59, 0xdb, 0x1e, 0x22, 0x8f, 0xd9, 0x1b, 0xda, 0xff, 0x6d, 0x09, 0x3a, + 0x8b, 0x21, 0x20, 0xdb, 0x46, 0xf2, 0x91, 0xc5, 0x20, 0x2d, 0x25, 0xe0, 0x06, 0xe5, 0x41, 0x1c, + 0xd2, 0xd0, 0x13, 0x7e, 0x76, 0xe6, 0x4d, 0xa8, 0xf0, 0x9d, 0x52, 0xaf, 0xbc, 0xdd, 0x76, 0xbb, + 0x9a, 0x71, 0xe2, 0x67, 0x67, 0x5f, 0x51, 0xe1, 0x93, 0x4f, 0xa1, 0x33, 0x0f, 0xcb, 0x19, 0x9d, + 0x65, 0x4e, 0xb9, 0x57, 0x9e, 0x3b, 0xf5, 0xe9, 0x45, 0x92, 0xba, 0xeb, 0x05, 0xe2, 0x05, 0x9d, + 0x65, 0xe4, 0x1e, 0x54, 0x83, 0x31, 0x8b, 0x42, 0x9d, 0x83, 0x46, 0x21, 0xc0, 0xbb, 0xe7, 0x2a, + 0x26, 0xb9, 0x0f, 0x55, 0x31, 0x4b, 0x68, 0xe6, 0x54, 0xa5, 0x3e, 0x9d, 0xa9, 0x07, 0x8c, 0x46, + 0x21, 0x9a, 0xeb, 0x2a, 0x2e, 0xf9, 0x3e, 0x74, 0xfd, 0x28, 0xf2, 0x86, 0x48, 0xf7, 0x94, 0x40, + 0x6d, 0xb5, 0xc0, 0xba, 0x1f, 0x45, 0xc5, 0x2a, 0xeb, 0xff, 0xca, 0x02, 0xfb, 0x72, 0x22, 0xad, + 0x3e, 0xb9, 0xb5, 0xfa, 0xe4, 0x0f, 0xa0, 0x65, 0xee, 0x5a, 0x5a, 0xbd, 0x2b, 0x0c, 0x8b, 0x2d, + 0x49, 0x5f, 0x46, 0xa0, 0x7c, 0x55, 0x04, 0xd0, 0xf7, 0xfd, 0x5f, 0x94, 0xa1, 0x39, 0xbf, 0xa8, + 0x77, 0xa1, 0xa1, 0xae, 0x3a, 0x0b, 0x65, 0xe4, 0xca, 0x3a, 0x4a, 0x75, 0x49, 0x1d, 0x84, 0x64, + 0x07, 0xea, 0x41, 0x1c, 0x4d, 0x27, 0x3c, 0x37, 0x40, 0x27, 0xd1, 0xbe, 0x24, 0x0e, 0xf8, 0x30, + 0x76, 0x73, 0x00, 0x71, 0xa0, 0x12, 0xd2, 0x2c, 0x90, 0x06, 0x34, 0xb4, 0x22, 0x49, 0x21, 0x1f, + 0x03, 0x49, 0x52, 0x36, 0xf1, 0xd3, 0x99, 0xa7, 0xc0, 0x1e, 0x0b, 0x33, 0xa7, 0xd2, 0x2b, 0x6f, + 0x97, 0x5d, 0x5b, 0x73, 0xb4, 0xc6, 0x30, 0x23, 0x8f, 0xc0, 0xe6, 0xf4, 0x42, 0x78, 0x29, 0xf5, + 0x43, 0x8f, 0xf2, 0x11, 0xe3, 0x54, 0x56, 0xc7, 0x4e, 0xbe, 0xf9, 0x53, 0x49, 0x33, 0x2e, 0x55, + 0x07, 0xf1, 0x2e, 0xf5, 0x43, 0xc5, 0x21, 0x1f, 0x43, 0x2d, 0xc5, 0x53, 0xe7, 0xb1, 0xd2, 0x57, + 0xe0, 0x05, 0x9d, 0xb9, 0x48, 0xd6, 0x52, 0x1a, 0x43, 0x7e, 0x08, 0xb7, 0x72, 0xeb, 0x92, 0x94, + 0x0e, 0xd9, 0x85, 0x69, 0x64, 0x5d, 0x1a, 0x79, 0x53, 0x03, 0x8e, 0x24, 0x7f, 0x6e, 0xea, 0x1d, + 0x80, 0x33, 0x4a, 0x13, 0x2f, 0x4e, 0x43, 0x5d, 0x44, 0x1b, 0x6e, 0x13, 0x29, 0x5f, 0x23, 0x81, + 0xf4, 0xa0, 0xcd, 0x32, 0x6f, 0xe8, 0x67, 0x42, 0xd5, 0x92, 0xa6, 0x04, 0x00, 0xcb, 0x0e, 0xfc, + 0x4c, 0x60, 0x00, 0xfa, 0x7f, 0x28, 0x01, 0x59, 0x2e, 0x2a, 0xff, 0x9b, 0x71, 0xb9, 0xd6, 0x4f, + 0xd5, 0x6b, 0xfd, 0xf4, 0xff, 0x30, 0xcf, 0x51, 0x09, 0xaf, 0x49, 0x78, 0xbb, 0x20, 0x22, 0xe8, + 0xb2, 0xb7, 0xea, 0x4b, 0xde, 0xfa, 0x77, 0x05, 0x2a, 0xd8, 0x64, 0xc8, 0xa7, 0xd0, 0xc4, 0x36, + 0x23, 0x53, 0x63, 0xb1, 0xdf, 0x23, 0xdb, 0xb8, 0x19, 0x8d, 0x57, 0x7a, 0x4d, 0xbe, 0x80, 0x8e, + 0x14, 0xc1, 0x1e, 0xa4, 0xe4, 0x4a, 0x66, 0xa2, 0xa0, 0xdc, 0xa5, 0x59, 0xa1, 0xfd, 0xca, 0xa0, + 0xe1, 0x24, 0x20, 0x0b, 0x47, 0x4a, 0xb9, 0x2e, 0x41, 0x97, 0x0b, 0x4b, 0xc1, 0x27, 0x1f, 0x42, + 0x93, 0x71, 0x4e, 0xb1, 0xf5, 0x5d, 0xc8, 0x2a, 0x94, 0xc7, 0xaf, 0x21, 0xc9, 0x83, 0xf0, 0x82, + 0x3c, 0x80, 0x4e, 0x44, 0x87, 0xc2, 0x93, 0x36, 0xc9, 0xba, 0x56, 0x5d, 0xaa, 0x6b, 0x6d, 0x44, + 0xa0, 0x61, 0xb2, 0xac, 0x7d, 0x06, 0xdd, 0x94, 0x8d, 0xc6, 0xa6, 0x48, 0x6d, 0xb9, 0x14, 0x4a, + 0x48, 0x21, 0xf3, 0x00, 0x5a, 0x49, 0x1a, 0x9f, 0x52, 0x5d, 0x43, 0xea, 0x57, 0xd4, 0x10, 0x89, + 0x51, 0x35, 0xe4, 0x01, 0xb4, 0x4e, 0xa7, 0xac, 0xa8, 0x3a, 0x8d, 0x2b, 0x24, 0x24, 0x46, 0x49, + 0x3c, 0x84, 0xae, 0x3c, 0x49, 0x10, 0xf3, 0x50, 0xc6, 0x32, 0x73, 0x9a, 0x4b, 0x76, 0xc9, 0xc3, + 0xee, 0x17, 0x08, 0xf2, 0x3d, 0xb0, 0xd5, 0x61, 0x0c, 0x29, 0x58, 0x92, 0x52, 0x07, 0x5e, 0x14, + 0x8b, 0xc5, 0x98, 0xa6, 0xa6, 0x58, 0x6b, 0x59, 0x4c, 0x62, 0x0c, 0xb1, 0x67, 0xf0, 0xbe, 0x12, + 0xa3, 0xaf, 0x0d, 0x49, 0x6f, 0x98, 0xc6, 0x13, 0x8f, 0x71, 0xa7, 0xbd, 0xa4, 0xe1, 0x3d, 0x09, + 0x7f, 0xfa, 0x7a, 0xae, 0xe3, 0x20, 0x8d, 0x27, 0x03, 0xde, 0xff, 0x8b, 0x05, 0xcd, 0x62, 0xf4, + 0xfb, 0xef, 0x69, 0x7a, 0x17, 0x1a, 0x0c, 0xd1, 0x08, 0x28, 0x99, 0x00, 0x49, 0x5d, 0xcc, 0xe3, + 0xf2, 0xbb, 0xe6, 0x71, 0x65, 0x29, 0x8f, 0x6f, 0x42, 0x6d, 0xca, 0xd9, 0xeb, 0xa9, 0xaa, 0x93, + 0x0d, 0x57, 0xaf, 0xae, 0xc8, 0xef, 0xda, 0xea, 0xfc, 0xee, 0xff, 0xd2, 0x82, 0x66, 0x31, 0xa9, + 0x92, 0x1d, 0x00, 0xc3, 0xc9, 0xd6, 0x92, 0x8b, 0x0c, 0x2e, 0xf9, 0x2e, 0x74, 0xd2, 0x84, 0x9b, + 0x41, 0x51, 0x45, 0x69, 0x5d, 0xe1, 0xdd, 0x84, 0xeb, 0xcb, 0x99, 0x70, 0x23, 0x2a, 0x45, 0x9f, + 0x2e, 0x5f, 0xd3, 0xa7, 0xfb, 0x3f, 0xb3, 0xcc, 0x51, 0x8e, 0xf4, 0xa0, 0x8a, 0xef, 0x84, 0x55, + 0x16, 0x29, 0x06, 0xd9, 0x81, 0x26, 0x1a, 0xa3, 0x50, 0x2b, 0xed, 0x68, 0xa4, 0xea, 0xcf, 0xbb, + 0x9a, 0xf0, 0xf3, 0x12, 0xb4, 0x8c, 0x89, 0x9c, 0xdc, 0x87, 0xc6, 0x28, 0x8d, 0xa7, 0x89, 0x77, + 0x3a, 0x5b, 0x61, 0x46, 0x5d, 0xf2, 0xf6, 0x66, 0x08, 0xf3, 0x47, 0x23, 0x6f, 0x38, 0xe5, 0x81, + 0xb6, 0x63, 0x01, 0xe6, 0x8f, 0x46, 0x07, 0x53, 0x1e, 0x90, 0x1e, 0x34, 0xd4, 0x44, 0x47, 0xc3, + 0x85, 0x12, 0x5d, 0x50, 0xc9, 0x27, 0xd0, 0xc6, 0x13, 0x15, 0x7b, 0x56, 0x56, 0x1d, 0x0a, 0xd2, + 0x84, 0x7f, 0xa9, 0x77, 0xd6, 0x02, 0xc5, 0xee, 0xd5, 0xab, 0x04, 0x1e, 0x6b, 0x1b, 0x0a, 0x3f, + 0xd4, 0xae, 0xf3, 0xc3, 0x6b, 0xa8, 0xe0, 0x53, 0x83, 0x7c, 0x04, 0x0d, 0xd9, 0xf0, 0xe6, 0xe7, + 0xd7, 0x03, 0xec, 0xde, 0x6c, 0x20, 0xe8, 0xc4, 0xad, 0x4b, 0xee, 0xde, 0x8c, 0xdc, 0xce, 0x5f, + 0x23, 0x25, 0x63, 0xae, 0xd4, 0xcf, 0x90, 0x77, 0x73, 0xfd, 0x00, 0xaa, 0xf2, 0xf1, 0x32, 0x57, + 0x65, 0x5d, 0xa3, 0xaa, 0x74, 0x9d, 0xaa, 0x47, 0x50, 0xc1, 0xf7, 0x05, 0xf9, 0x00, 0x6a, 0x41, + 0xcc, 0xf9, 0xe0, 0xc9, 0x82, 0x2a, 0x4d, 0xc3, 0x7d, 0x5e, 0x4f, 0x69, 0x3a, 0x93, 0xba, 0xf2, + 0x50, 0x28, 0x52, 0xff, 0x4f, 0x25, 0x70, 0x72, 0xad, 0xea, 0x97, 0xc5, 0xfc, 0x78, 0x3a, 0xc1, + 0x34, 0xc2, 0xd1, 0x4e, 0xb0, 0x09, 0xf5, 0x92, 0x34, 0x0e, 0x68, 0x96, 0xd1, 0xd0, 0x93, 0x69, + 0x63, 0x6d, 0x57, 0xdc, 0x2e, 0x32, 0x8e, 0x72, 0xfa, 0x21, 0x5e, 0xd1, 0x0d, 0x3e, 0x9d, 0x20, + 0x34, 0x9c, 0x06, 0x34, 0xf4, 0xd2, 0xf8, 0x3c, 0x53, 0x3e, 0x72, 0xbb, 0x7c, 0x3a, 0x39, 0xd2, + 0x74, 0x37, 0x3e, 0xcf, 0xc8, 0x7d, 0xe8, 0x20, 0x96, 0x09, 0x9a, 0xfa, 0x2a, 0xb7, 0xca, 0x12, + 0xb8, 0xce, 0xa7, 0x93, 0x41, 0x41, 0xbc, 0xfc, 0xe0, 0xaa, 0x2c, 0x3d, 0xb8, 0x7a, 0xd0, 0x0a, + 0x62, 0x1e, 0x4c, 0xd3, 0x94, 0xf2, 0x60, 0x26, 0x0b, 0x45, 0xc5, 0x35, 0x49, 0xe4, 0x25, 0x6c, + 0x0a, 0x36, 0x8c, 0xfc, 0x6c, 0x2c, 0xfb, 0x2f, 0xa6, 0xb3, 0xa0, 0x17, 0x42, 0xdf, 0x09, 0xfd, + 0x02, 0x3a, 0x61, 0x07, 0x88, 0xc0, 0xf2, 0xb7, 0xaf, 0xf8, 0xcf, 0xd6, 0x5c, 0xa2, 0xe5, 0x0c, + 0xea, 0x5e, 0x1b, 0xe0, 0x09, 0x15, 0x3e, 0x8b, 0xb0, 0x88, 0xf5, 0xff, 0x59, 0x06, 0xb2, 0x2c, + 0x4a, 0x1e, 0xc1, 0x1d, 0x11, 0x0b, 0x5f, 0x3d, 0xc6, 0xf1, 0x4d, 0x92, 0xf8, 0xc1, 0x59, 0xe6, + 0x31, 0xee, 0x85, 0x93, 0x21, 0x8b, 0xa8, 0x76, 0xe0, 0x2d, 0x09, 0x3a, 0x56, 0x98, 0x23, 0x84, + 0x0c, 0xf8, 0x13, 0x09, 0x30, 0x34, 0x9c, 0xb1, 0x24, 0x59, 0xa1, 0xa1, 0x64, 0x6a, 0x50, 0x98, + 0x45, 0x0d, 0x5f, 0xc0, 0x07, 0x8b, 0x36, 0x60, 0x34, 0x0c, 0x05, 0xca, 0xdd, 0x8e, 0x69, 0x02, + 0x06, 0x66, 0x85, 0xbc, 0xb6, 0xe0, 0x92, 0x7c, 0xc5, 0x94, 0x57, 0x90, 0x05, 0xf9, 0xaf, 0xe0, + 0xbe, 0x92, 0x4f, 0xe3, 0xe9, 0x68, 0xec, 0x65, 0x54, 0x78, 0xaa, 0x67, 0x44, 0xb1, 0x1f, 0x7a, + 0xf2, 0x4e, 0x31, 0x8e, 0x97, 0x49, 0x85, 0x6c, 0x4b, 0x82, 0x5d, 0xc4, 0x1e, 0x53, 0x21, 0x7b, + 0xd1, 0xcb, 0xd8, 0x0f, 0x4f, 0xd8, 0x84, 0x0e, 0xf8, 0x61, 0x46, 0x3e, 0xcf, 0xcd, 0x51, 0xdb, + 0xab, 0x29, 0xda, 0xd0, 0x52, 0x93, 0x5a, 0xde, 0x93, 0x18, 0x65, 0x01, 0x0e, 0xce, 0x85, 0xf8, + 0x53, 0xe8, 0x29, 0xf1, 0x20, 0xa5, 0xbe, 0xa0, 0x5e, 0xc6, 0xfd, 0x24, 0x1b, 0xc7, 0xc2, 0x54, + 0x51, 0x97, 0x2a, 0xde, 0x97, 0xb8, 0x7d, 0x09, 0x3b, 0xd6, 0xa8, 0x5c, 0x4d, 0xff, 0x0d, 0x54, + 0xf0, 0xbd, 0x4b, 0xbe, 0x05, 0xf5, 0x53, 0x59, 0x14, 0xb2, 0xd5, 0x95, 0x42, 0x33, 0xc9, 0x3d, + 0x58, 0x67, 0x99, 0x1c, 0x84, 0xfd, 0x08, 0x05, 0x55, 0xfa, 0xb9, 0x8b, 0xc4, 0x77, 0xac, 0x19, + 0xbf, 0xb7, 0xc0, 0x56, 0x4f, 0xe9, 0x83, 0xd4, 0x9f, 0xd0, 0xbd, 0x78, 0xca, 0xb1, 0x86, 0x56, + 0x8c, 0x61, 0xf1, 0x86, 0xf9, 0xe0, 0x96, 0x00, 0x63, 0xee, 0x93, 0x40, 0xd2, 0x87, 0xe6, 0x94, + 0x9f, 0x22, 0x8b, 0x86, 0x0b, 0xc5, 0x60, 0x4e, 0xc6, 0xbe, 0x1b, 0x0f, 0x87, 0x19, 0x15, 0xfa, + 0x92, 0xe8, 0x15, 0xd9, 0x86, 0x66, 0xe0, 0x47, 0x01, 0x96, 0xd6, 0x4c, 0x57, 0x6b, 0xb3, 0xf4, + 0xcf, 0x99, 0xfd, 0x5f, 0x5b, 0xd0, 0x32, 0x6c, 0xbd, 0xce, 0x4c, 0x09, 0x58, 0x32, 0xf3, 0x63, + 0xa8, 0x66, 0xc2, 0xd7, 0x0e, 0x2b, 0xbe, 0xe0, 0x5c, 0x3e, 0xbe, 0xab, 0x40, 0x64, 0x1b, 0xca, + 0x94, 0xe7, 0xee, 0xbb, 0x0a, 0x8b, 0x90, 0xfe, 0x5f, 0x2d, 0xa8, 0x29, 0x0e, 0xf9, 0x08, 0x9a, + 0xd8, 0x45, 0x3c, 0x39, 0x7c, 0x2c, 0xf7, 0xbb, 0x06, 0x32, 0x9f, 0xe0, 0x18, 0xf2, 0x09, 0xcc, + 0x07, 0x7a, 0xec, 0x0d, 0xa5, 0x15, 0x11, 0x6f, 0x15, 0x88, 0xbd, 0xd9, 0x42, 0x23, 0x29, 0x5f, + 0xd7, 0x48, 0x3e, 0x82, 0xea, 0x10, 0x0d, 0xd4, 0x4f, 0xfa, 0x8d, 0x25, 0xcb, 0x5d, 0xc5, 0x9f, + 0xdf, 0x90, 0xea, 0x35, 0x37, 0x64, 0xe7, 0x77, 0x25, 0xf5, 0xd1, 0x50, 0x0e, 0xf6, 0x1b, 0xb0, + 0x8e, 0xbf, 0xc5, 0xe3, 0xcb, 0x5e, 0xcb, 0x49, 0xc5, 0xa0, 0x67, 0x5b, 0x39, 0xa9, 0x98, 0x8f, + 0xec, 0x12, 0xf9, 0x3f, 0xe8, 0x22, 0xc9, 0x98, 0x0c, 0xec, 0x32, 0x69, 0x43, 0x43, 0x6a, 0x8b, + 0x93, 0x43, 0xbb, 0x42, 0xd6, 0xa1, 0x89, 0x2b, 0xd9, 0xc2, 0xec, 0x6a, 0xa1, 0x44, 0x36, 0xf6, + 0xc7, 0xa3, 0x91, 0x5d, 0xcb, 0xf1, 0x38, 0xb1, 0xdb, 0xf5, 0x7c, 0x85, 0x7d, 0xca, 0x6e, 0x90, + 0x9b, 0x40, 0x70, 0xb5, 0xf8, 0x9d, 0xc5, 0x6e, 0x12, 0x07, 0x36, 0x4d, 0x7a, 0xfe, 0x75, 0xc1, + 0x06, 0x42, 0xa0, 0x83, 0x9c, 0xf9, 0xbc, 0x64, 0xb7, 0xc8, 0x6d, 0xb8, 0x29, 0x69, 0x4b, 0xaf, + 0x4c, 0xbb, 0x9d, 0xef, 0x87, 0xc9, 0x65, 0xaf, 0x93, 0x0e, 0x00, 0xae, 0x94, 0x5b, 0xed, 0xce, + 0xce, 0x0f, 0xa0, 0x6d, 0x7e, 0x3f, 0x20, 0x5d, 0x68, 0x1d, 0xf9, 0x59, 0x76, 0x32, 0x96, 0x95, + 0xca, 0x5e, 0xc3, 0xe3, 0xed, 0xa5, 0xb1, 0x1f, 0x06, 0x7e, 0x26, 0x6c, 0x8b, 0x34, 0xa0, 0xf2, + 0xcc, 0xcf, 0xc6, 0x76, 0x69, 0x67, 0x17, 0x60, 0xfe, 0x48, 0x27, 0x4d, 0xa8, 0xbe, 0x8c, 0x03, + 0x3f, 0xb2, 0xd7, 0x10, 0x72, 0xc2, 0x5e, 0xfc, 0xd8, 0xb6, 0x48, 0x0b, 0xea, 0xba, 0x21, 0xd8, + 0xa5, 0x9d, 0x3f, 0x5a, 0xd0, 0xc8, 0x5f, 0x6e, 0x73, 0xef, 0x73, 0x9a, 0x4a, 0xbf, 0xac, 0x91, + 0x1b, 0xb0, 0x21, 0xfd, 0x48, 0x87, 0xe2, 0xeb, 0xa9, 0xd0, 0x64, 0x2b, 0x77, 0x90, 0x8b, 0xaf, + 0x84, 0x39, 0xbd, 0x44, 0x6c, 0x68, 0xab, 0x60, 0x4d, 0x98, 0xa4, 0x94, 0xc9, 0x26, 0xd8, 0x32, + 0x56, 0x5c, 0xb0, 0x82, 0x5a, 0x21, 0xb7, 0xe0, 0xc6, 0x82, 0xda, 0x82, 0x55, 0x25, 0x77, 0xe0, + 0x56, 0x2e, 0xb0, 0xcc, 0xae, 0xed, 0xf4, 0xa0, 0x6d, 0xbe, 0x18, 0xf3, 0x1d, 0xf1, 0xf8, 0xca, + 0xe4, 0x9d, 0x1f, 0x41, 0xf7, 0x52, 0x79, 0x41, 0x77, 0x1d, 0xc4, 0x51, 0x14, 0x9f, 0x33, 0x3e, + 0x52, 0xde, 0x3b, 0x4a, 0x69, 0x40, 0x43, 0x5c, 0x5a, 0xe8, 0xfd, 0x7d, 0xd9, 0x8a, 0x85, 0x1b, + 0x9f, 0xdb, 0xa5, 0x9d, 0x87, 0xb9, 0x82, 0x22, 0xf1, 0xd1, 0x7b, 0xd8, 0x3a, 0xec, 0x35, 0x02, + 0x50, 0x93, 0x9f, 0x32, 0x32, 0xdb, 0xc2, 0xff, 0x72, 0xf0, 0xcb, 0xec, 0xd2, 0xde, 0xb7, 0xbf, + 0x79, 0xbb, 0x65, 0xfd, 0xf9, 0xed, 0x96, 0xf5, 0xf7, 0xb7, 0x5b, 0xd6, 0x6f, 0xfe, 0xb1, 0xb5, + 0x06, 0x37, 0x82, 0x78, 0xb2, 0x9b, 0x30, 0x3e, 0x0a, 0xfc, 0x64, 0x57, 0xb0, 0xf0, 0x54, 0xa6, + 0xc4, 0x91, 0xf5, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x12, 0x94, 0xc2, 0xc8, 0x86, 0x17, 0x00, + 0x00, } diff --git a/proto/executor.proto b/proto/executor.proto index ba1cbec0..ae4298ed 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -207,8 +207,23 @@ message ExecutorExecutionSummary { // The execution concurrency for this executor optional uint64 concurrency = 5; + + oneof DetailInfo { + TiFlashScanContext tiflash_scan_context = 6; + } +} + +message TiFlashScanContext { + optional uint64 total_scanned_packs_in_dmfile = 1; + optional uint64 total_skipped_packs_in_dmfile = 2; + optional uint64 total_scanned_rows_in_dmfile = 3; + optional uint64 total_skipped_rows_in_dmfile = 4; + optional uint64 total_rough_set_index_load_time_in_ns = 5; + optional uint64 total_dmfile_read_time_in_ns = 6; + optional uint64 total_create_snapshot_time_in_ns = 7; } + message Sort { repeated ByItem byItems = 1; optional bool isPartialSort = 2;