From d7edd205dbf9cc8c42f82a4fb4434a8d15949d3e Mon Sep 17 00:00:00 2001 From: Radu Berinde Date: Mon, 4 Mar 2019 16:17:10 -0500 Subject: [PATCH] stats: improve UI experience This change makes the following improvements: - the job name is now a user-friendly message (instead of the exact SQL statement) for automatic table stats. The message includes the fully-qualified tale name (the table name was not visible at all). - the event description in the UI is fixed (used to be an "unknown event error"); the message includes the FQ table name. - events are not posted by default (they are too spammy and redundant with the jobs); but they can be turned on via a cluster setting (could be useful during debugging). Release note (admin ui change): CREATE STATISTICS jobs no longer generate events by default; improved descriptions for automatic statistics jobs. --- docs/generated/settings/settings.html | 1 + pkg/jobs/jobspb/jobs.pb.go | 411 ++++++++++-------- pkg/jobs/jobspb/jobs.proto | 7 +- pkg/sql/create_stats.go | 40 +- pkg/sql/distsql_plan_stats.go | 2 +- .../testdata/logic_test/distsql_event_log | 10 +- pkg/ui/src/util/eventTypes.ts | 2 + pkg/ui/src/util/events.ts | 5 +- 8 files changed, 279 insertions(+), 199 deletions(-) diff --git a/docs/generated/settings/settings.html b/docs/generated/settings/settings.html index 0221adb867d7..e0d5036a2380 100644 --- a/docs/generated/settings/settings.html +++ b/docs/generated/settings/settings.html @@ -88,6 +88,7 @@ sql.query_cache.enabledbooleantrueenable the query cache sql.stats.experimental_automatic_collection.enabledbooleantrueexperimental automatic statistics collection mode sql.stats.experimental_automatic_collection.fraction_idlefloat0.9fraction of time that automatic statistics sampler processors are idle +sql.stats.post_eventsbooleanfalseif set, an event is shown for every CREATE STATISTICS job sql.tablecache.lease.refresh_limitinteger50maximum number of tables to periodically refresh leases for sql.trace.log_statement_executebooleanfalseset to true to enable logging of executed statements sql.trace.session_eventlog.enabledbooleanfalseset to true to enable session tracing diff --git a/pkg/jobs/jobspb/jobs.pb.go b/pkg/jobs/jobspb/jobs.pb.go index ead3b00bc9d6..d4ec4f62c16a 100644 --- a/pkg/jobs/jobspb/jobs.pb.go +++ b/pkg/jobs/jobspb/jobs.pb.go @@ -12,7 +12,6 @@ import hlc "github.com/cockroachdb/cockroach/pkg/util/hlc" import github_com_cockroachdb_cockroach_pkg_roachpb "github.com/cockroachdb/cockroach/pkg/roachpb" import github_com_cockroachdb_cockroach_pkg_sql_sqlbase "github.com/cockroachdb/cockroach/pkg/sql/sqlbase" -import github_com_cockroachdb_cockroach_pkg_sql_sem_tree "github.com/cockroachdb/cockroach/pkg/sql/sem/tree" import github_com_gogo_protobuf_sortkeys "github.com/gogo/protobuf/sortkeys" import encoding_binary "encoding/binary" @@ -56,7 +55,7 @@ func (x Status) String() string { return proto.EnumName(Status_name, int32(x)) } func (Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{0} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{0} } type Type int32 @@ -91,7 +90,7 @@ var Type_value = map[string]int32{ } func (Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{1} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{1} } type Lease struct { @@ -107,7 +106,7 @@ func (m *Lease) Reset() { *m = Lease{} } func (m *Lease) String() string { return proto.CompactTextString(m) } func (*Lease) ProtoMessage() {} func (*Lease) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{0} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{0} } func (m *Lease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -145,7 +144,7 @@ func (m *BackupDetails) Reset() { *m = BackupDetails{} } func (m *BackupDetails) String() string { return proto.CompactTextString(m) } func (*BackupDetails) ProtoMessage() {} func (*BackupDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{1} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{1} } func (m *BackupDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -179,7 +178,7 @@ func (m *BackupProgress) Reset() { *m = BackupProgress{} } func (m *BackupProgress) String() string { return proto.CompactTextString(m) } func (*BackupProgress) ProtoMessage() {} func (*BackupProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{2} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{2} } func (m *BackupProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -218,7 +217,7 @@ func (m *RestoreDetails) Reset() { *m = RestoreDetails{} } func (m *RestoreDetails) String() string { return proto.CompactTextString(m) } func (*RestoreDetails) ProtoMessage() {} func (*RestoreDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{3} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{3} } func (m *RestoreDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -254,7 +253,7 @@ func (m *RestoreDetails_TableRewrite) Reset() { *m = RestoreDetails_Tabl func (m *RestoreDetails_TableRewrite) String() string { return proto.CompactTextString(m) } func (*RestoreDetails_TableRewrite) ProtoMessage() {} func (*RestoreDetails_TableRewrite) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{3, 0} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{3, 0} } func (m *RestoreDetails_TableRewrite) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -289,7 +288,7 @@ func (m *RestoreProgress) Reset() { *m = RestoreProgress{} } func (m *RestoreProgress) String() string { return proto.CompactTextString(m) } func (*RestoreProgress) ProtoMessage() {} func (*RestoreProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{4} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{4} } func (m *RestoreProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -342,7 +341,7 @@ func (m *ImportDetails) Reset() { *m = ImportDetails{} } func (m *ImportDetails) String() string { return proto.CompactTextString(m) } func (*ImportDetails) ProtoMessage() {} func (*ImportDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{5} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{5} } func (m *ImportDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -379,7 +378,7 @@ func (m *ImportDetails_Table) Reset() { *m = ImportDetails_Table{} } func (m *ImportDetails_Table) String() string { return proto.CompactTextString(m) } func (*ImportDetails_Table) ProtoMessage() {} func (*ImportDetails_Table) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{5, 0} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{5, 0} } func (m *ImportDetails_Table) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -420,7 +419,7 @@ func (m *ImportProgress) Reset() { *m = ImportProgress{} } func (m *ImportProgress) String() string { return proto.CompactTextString(m) } func (*ImportProgress) ProtoMessage() {} func (*ImportProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{6} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{6} } func (m *ImportProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -455,7 +454,7 @@ func (m *ResumeSpanList) Reset() { *m = ResumeSpanList{} } func (m *ResumeSpanList) String() string { return proto.CompactTextString(m) } func (*ResumeSpanList) ProtoMessage() {} func (*ResumeSpanList) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{7} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{7} } func (m *ResumeSpanList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -492,7 +491,7 @@ func (m *DroppedTableDetails) Reset() { *m = DroppedTableDetails{} } func (m *DroppedTableDetails) String() string { return proto.CompactTextString(m) } func (*DroppedTableDetails) ProtoMessage() {} func (*DroppedTableDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{8} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{8} } func (m *DroppedTableDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -536,7 +535,7 @@ func (m *SchemaChangeDetails) Reset() { *m = SchemaChangeDetails{} } func (m *SchemaChangeDetails) String() string { return proto.CompactTextString(m) } func (*SchemaChangeDetails) ProtoMessage() {} func (*SchemaChangeDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{9} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{9} } func (m *SchemaChangeDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -570,7 +569,7 @@ func (m *SchemaChangeProgress) Reset() { *m = SchemaChangeProgress{} } func (m *SchemaChangeProgress) String() string { return proto.CompactTextString(m) } func (*SchemaChangeProgress) ProtoMessage() {} func (*SchemaChangeProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{10} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{10} } func (m *SchemaChangeProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -605,7 +604,7 @@ func (m *ChangefeedTarget) Reset() { *m = ChangefeedTarget{} } func (m *ChangefeedTarget) String() string { return proto.CompactTextString(m) } func (*ChangefeedTarget) ProtoMessage() {} func (*ChangefeedTarget) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{11} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{11} } func (m *ChangefeedTarget) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -660,7 +659,7 @@ func (m *ChangefeedDetails) Reset() { *m = ChangefeedDetails{} } func (m *ChangefeedDetails) String() string { return proto.CompactTextString(m) } func (*ChangefeedDetails) ProtoMessage() {} func (*ChangefeedDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{12} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{12} } func (m *ChangefeedDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -696,7 +695,7 @@ func (m *ResolvedSpan) Reset() { *m = ResolvedSpan{} } func (m *ResolvedSpan) String() string { return proto.CompactTextString(m) } func (*ResolvedSpan) ProtoMessage() {} func (*ResolvedSpan) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{13} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{13} } func (m *ResolvedSpan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -731,7 +730,7 @@ func (m *ChangefeedProgress) Reset() { *m = ChangefeedProgress{} } func (m *ChangefeedProgress) String() string { return proto.CompactTextString(m) } func (*ChangefeedProgress) ProtoMessage() {} func (*ChangefeedProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{14} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{14} } func (m *ChangefeedProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -761,20 +760,22 @@ var xxx_messageInfo_ChangefeedProgress proto.InternalMessageInfo // collects table statistics, which contain info such as the number of rows in // the table or the number of distinct values in a column. type CreateStatsDetails struct { - Name github_com_cockroachdb_cockroach_pkg_sql_sem_tree.Name `protobuf:"bytes,1,opt,name=name,proto3,casttype=github.com/cockroachdb/cockroach/pkg/sql/sem/tree.Name" json:"name,omitempty"` - Table sqlbase.TableDescriptor `protobuf:"bytes,2,opt,name=table,proto3" json:"table"` - ColumnLists []CreateStatsDetails_ColList `protobuf:"bytes,3,rep,name=column_lists,json=columnLists,proto3" json:"column_lists"` - Statement string `protobuf:"bytes,4,opt,name=statement,proto3" json:"statement,omitempty"` - AsOf *hlc.Timestamp `protobuf:"bytes,5,opt,name=as_of,json=asOf,proto3" json:"as_of,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_sizecache int32 `json:"-"` + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Table sqlbase.TableDescriptor `protobuf:"bytes,2,opt,name=table,proto3" json:"table"` + ColumnLists []CreateStatsDetails_ColList `protobuf:"bytes,3,rep,name=column_lists,json=columnLists,proto3" json:"column_lists"` + Statement string `protobuf:"bytes,4,opt,name=statement,proto3" json:"statement,omitempty"` + AsOf *hlc.Timestamp `protobuf:"bytes,5,opt,name=as_of,json=asOf,proto3" json:"as_of,omitempty"` + // Fully qualified table name. + FQTableName string `protobuf:"bytes,6,opt,name=fq_table_name,json=fqTableName,proto3" json:"fq_table_name,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *CreateStatsDetails) Reset() { *m = CreateStatsDetails{} } func (m *CreateStatsDetails) String() string { return proto.CompactTextString(m) } func (*CreateStatsDetails) ProtoMessage() {} func (*CreateStatsDetails) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{15} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{15} } func (m *CreateStatsDetails) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -809,7 +810,7 @@ func (m *CreateStatsDetails_ColList) Reset() { *m = CreateStatsDetails_C func (m *CreateStatsDetails_ColList) String() string { return proto.CompactTextString(m) } func (*CreateStatsDetails_ColList) ProtoMessage() {} func (*CreateStatsDetails_ColList) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{15, 0} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{15, 0} } func (m *CreateStatsDetails_ColList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -843,7 +844,7 @@ func (m *CreateStatsProgress) Reset() { *m = CreateStatsProgress{} } func (m *CreateStatsProgress) String() string { return proto.CompactTextString(m) } func (*CreateStatsProgress) ProtoMessage() {} func (*CreateStatsProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{16} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{16} } func (m *CreateStatsProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -896,7 +897,7 @@ func (m *Payload) Reset() { *m = Payload{} } func (m *Payload) String() string { return proto.CompactTextString(m) } func (*Payload) ProtoMessage() {} func (*Payload) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{17} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{17} } func (m *Payload) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1175,7 +1176,7 @@ func (m *Progress) Reset() { *m = Progress{} } func (m *Progress) String() string { return proto.CompactTextString(m) } func (*Progress) ProtoMessage() {} func (*Progress) Descriptor() ([]byte, []int) { - return fileDescriptor_jobs_a70dba4d30b4a1de, []int{18} + return fileDescriptor_jobs_5b8b65c249b7cb68, []int{18} } func (m *Progress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2368,6 +2369,12 @@ func (m *CreateStatsDetails) MarshalTo(dAtA []byte) (int, error) { } i += n15 } + if len(m.FQTableName) > 0 { + dAtA[i] = 0x32 + i++ + i = encodeVarintJobs(dAtA, i, uint64(len(m.FQTableName))) + i += copy(dAtA[i:], m.FQTableName) + } return i, nil } @@ -3120,6 +3127,10 @@ func (m *CreateStatsDetails) Size() (n int) { l = m.AsOf.Size() n += 1 + l + sovJobs(uint64(l)) } + l = len(m.FQTableName) + if l > 0 { + n += 1 + l + sovJobs(uint64(l)) + } return n } @@ -5871,7 +5882,7 @@ func (m *CreateStatsDetails) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Name = github_com_cockroachdb_cockroach_pkg_sql_sem_tree.Name(dAtA[iNdEx:postIndex]) + m.Name = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 { @@ -5996,6 +6007,35 @@ func (m *CreateStatsDetails) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FQTableName", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowJobs + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthJobs + } + postIndex := iNdEx + intStringLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.FQTableName = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipJobs(dAtA[iNdEx:]) @@ -7101,156 +7141,157 @@ var ( ErrIntOverflowJobs = fmt.Errorf("proto: integer overflow") ) -func init() { proto.RegisterFile("jobs/jobspb/jobs.proto", fileDescriptor_jobs_a70dba4d30b4a1de) } - -var fileDescriptor_jobs_a70dba4d30b4a1de = []byte{ - // 2367 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xcd, 0x8f, 0xe3, 0x48, - 0x15, 0x8f, 0x13, 0x27, 0x71, 0x5e, 0x3e, 0xda, 0x5d, 0xdd, 0xec, 0x7a, 0xa3, 0xdd, 0x4e, 0x08, - 0xec, 0x6e, 0xef, 0x2e, 0x93, 0x40, 0xaf, 0x98, 0x61, 0x46, 0xb0, 0x22, 0x5f, 0x3d, 0x9d, 0x4c, - 0x4f, 0xd2, 0x38, 0xe9, 0x59, 0x58, 0x04, 0xc6, 0x89, 0xab, 0x3b, 0xa6, 0x93, 0xd8, 0xe3, 0x72, - 0x66, 0x98, 0x15, 0x12, 0x08, 0x71, 0x40, 0x73, 0xe2, 0x0f, 0x60, 0x24, 0x24, 0x40, 0xe2, 0x82, - 0xe0, 0xc2, 0x91, 0xfb, 0x5c, 0x10, 0xcb, 0x0d, 0x84, 0x94, 0x85, 0x70, 0xe1, 0x6f, 0x98, 0x13, - 0xaa, 0x2a, 0xdb, 0x71, 0x7a, 0x9a, 0xfe, 0x92, 0xb8, 0x74, 0xc7, 0xaf, 0xde, 0x7b, 0xae, 0xf7, - 0xde, 0xef, 0xfd, 0xea, 0x95, 0xe1, 0x95, 0xef, 0x5b, 0x03, 0x52, 0xa1, 0x7f, 0xec, 0x01, 0xfb, - 0x57, 0xb6, 0x1d, 0xcb, 0xb5, 0xd0, 0x6b, 0x43, 0x6b, 0x78, 0xe2, 0x58, 0xfa, 0x70, 0x54, 0x26, - 0x0f, 0xc7, 0x65, 0xb6, 0xc2, 0xb5, 0xf2, 0x9b, 0xc7, 0xd6, 0xb1, 0xc5, 0xb4, 0x2a, 0xf4, 0x17, - 0x37, 0xc8, 0x23, 0xa6, 0x6c, 0x0f, 0x2a, 0x86, 0xee, 0xea, 0x9e, 0x4c, 0xf1, 0x65, 0xa6, 0x75, - 0xe3, 0xc8, 0x72, 0x26, 0xba, 0xeb, 0xb9, 0xcf, 0xbf, 0x4e, 0x1e, 0x8e, 0x2b, 0xe4, 0xe1, 0x78, - 0xa0, 0x13, 0x5c, 0x21, 0xae, 0x33, 0x1b, 0xba, 0x33, 0x07, 0x1b, 0xbe, 0xdd, 0xcc, 0x35, 0xc7, - 0x95, 0xd1, 0x78, 0x58, 0x71, 0xcd, 0x09, 0x26, 0xae, 0x3e, 0xb1, 0xf9, 0x4a, 0xe9, 0x47, 0x10, - 0xdf, 0xc7, 0x3a, 0xc1, 0xe8, 0x23, 0x48, 0x4e, 0x2d, 0x03, 0x6b, 0xa6, 0xa1, 0x08, 0x45, 0x61, - 0x3b, 0x5b, 0xab, 0x2e, 0xe6, 0x85, 0x44, 0xc7, 0x32, 0x70, 0xab, 0xf1, 0x62, 0x5e, 0x78, 0xff, - 0xd8, 0x74, 0x47, 0xb3, 0x41, 0x79, 0x68, 0x4d, 0x2a, 0x41, 0x24, 0xc6, 0x60, 0xf9, 0xbb, 0x62, - 0x9f, 0x1c, 0x57, 0xbc, 0xed, 0x95, 0xb9, 0x99, 0x9a, 0xa0, 0x1e, 0x5b, 0x06, 0xda, 0x84, 0x38, - 0xb6, 0xad, 0xe1, 0x48, 0x89, 0x16, 0x85, 0xed, 0x98, 0xca, 0x1f, 0xee, 0x88, 0xff, 0xf9, 0x65, - 0x41, 0x28, 0xfd, 0x43, 0x80, 0x6c, 0x4d, 0x1f, 0x9e, 0xcc, 0xec, 0x06, 0x76, 0x75, 0x73, 0x4c, - 0x50, 0x0d, 0x80, 0xb8, 0xba, 0xe3, 0x6a, 0x74, 0xaf, 0x6c, 0x33, 0xe9, 0x9d, 0x37, 0xca, 0xcb, - 0xf4, 0xd1, 0x58, 0xca, 0xa3, 0xf1, 0xb0, 0xdc, 0xf7, 0x63, 0xa9, 0x89, 0xcf, 0xe7, 0x85, 0x88, - 0x9a, 0x62, 0x66, 0x54, 0x8a, 0x3e, 0x00, 0x09, 0x4f, 0x0d, 0xee, 0x21, 0x7a, 0x79, 0x0f, 0x49, - 0x3c, 0x35, 0x98, 0xfd, 0x6b, 0x10, 0x9b, 0x39, 0xa6, 0x12, 0x2b, 0x0a, 0xdb, 0xa9, 0x5a, 0x72, - 0x31, 0x2f, 0xc4, 0x0e, 0xd5, 0x96, 0x4a, 0x65, 0xe8, 0x3d, 0x58, 0x1f, 0xb0, 0xfd, 0x6a, 0x06, - 0x26, 0x43, 0xc7, 0xb4, 0x5d, 0xcb, 0x51, 0xc4, 0xa2, 0xb0, 0x9d, 0x51, 0xe5, 0x81, 0x17, 0x88, - 0x2f, 0x2f, 0xc9, 0x90, 0xe3, 0xc1, 0x1d, 0x38, 0xd6, 0xb1, 0x83, 0x09, 0x29, 0xfd, 0x3d, 0x0e, - 0x39, 0x15, 0x13, 0xd7, 0x72, 0xb0, 0x1f, 0xf0, 0x2f, 0x04, 0xc8, 0xb9, 0xfa, 0x60, 0x8c, 0x35, - 0x07, 0x3f, 0x76, 0x4c, 0x17, 0x13, 0x25, 0x5a, 0x8c, 0x6d, 0xa7, 0x77, 0xbe, 0x5a, 0xfe, 0x9f, - 0xa0, 0x29, 0xaf, 0xfa, 0x28, 0xf7, 0xa9, 0xbd, 0xea, 0x99, 0x37, 0xa7, 0xae, 0xf3, 0xa4, 0x76, - 0xeb, 0x27, 0x9f, 0x5e, 0xb2, 0x6c, 0x21, 0xec, 0x94, 0x5b, 0x0d, 0x35, 0xeb, 0x86, 0x9d, 0xa1, - 0xd7, 0x41, 0x9c, 0x39, 0x26, 0x51, 0x62, 0xc5, 0xd8, 0x76, 0xaa, 0x26, 0x2d, 0xe6, 0x05, 0xf1, - 0x50, 0x6d, 0x11, 0x95, 0x49, 0x57, 0x32, 0x2d, 0x5e, 0x23, 0xd3, 0x77, 0x21, 0xcd, 0x63, 0xa7, - 0xd9, 0x24, 0x4a, 0x9c, 0x05, 0xfe, 0xd6, 0xa9, 0xc0, 0xfd, 0xcd, 0xb1, 0x28, 0x97, 0xe9, 0x55, - 0xc1, 0xf5, 0x05, 0x04, 0x55, 0x20, 0x6d, 0x3d, 0xc2, 0x8e, 0x63, 0x1a, 0x58, 0x33, 0x06, 0x4a, - 0x82, 0x95, 0x2e, 0xb7, 0x98, 0x17, 0xa0, 0xeb, 0x89, 0x1b, 0x35, 0x15, 0x7c, 0x95, 0xc6, 0x20, - 0xff, 0x17, 0x01, 0x32, 0xe1, 0xb4, 0xa1, 0xef, 0x80, 0xc4, 0xb7, 0x12, 0xf4, 0x40, 0x6d, 0x31, - 0x2f, 0x24, 0x99, 0xce, 0x15, 0x9a, 0xe0, 0x54, 0x36, 0x93, 0xcc, 0x67, 0xcb, 0x40, 0xdf, 0x83, - 0x94, 0xad, 0x3b, 0x78, 0xea, 0x52, 0xff, 0x51, 0xe6, 0xbf, 0xbe, 0x98, 0x17, 0xa4, 0x03, 0x26, - 0xbc, 0xfe, 0x0b, 0x24, 0xee, 0xb5, 0x65, 0xe4, 0x7f, 0x00, 0xe8, 0x65, 0x1c, 0x20, 0x19, 0x62, - 0x27, 0xf8, 0x09, 0x8f, 0x48, 0xa5, 0x3f, 0xd1, 0x3e, 0xc4, 0x1f, 0xe9, 0xe3, 0x99, 0xdf, 0x1a, - 0x37, 0xaf, 0x07, 0x33, 0x95, 0x3b, 0xb9, 0x13, 0xfd, 0x8a, 0xd0, 0x16, 0x25, 0x41, 0x8e, 0x96, - 0xbe, 0x08, 0x6b, 0x9e, 0xbe, 0x0f, 0x77, 0xf4, 0x06, 0xc0, 0xc8, 0x3c, 0x1e, 0x69, 0x8f, 0x75, - 0x17, 0x3b, 0x6c, 0x0f, 0x19, 0x35, 0x45, 0x25, 0x1f, 0x52, 0x41, 0xe9, 0xd3, 0x38, 0x64, 0x5b, - 0x13, 0xdb, 0x72, 0x5c, 0xbf, 0x19, 0xf6, 0x21, 0xc1, 0x12, 0x46, 0x14, 0x81, 0x41, 0xa1, 0x7c, - 0xce, 0xe6, 0x56, 0x2c, 0xf9, 0xde, 0x3c, 0x78, 0x79, 0x3e, 0x02, 0xec, 0x46, 0xcf, 0xc4, 0xee, - 0xd7, 0x20, 0xc1, 0x59, 0x94, 0x35, 0x7a, 0x7a, 0xa7, 0x10, 0x7a, 0x97, 0x4f, 0x65, 0xad, 0xee, - 0xae, 0x39, 0xc6, 0xbb, 0x4c, 0xcd, 0x77, 0xce, 0x8d, 0xd0, 0x5b, 0x20, 0x11, 0xe2, 0x6a, 0xc4, - 0xfc, 0x98, 0x43, 0x3f, 0x56, 0x4b, 0x53, 0xbc, 0xf4, 0x7a, 0xfd, 0x9e, 0xf9, 0x31, 0x56, 0x93, - 0x84, 0xb8, 0xf4, 0x07, 0xca, 0x83, 0xf4, 0x58, 0x1f, 0x8f, 0x59, 0x8b, 0xc4, 0x19, 0x03, 0x06, - 0xcf, 0xab, 0xa0, 0x48, 0xfc, 0x1f, 0x40, 0x81, 0x0a, 0x90, 0xf6, 0xf8, 0xca, 0xd6, 0xdd, 0x91, - 0x92, 0xa4, 0x7d, 0xa1, 0x02, 0x17, 0x1d, 0xe8, 0xee, 0x08, 0x29, 0x90, 0x24, 0xfa, 0xc4, 0xa6, - 0x29, 0x97, 0x8a, 0xb1, 0xed, 0x8c, 0xea, 0x3f, 0xa2, 0x2d, 0x60, 0xfd, 0xc2, 0x1f, 0x95, 0x14, - 0xdb, 0x7a, 0x48, 0xc2, 0x12, 0x70, 0x62, 0xda, 0xda, 0xd1, 0x09, 0x51, 0xa0, 0x28, 0x6c, 0x4b, - 0x5e, 0x02, 0x4e, 0x4c, 0x7b, 0xf7, 0x1e, 0x51, 0x93, 0x74, 0x71, 0xf7, 0x84, 0xa0, 0xb7, 0x61, - 0xcd, 0x9c, 0x1e, 0x63, 0xe2, 0x6a, 0x86, 0xe9, 0xe0, 0xa1, 0x3b, 0x7e, 0xa2, 0xa4, 0xa9, 0xba, - 0x9a, 0xe3, 0xe2, 0x86, 0x27, 0xcd, 0x7f, 0x22, 0x40, 0x9c, 0x95, 0x11, 0xdd, 0x01, 0x91, 0x12, - 0x82, 0x47, 0xff, 0x97, 0xe5, 0x03, 0x66, 0x83, 0x10, 0x88, 0x53, 0x7d, 0x82, 0x15, 0xc4, 0x42, - 0x65, 0xbf, 0xd1, 0xab, 0x90, 0x24, 0xf8, 0xa1, 0xf6, 0x48, 0x1f, 0x2b, 0x1b, 0x2c, 0x8e, 0x04, - 0xc1, 0x0f, 0x1f, 0xe8, 0xe3, 0xb6, 0x28, 0x45, 0xe5, 0x58, 0x5b, 0x94, 0x62, 0xb2, 0xd8, 0x16, - 0x25, 0x51, 0x8e, 0xb7, 0x45, 0x29, 0x2e, 0x27, 0xda, 0xa2, 0x94, 0x90, 0x93, 0x6d, 0x51, 0x4a, - 0xca, 0x52, 0x5b, 0x94, 0x24, 0x39, 0xd5, 0x16, 0xa5, 0x94, 0x0c, 0x6d, 0x51, 0x02, 0x39, 0xdd, - 0x16, 0xa5, 0xb4, 0x9c, 0x69, 0x8b, 0x52, 0x46, 0xce, 0xb6, 0x45, 0x29, 0x2b, 0xe7, 0xda, 0xa2, - 0x94, 0x93, 0xd7, 0xda, 0xa2, 0xb4, 0x26, 0xcb, 0x6d, 0x51, 0x92, 0xe5, 0xf5, 0xb6, 0x28, 0xad, - 0xcb, 0xa8, 0xf4, 0x67, 0x01, 0x72, 0x1c, 0xa7, 0x41, 0x4f, 0xbc, 0x07, 0xeb, 0x2c, 0x81, 0xe6, - 0xf4, 0x58, 0xb3, 0x3d, 0x21, 0x43, 0x7b, 0x54, 0x95, 0xfd, 0x85, 0x40, 0xf9, 0x73, 0x90, 0x75, - 0xb0, 0x6e, 0x2c, 0x15, 0xa3, 0x4c, 0x31, 0x43, 0x85, 0x81, 0xd2, 0x9b, 0x90, 0x63, 0x2d, 0xb9, - 0xd4, 0x8a, 0x31, 0xad, 0x2c, 0x93, 0x06, 0x6a, 0x35, 0xc8, 0x12, 0x5b, 0x9f, 0x2e, 0xb5, 0x44, - 0xd6, 0x62, 0xaf, 0x9e, 0x01, 0xfb, 0x9e, 0xad, 0x4f, 0x3d, 0xb8, 0x67, 0xa8, 0x4d, 0x70, 0x7e, - 0xa9, 0xec, 0xf8, 0x9a, 0x4d, 0x30, 0xd5, 0xd8, 0x37, 0x89, 0x8b, 0xbe, 0x0e, 0x19, 0x87, 0x49, - 0x34, 0xaa, 0xe8, 0xf7, 0xed, 0x05, 0x4e, 0xd3, 0x4e, 0xe0, 0x84, 0x94, 0x7e, 0x27, 0xc0, 0x46, - 0xc3, 0xb1, 0x6c, 0x1b, 0x1b, 0x5e, 0x45, 0x39, 0x17, 0xf8, 0x85, 0x14, 0x42, 0x85, 0xbc, 0x0b, - 0xd1, 0x56, 0xc3, 0xa3, 0xcf, 0x5b, 0xd7, 0xed, 0x8e, 0x68, 0xab, 0x81, 0x6e, 0x43, 0x82, 0xb8, - 0xba, 0x3b, 0x23, 0xac, 0xf9, 0x73, 0x3b, 0x9f, 0x3d, 0x87, 0x68, 0x7a, 0x4c, 0x51, 0xf5, 0x0c, - 0x4a, 0x7f, 0x8d, 0xc2, 0x46, 0x6f, 0x38, 0xc2, 0x13, 0xbd, 0x3e, 0xd2, 0xa7, 0xc7, 0xc1, 0x7e, - 0xbf, 0x05, 0x72, 0x28, 0x13, 0xda, 0xd8, 0x24, 0xae, 0x77, 0x92, 0xbf, 0x73, 0x3e, 0xc5, 0x86, - 0xd2, 0xe9, 0xe5, 0x27, 0xe7, 0xac, 0x26, 0xf9, 0xdb, 0x90, 0x33, 0x78, 0x86, 0x34, 0x8f, 0x1e, - 0x63, 0x17, 0xd2, 0xe3, 0x19, 0x29, 0xf5, 0xbc, 0x67, 0x8d, 0xd0, 0x12, 0x41, 0x3f, 0x84, 0x0d, - 0xdf, 0x39, 0x1d, 0x36, 0x69, 0x96, 0x28, 0x1d, 0x89, 0x2c, 0xc9, 0xfb, 0x8b, 0x79, 0x61, 0xdd, - 0x73, 0xd5, 0xf0, 0x56, 0xaf, 0xcf, 0x4b, 0xeb, 0xc6, 0x29, 0x4f, 0x86, 0x77, 0x76, 0xbc, 0x02, - 0x9b, 0xe1, 0x94, 0x06, 0x78, 0xab, 0x81, 0xcc, 0x25, 0x47, 0x98, 0xee, 0xd7, 0x39, 0xc6, 0x2e, - 0x2a, 0xc3, 0x06, 0xad, 0x04, 0x9e, 0x50, 0xde, 0xa4, 0x34, 0xaa, 0x85, 0x60, 0xb2, 0x1e, 0x2c, - 0xd1, 0xf9, 0xa2, 0xa3, 0x4f, 0x70, 0xe9, 0xf7, 0x22, 0xac, 0x2f, 0x9d, 0xf8, 0xd5, 0xa2, 0xec, - 0x65, 0x4e, 0x4f, 0xb4, 0xe5, 0xa0, 0xc7, 0xd9, 0xcb, 0x9c, 0x9e, 0xd0, 0x61, 0x2f, 0x49, 0x17, - 0x0f, 0x1d, 0x13, 0xb5, 0x41, 0xb4, 0x6c, 0xd7, 0x6f, 0x96, 0xf3, 0x0e, 0xcb, 0x97, 0xde, 0x51, - 0xee, 0xda, 0x2e, 0x3f, 0x85, 0x55, 0xe6, 0x03, 0xfd, 0x46, 0x80, 0xa4, 0xcb, 0x82, 0x20, 0x4a, - 0x82, 0xf9, 0xbb, 0x7d, 0x25, 0x7f, 0x3c, 0x01, 0xde, 0x80, 0x77, 0x40, 0x6b, 0xf9, 0x62, 0x5e, - 0x58, 0x3f, 0x9d, 0x20, 0x72, 0xdd, 0xc9, 0xcf, 0xdf, 0x1b, 0x6a, 0x43, 0x6e, 0x35, 0xc3, 0xec, - 0xdc, 0xb8, 0xe4, 0x6c, 0x97, 0x5d, 0xa9, 0x40, 0xfe, 0x98, 0x8e, 0x59, 0xcb, 0x6d, 0x9f, 0x31, - 0x8f, 0x54, 0x57, 0xe7, 0x91, 0xf7, 0x2e, 0x95, 0x12, 0xee, 0x33, 0x34, 0x84, 0xe4, 0x6f, 0x41, - 0x2a, 0xc8, 0x77, 0xf8, 0x2d, 0x29, 0xfe, 0x96, 0xcd, 0xf0, 0x5b, 0x52, 0x2f, 0x4d, 0x2f, 0xc1, - 0x49, 0x10, 0x97, 0x13, 0xa5, 0x9f, 0x0a, 0x90, 0x51, 0x31, 0xb1, 0xc6, 0x8f, 0xb0, 0x41, 0x7b, - 0x10, 0x7d, 0x09, 0x44, 0xda, 0xd3, 0xde, 0x79, 0x74, 0x01, 0xb9, 0x31, 0x55, 0x54, 0x85, 0x54, - 0x70, 0xdb, 0xba, 0xca, 0x25, 0x64, 0x69, 0x55, 0xb2, 0x01, 0x2d, 0x03, 0x0e, 0x68, 0xbc, 0x0f, - 0x94, 0x1d, 0xd8, 0xde, 0x3c, 0xca, 0xe5, 0x24, 0xf3, 0xf6, 0xf9, 0x24, 0x13, 0x04, 0xe3, 0x97, - 0xc9, 0x09, 0xc9, 0x88, 0xd7, 0x86, 0x7f, 0x8a, 0x01, 0xaa, 0x3b, 0x58, 0x77, 0x31, 0xe5, 0x3c, - 0xe2, 0xf7, 0x4a, 0x27, 0xcc, 0xc4, 0xb5, 0x3b, 0x2f, 0xe6, 0x85, 0x9b, 0x97, 0xc7, 0x17, 0x9e, - 0x54, 0x5c, 0x07, 0xe3, 0x32, 0xed, 0x45, 0x8f, 0xc5, 0x6b, 0x10, 0x67, 0x34, 0xe6, 0xe5, 0xe5, - 0x92, 0xe7, 0xbb, 0xb7, 0x71, 0x6e, 0x8a, 0xbe, 0x0b, 0x99, 0xa1, 0x35, 0x9e, 0x4d, 0x38, 0xd1, - 0xfa, 0x84, 0xf8, 0xe5, 0xf3, 0xc0, 0xf3, 0x52, 0x60, 0xe5, 0xba, 0x35, 0x0e, 0xb1, 0x6e, 0x9a, - 0x3b, 0xa4, 0x12, 0x3a, 0x3b, 0xa6, 0x02, 0x20, 0x33, 0x2e, 0x4c, 0xa9, 0x4b, 0x01, 0xda, 0x81, - 0xb8, 0x4e, 0x34, 0xeb, 0x88, 0x4d, 0x74, 0x17, 0x55, 0x56, 0x15, 0x75, 0xd2, 0x3d, 0xca, 0xeb, - 0x90, 0xf4, 0xde, 0x87, 0x1e, 0x40, 0xcc, 0x34, 0xf8, 0x59, 0x99, 0xad, 0x35, 0xe8, 0x05, 0xb3, - 0xd5, 0x20, 0x2f, 0xe6, 0x85, 0xdb, 0x57, 0x6e, 0xdb, 0x3a, 0xdb, 0x72, 0xab, 0xa1, 0x52, 0x87, - 0xa5, 0xcf, 0xc0, 0x46, 0x28, 0xca, 0x80, 0x45, 0xff, 0x98, 0x80, 0xe4, 0x81, 0xfe, 0x64, 0x6c, - 0xe9, 0x06, 0x2a, 0x42, 0xda, 0xbf, 0xb9, 0x9a, 0xd6, 0xd4, 0xeb, 0x90, 0xb0, 0x88, 0x0e, 0xac, - 0x33, 0x82, 0x1d, 0x56, 0x71, 0xde, 0x2c, 0xc1, 0x33, 0x1d, 0x35, 0xd8, 0x35, 0x1b, 0x1b, 0xda, - 0xc4, 0x1c, 0x3a, 0x16, 0x3f, 0x3e, 0x63, 0xac, 0xe9, 0xa9, 0xf4, 0x3e, 0x13, 0xd2, 0x91, 0xef, - 0xc8, 0x9c, 0x9a, 0x64, 0xb4, 0xd4, 0x63, 0x23, 0xb2, 0x9a, 0xf3, 0xc5, 0x9e, 0xa2, 0x05, 0xb9, - 0xe5, 0x3d, 0x5a, 0xa3, 0x39, 0x49, 0xb0, 0x9c, 0xec, 0x2d, 0xe6, 0x85, 0xec, 0xb2, 0xf4, 0x3c, - 0x3b, 0xd7, 0xbb, 0xce, 0x2e, 0xfd, 0xb7, 0x0c, 0xc2, 0x3e, 0x46, 0x38, 0x8e, 0xe5, 0x28, 0x12, - 0xa7, 0x01, 0xf6, 0x80, 0x6e, 0x42, 0x7c, 0x8c, 0x75, 0xc2, 0xa7, 0xdc, 0xf4, 0x4e, 0xf1, 0x1c, - 0x14, 0xb1, 0xef, 0x25, 0x2a, 0x57, 0x47, 0x35, 0x48, 0xf0, 0x51, 0x9a, 0x0d, 0xc0, 0xe9, 0x9d, - 0xed, 0x73, 0x0c, 0x57, 0x3e, 0x73, 0xec, 0x45, 0x54, 0xcf, 0x12, 0x35, 0x21, 0xe9, 0xf0, 0x6b, - 0x13, 0x1b, 0x8b, 0x2f, 0x9c, 0x16, 0x42, 0x17, 0xb2, 0xbd, 0x88, 0xea, 0xdb, 0xa2, 0x3e, 0x64, - 0x48, 0xe8, 0x04, 0x55, 0x32, 0xcc, 0xd7, 0x79, 0x03, 0xc2, 0x19, 0x33, 0xcc, 0x1e, 0x9d, 0xf7, - 0x42, 0x62, 0x1a, 0xa0, 0xc9, 0xc6, 0x57, 0x25, 0x7b, 0x61, 0x80, 0x2b, 0xf7, 0x31, 0x1a, 0x20, - 0xb7, 0x44, 0x1d, 0x80, 0x61, 0x40, 0x63, 0x4a, 0x8e, 0xf9, 0xf9, 0xc2, 0x55, 0xce, 0xbd, 0xbd, - 0x88, 0x1a, 0xf2, 0x80, 0xbe, 0x01, 0xe9, 0xe1, 0x12, 0xe4, 0xca, 0x1a, 0x73, 0x78, 0xe3, 0x4a, - 0x8d, 0xbf, 0x47, 0x9b, 0x7d, 0x29, 0xad, 0xa5, 0x20, 0x69, 0xf0, 0x95, 0x60, 0xfe, 0x4f, 0xca, - 0x52, 0xe9, 0x0f, 0x71, 0x90, 0x02, 0xde, 0xad, 0x00, 0x3a, 0x72, 0xf4, 0x21, 0x6d, 0x11, 0x6d, - 0x68, 0xd1, 0x1b, 0x90, 0x8b, 0xf9, 0x97, 0x82, 0xe8, 0x5e, 0x44, 0x5d, 0xf7, 0xd7, 0xea, 0xfe, - 0x12, 0x6d, 0x82, 0x89, 0x65, 0x98, 0x47, 0xe6, 0xb2, 0x09, 0xf8, 0x17, 0xb0, 0x9c, 0x2f, 0xf6, - 0x9a, 0xe0, 0x83, 0x95, 0x5b, 0x72, 0xec, 0x12, 0x8c, 0xb2, 0x17, 0x09, 0x5d, 0xa3, 0x69, 0x53, - 0x3a, 0xb3, 0xe9, 0x94, 0x5e, 0x28, 0xbc, 0x99, 0x96, 0xf3, 0x55, 0xd6, 0x93, 0xf2, 0xf9, 0x15, - 0xd5, 0x4f, 0x81, 0xf5, 0x9d, 0x0b, 0xc1, 0xea, 0xc7, 0xbe, 0x27, 0x04, 0x68, 0xdd, 0x3d, 0x8d, - 0xd6, 0x77, 0x2f, 0x46, 0x6b, 0xc8, 0x4d, 0x00, 0xd7, 0xc3, 0x33, 0xe1, 0x5a, 0xb9, 0x24, 0x5c, - 0x43, 0x1e, 0x57, 0xf1, 0x5a, 0x3f, 0x85, 0xd7, 0x77, 0x2e, 0xc4, 0x6b, 0x38, 0x46, 0x0f, 0xb0, - 0xdd, 0x33, 0x00, 0x7b, 0xe3, 0x52, 0x80, 0x0d, 0x39, 0x0b, 0x23, 0x56, 0x3d, 0x0b, 0xb1, 0xe5, - 0xcb, 0x21, 0x36, 0xe4, 0x72, 0x05, 0xb2, 0x00, 0x92, 0x7f, 0x91, 0x0b, 0xc1, 0xf7, 0xdd, 0x6f, - 0x42, 0xc2, 0x2b, 0x37, 0x82, 0x5c, 0x43, 0xad, 0xb6, 0x3a, 0xad, 0xce, 0x5d, 0xad, 0x53, 0xbd, - 0xdf, 0xec, 0xc9, 0x11, 0xa4, 0xc0, 0xe6, 0x87, 0xd5, 0x56, 0x5f, 0xdb, 0xed, 0xaa, 0xda, 0xdd, - 0xba, 0xd6, 0xea, 0xf4, 0x9b, 0xea, 0x83, 0xea, 0xbe, 0x2c, 0xa0, 0x57, 0x00, 0xa9, 0xdd, 0xfa, - 0xbd, 0x5e, 0xa3, 0xa6, 0xd5, 0xbb, 0xf7, 0x0f, 0xaa, 0xf5, 0x7e, 0xab, 0xdb, 0x91, 0xa3, 0x48, - 0x02, 0xb1, 0xd1, 0xed, 0x34, 0x65, 0x78, 0xf7, 0xc7, 0x51, 0x10, 0xfb, 0x4f, 0x6c, 0x8c, 0x3e, - 0x0f, 0xe9, 0xc3, 0x4e, 0xef, 0xa0, 0x59, 0x6f, 0xed, 0xb6, 0x9a, 0x0d, 0x39, 0x92, 0xdf, 0x78, - 0xfa, 0xac, 0xb8, 0x46, 0x97, 0x0e, 0xa7, 0xc4, 0xc6, 0x43, 0x06, 0x6d, 0x94, 0x87, 0x44, 0xad, - 0x5a, 0xbf, 0x77, 0x78, 0x20, 0x0b, 0xf9, 0xdc, 0xd3, 0x67, 0x45, 0xa0, 0x0a, 0x1c, 0x56, 0xe8, - 0x75, 0x48, 0xaa, 0xcd, 0x5e, 0xbf, 0xab, 0x36, 0xe5, 0x68, 0x7e, 0xed, 0xe9, 0xb3, 0x62, 0x9a, - 0x2e, 0x7a, 0x68, 0x41, 0x6f, 0x43, 0xb6, 0x57, 0xdf, 0x6b, 0xde, 0xaf, 0x6a, 0xf5, 0xbd, 0x6a, - 0xe7, 0x6e, 0x53, 0x8e, 0xe5, 0x37, 0x9f, 0x3e, 0x2b, 0xca, 0x54, 0x27, 0x0c, 0x02, 0xfa, 0x8a, - 0xd6, 0xfd, 0x83, 0xae, 0xda, 0x97, 0xc5, 0xe5, 0x2b, 0x78, 0x55, 0x51, 0x09, 0x80, 0x5b, 0xef, - 0x36, 0x9b, 0x0d, 0x39, 0x9e, 0x47, 0x4f, 0x9f, 0x15, 0x73, 0x74, 0x7d, 0x59, 0x2c, 0xf4, 0x26, - 0x64, 0xea, 0x6a, 0xb3, 0xda, 0x6f, 0x6a, 0xbd, 0x7e, 0xb5, 0xdf, 0x93, 0x13, 0xcb, 0x48, 0x42, - 0x05, 0xc8, 0x4b, 0x3f, 0xfb, 0xd5, 0x56, 0xe4, 0xb7, 0xbf, 0xde, 0x8a, 0xd4, 0x8a, 0xcf, 0xff, - 0xb5, 0x15, 0x79, 0xbe, 0xd8, 0x12, 0x3e, 0x59, 0x6c, 0x09, 0x7f, 0x5b, 0x6c, 0x09, 0xff, 0x5c, - 0x6c, 0x09, 0x3f, 0xff, 0xf7, 0x56, 0xe4, 0xa3, 0x04, 0x2f, 0xdc, 0x20, 0xc1, 0xbe, 0xab, 0xbf, - 0xff, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x58, 0x25, 0x9e, 0x08, 0x18, 0x00, 0x00, +func init() { proto.RegisterFile("jobs/jobspb/jobs.proto", fileDescriptor_jobs_5b8b65c249b7cb68) } + +var fileDescriptor_jobs_5b8b65c249b7cb68 = []byte{ + // 2374 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xdf, 0x6f, 0xe3, 0x58, + 0xf5, 0x8f, 0x13, 0x27, 0x71, 0x4e, 0x7e, 0xd4, 0xbd, 0xed, 0x77, 0xd7, 0x1b, 0xed, 0x36, 0xf9, + 0x06, 0x76, 0xb7, 0x3b, 0xc3, 0x24, 0xd0, 0x11, 0x3b, 0xcc, 0x08, 0x56, 0xe4, 0x57, 0xa7, 0xc9, + 0x74, 0x9a, 0xae, 0x93, 0xce, 0xc2, 0x22, 0x30, 0x4e, 0x7c, 0xdb, 0x98, 0x26, 0xb1, 0xeb, 0xeb, + 0xcc, 0x30, 0x2b, 0x24, 0x10, 0xe2, 0x01, 0xcd, 0x13, 0x7f, 0x00, 0x23, 0x21, 0x01, 0x12, 0x2f, + 0x08, 0x5e, 0xe0, 0x6f, 0x98, 0x17, 0xc4, 0xf2, 0x06, 0x42, 0xca, 0x42, 0x78, 0xe1, 0x6f, 0x98, + 0x27, 0x74, 0xef, 0xb5, 0x1d, 0xa7, 0x53, 0xfa, 0x4b, 0xe2, 0xa5, 0x8d, 0xcf, 0x3d, 0xe7, 0xf8, + 0x9e, 0x73, 0x3e, 0xe7, 0x73, 0xcf, 0x35, 0xbc, 0xf6, 0x3d, 0xab, 0x4f, 0x2a, 0xf4, 0x8f, 0xdd, + 0x67, 0xff, 0xca, 0xb6, 0x63, 0xb9, 0x16, 0x7a, 0x63, 0x60, 0x0d, 0x8e, 0x1d, 0x4b, 0x1f, 0x0c, + 0xcb, 0xe4, 0x64, 0x54, 0x66, 0x2b, 0x5c, 0x2b, 0xbf, 0x7e, 0x64, 0x1d, 0x59, 0x4c, 0xab, 0x42, + 0x7f, 0x71, 0x83, 0x3c, 0x62, 0xca, 0x76, 0xbf, 0x62, 0xe8, 0xae, 0xee, 0xc9, 0x14, 0x5f, 0x66, + 0x5a, 0xb7, 0x0e, 0x2d, 0x67, 0xac, 0xbb, 0x9e, 0xfb, 0xfc, 0x9b, 0xe4, 0x64, 0x54, 0x21, 0x27, + 0xa3, 0xbe, 0x4e, 0x70, 0x85, 0xb8, 0xce, 0x74, 0xe0, 0x4e, 0x1d, 0x6c, 0xf8, 0x76, 0x53, 0xd7, + 0x1c, 0x55, 0x86, 0xa3, 0x41, 0xc5, 0x35, 0xc7, 0x98, 0xb8, 0xfa, 0xd8, 0xe6, 0x2b, 0xa5, 0x1f, + 0x42, 0x7c, 0x17, 0xeb, 0x04, 0xa3, 0x8f, 0x21, 0x39, 0xb1, 0x0c, 0xac, 0x99, 0x86, 0x22, 0x14, + 0x85, 0xcd, 0x6c, 0xad, 0x3a, 0x9f, 0x15, 0x12, 0x7b, 0x96, 0x81, 0x5b, 0x8d, 0x97, 0xb3, 0xc2, + 0xed, 0x23, 0xd3, 0x1d, 0x4e, 0xfb, 0xe5, 0x81, 0x35, 0xae, 0x04, 0x91, 0x18, 0xfd, 0xc5, 0xef, + 0x8a, 0x7d, 0x7c, 0x54, 0xf1, 0xb6, 0x57, 0xe6, 0x66, 0x6a, 0x82, 0x7a, 0x6c, 0x19, 0x68, 0x1d, + 0xe2, 0xd8, 0xb6, 0x06, 0x43, 0x25, 0x5a, 0x14, 0x36, 0x63, 0x2a, 0x7f, 0xb8, 0x27, 0xfe, 0xfb, + 0x17, 0x05, 0xa1, 0xf4, 0x77, 0x01, 0xb2, 0x35, 0x7d, 0x70, 0x3c, 0xb5, 0x1b, 0xd8, 0xd5, 0xcd, + 0x11, 0x41, 0x35, 0x00, 0xe2, 0xea, 0x8e, 0xab, 0xd1, 0xbd, 0xb2, 0xcd, 0xa4, 0xb7, 0xde, 0x2a, + 0x2f, 0xd2, 0x47, 0x63, 0x29, 0x0f, 0x47, 0x83, 0x72, 0xcf, 0x8f, 0xa5, 0x26, 0xbe, 0x98, 0x15, + 0x22, 0x6a, 0x8a, 0x99, 0x51, 0x29, 0xfa, 0x00, 0x24, 0x3c, 0x31, 0xb8, 0x87, 0xe8, 0xe5, 0x3d, + 0x24, 0xf1, 0xc4, 0x60, 0xf6, 0x6f, 0x40, 0x6c, 0xea, 0x98, 0x4a, 0xac, 0x28, 0x6c, 0xa6, 0x6a, + 0xc9, 0xf9, 0xac, 0x10, 0x3b, 0x50, 0x5b, 0x2a, 0x95, 0xa1, 0x9b, 0xb0, 0xda, 0x67, 0xfb, 0xd5, + 0x0c, 0x4c, 0x06, 0x8e, 0x69, 0xbb, 0x96, 0xa3, 0x88, 0x45, 0x61, 0x33, 0xa3, 0xca, 0x7d, 0x2f, + 0x10, 0x5f, 0x5e, 0x92, 0x21, 0xc7, 0x83, 0xdb, 0x77, 0xac, 0x23, 0x07, 0x13, 0x52, 0xfa, 0x5b, + 0x1c, 0x72, 0x2a, 0x26, 0xae, 0xe5, 0x60, 0x3f, 0xe0, 0x9f, 0x0b, 0x90, 0x73, 0xf5, 0xfe, 0x08, + 0x6b, 0x0e, 0x7e, 0xe2, 0x98, 0x2e, 0x26, 0x4a, 0xb4, 0x18, 0xdb, 0x4c, 0x6f, 0x7d, 0xb5, 0xfc, + 0x5f, 0x41, 0x53, 0x5e, 0xf6, 0x51, 0xee, 0x51, 0x7b, 0xd5, 0x33, 0x6f, 0x4e, 0x5c, 0xe7, 0x69, + 0xed, 0xce, 0x8f, 0x3f, 0xbb, 0x64, 0xd9, 0x42, 0xd8, 0x29, 0xb7, 0x1a, 0x6a, 0xd6, 0x0d, 0x3b, + 0x43, 0x6f, 0x82, 0x38, 0x75, 0x4c, 0xa2, 0xc4, 0x8a, 0xb1, 0xcd, 0x54, 0x4d, 0x9a, 0xcf, 0x0a, + 0xe2, 0x81, 0xda, 0x22, 0x2a, 0x93, 0x2e, 0x65, 0x5a, 0xbc, 0x46, 0xa6, 0xef, 0x43, 0x9a, 0xc7, + 0x4e, 0xb3, 0x49, 0x94, 0x38, 0x0b, 0xfc, 0x9d, 0x53, 0x81, 0xfb, 0x9b, 0x63, 0x51, 0x2e, 0xd2, + 0xab, 0x82, 0xeb, 0x0b, 0x08, 0xaa, 0x40, 0xda, 0x7a, 0x8c, 0x1d, 0xc7, 0x34, 0xb0, 0x66, 0xf4, + 0x95, 0x04, 0x2b, 0x5d, 0x6e, 0x3e, 0x2b, 0x40, 0xc7, 0x13, 0x37, 0x6a, 0x2a, 0xf8, 0x2a, 0x8d, + 0x7e, 0xfe, 0xcf, 0x02, 0x64, 0xc2, 0x69, 0x43, 0xdf, 0x06, 0x89, 0x6f, 0x25, 0xe8, 0x81, 0xda, + 0x7c, 0x56, 0x48, 0x32, 0x9d, 0x2b, 0x34, 0xc1, 0xa9, 0x6c, 0x26, 0x99, 0xcf, 0x96, 0x81, 0xbe, + 0x0b, 0x29, 0x5b, 0x77, 0xf0, 0xc4, 0xa5, 0xfe, 0xa3, 0xcc, 0x7f, 0x7d, 0x3e, 0x2b, 0x48, 0xfb, + 0x4c, 0x78, 0xfd, 0x17, 0x48, 0xdc, 0x6b, 0xcb, 0xc8, 0x7f, 0x1f, 0xd0, 0xab, 0x38, 0x40, 0x32, + 0xc4, 0x8e, 0xf1, 0x53, 0x1e, 0x91, 0x4a, 0x7f, 0xa2, 0x5d, 0x88, 0x3f, 0xd6, 0x47, 0x53, 0xbf, + 0x35, 0xde, 0xbf, 0x1e, 0xcc, 0x54, 0xee, 0xe4, 0x5e, 0xf4, 0x2b, 0x42, 0x5b, 0x94, 0x04, 0x39, + 0x5a, 0xfa, 0x22, 0xac, 0x78, 0xfa, 0x3e, 0xdc, 0xd1, 0x5b, 0x00, 0x43, 0xf3, 0x68, 0xa8, 0x3d, + 0xd1, 0x5d, 0xec, 0xb0, 0x3d, 0x64, 0xd4, 0x14, 0x95, 0x7c, 0x44, 0x05, 0xa5, 0xcf, 0xe2, 0x90, + 0x6d, 0x8d, 0x6d, 0xcb, 0x71, 0xfd, 0x66, 0xd8, 0x85, 0x04, 0x4b, 0x18, 0x51, 0x04, 0x06, 0x85, + 0xf2, 0x39, 0x9b, 0x5b, 0xb2, 0xe4, 0x7b, 0xf3, 0xe0, 0xe5, 0xf9, 0x08, 0xb0, 0x1b, 0x3d, 0x13, + 0xbb, 0x5f, 0x83, 0x04, 0x67, 0x51, 0xd6, 0xe8, 0xe9, 0xad, 0x42, 0xe8, 0x5d, 0x3e, 0x95, 0xb5, + 0x3a, 0xdb, 0xe6, 0x08, 0x6f, 0x33, 0x35, 0xdf, 0x39, 0x37, 0x42, 0xef, 0x80, 0x44, 0x88, 0xab, + 0x11, 0xf3, 0x13, 0x0e, 0xfd, 0x58, 0x2d, 0x4d, 0xf1, 0xd2, 0xed, 0xf6, 0xba, 0xe6, 0x27, 0x58, + 0x4d, 0x12, 0xe2, 0xd2, 0x1f, 0x28, 0x0f, 0xd2, 0x13, 0x7d, 0x34, 0x62, 0x2d, 0x12, 0x67, 0x0c, + 0x18, 0x3c, 0x2f, 0x83, 0x22, 0xf1, 0x3f, 0x00, 0x05, 0x2a, 0x40, 0xda, 0xe3, 0x2b, 0x5b, 0x77, + 0x87, 0x4a, 0x92, 0xf6, 0x85, 0x0a, 0x5c, 0xb4, 0xaf, 0xbb, 0x43, 0xa4, 0x40, 0x92, 0xe8, 0x63, + 0x9b, 0xa6, 0x5c, 0x2a, 0xc6, 0x36, 0x33, 0xaa, 0xff, 0x88, 0x36, 0x80, 0xf5, 0x0b, 0x7f, 0x54, + 0x52, 0x6c, 0xeb, 0x21, 0x09, 0x4b, 0xc0, 0xb1, 0x69, 0x6b, 0x87, 0xc7, 0x44, 0x81, 0xa2, 0xb0, + 0x29, 0x79, 0x09, 0x38, 0x36, 0xed, 0xed, 0x07, 0x44, 0x4d, 0xd2, 0xc5, 0xed, 0x63, 0x82, 0xde, + 0x85, 0x15, 0x73, 0x72, 0x84, 0x89, 0xab, 0x19, 0xa6, 0x83, 0x07, 0xee, 0xe8, 0xa9, 0x92, 0xa6, + 0xea, 0x6a, 0x8e, 0x8b, 0x1b, 0x9e, 0x34, 0xff, 0xa9, 0x00, 0x71, 0x56, 0x46, 0x74, 0x0f, 0x44, + 0x4a, 0x08, 0x1e, 0xfd, 0x5f, 0x96, 0x0f, 0x98, 0x0d, 0x42, 0x20, 0x4e, 0xf4, 0x31, 0x56, 0x10, + 0x0b, 0x95, 0xfd, 0x46, 0xaf, 0x43, 0x92, 0xe0, 0x13, 0xed, 0xb1, 0x3e, 0x52, 0xd6, 0x58, 0x1c, + 0x09, 0x82, 0x4f, 0x1e, 0xe9, 0xa3, 0xb6, 0x28, 0x45, 0xe5, 0x58, 0x5b, 0x94, 0x62, 0xb2, 0xd8, + 0x16, 0x25, 0x51, 0x8e, 0xb7, 0x45, 0x29, 0x2e, 0x27, 0xda, 0xa2, 0x94, 0x90, 0x93, 0x6d, 0x51, + 0x4a, 0xca, 0x52, 0x5b, 0x94, 0x24, 0x39, 0xd5, 0x16, 0xa5, 0x94, 0x0c, 0x6d, 0x51, 0x02, 0x39, + 0xdd, 0x16, 0xa5, 0xb4, 0x9c, 0x69, 0x8b, 0x52, 0x46, 0xce, 0xb6, 0x45, 0x29, 0x2b, 0xe7, 0xda, + 0xa2, 0x94, 0x93, 0x57, 0xda, 0xa2, 0xb4, 0x22, 0xcb, 0x6d, 0x51, 0x92, 0xe5, 0xd5, 0xb6, 0x28, + 0xad, 0xca, 0xa8, 0xf4, 0x27, 0x01, 0x72, 0x1c, 0xa7, 0x41, 0x4f, 0xdc, 0x84, 0x55, 0x96, 0x40, + 0x73, 0x72, 0xa4, 0xd9, 0x9e, 0x90, 0xa1, 0x3d, 0xaa, 0xca, 0xfe, 0x42, 0xa0, 0xfc, 0x39, 0xc8, + 0x3a, 0x58, 0x37, 0x16, 0x8a, 0x51, 0xa6, 0x98, 0xa1, 0xc2, 0x40, 0xe9, 0x6d, 0xc8, 0xb1, 0x96, + 0x5c, 0x68, 0xc5, 0x98, 0x56, 0x96, 0x49, 0x03, 0xb5, 0x1a, 0x64, 0x89, 0xad, 0x4f, 0x16, 0x5a, + 0x22, 0x6b, 0xb1, 0xd7, 0xcf, 0x80, 0x7d, 0xd7, 0xd6, 0x27, 0x1e, 0xdc, 0x33, 0xd4, 0x26, 0x38, + 0xbf, 0x54, 0x76, 0x7c, 0x4d, 0xc7, 0x98, 0x6a, 0xec, 0x9a, 0xc4, 0x45, 0x5f, 0x87, 0x8c, 0xc3, + 0x24, 0x1a, 0x55, 0xf4, 0xfb, 0xf6, 0x02, 0xa7, 0x69, 0x27, 0x70, 0x42, 0x4a, 0xbf, 0x15, 0x60, + 0xad, 0xe1, 0x58, 0xb6, 0x8d, 0x0d, 0xaf, 0xa2, 0x9c, 0x0b, 0xfc, 0x42, 0x0a, 0xa1, 0x42, 0xde, + 0x87, 0x68, 0xab, 0xe1, 0xd1, 0xe7, 0x9d, 0xeb, 0x76, 0x47, 0xb4, 0xd5, 0x40, 0x77, 0x21, 0x41, + 0x5c, 0xdd, 0x9d, 0x12, 0xd6, 0xfc, 0xb9, 0xad, 0xff, 0x3f, 0x87, 0x68, 0xba, 0x4c, 0x51, 0xf5, + 0x0c, 0x4a, 0x7f, 0x89, 0xc2, 0x5a, 0x77, 0x30, 0xc4, 0x63, 0xbd, 0x3e, 0xd4, 0x27, 0x47, 0xc1, + 0x7e, 0xbf, 0x09, 0x72, 0x28, 0x13, 0xda, 0xc8, 0x24, 0xae, 0x77, 0x92, 0xbf, 0x77, 0x3e, 0xc5, + 0x86, 0xd2, 0xe9, 0xe5, 0x27, 0xe7, 0x2c, 0x27, 0xf9, 0x5b, 0x90, 0x33, 0x78, 0x86, 0x34, 0x8f, + 0x1e, 0x63, 0x17, 0xd2, 0xe3, 0x19, 0x29, 0xf5, 0xbc, 0x67, 0x8d, 0xd0, 0x12, 0x41, 0x3f, 0x80, + 0x35, 0xdf, 0x39, 0x1d, 0x36, 0x69, 0x96, 0x28, 0x1d, 0x89, 0x2c, 0xc9, 0xbb, 0xf3, 0x59, 0x61, + 0xd5, 0x73, 0xd5, 0xf0, 0x56, 0xaf, 0xcf, 0x4b, 0xab, 0xc6, 0x29, 0x4f, 0x86, 0x77, 0x76, 0xbc, + 0x06, 0xeb, 0xe1, 0x94, 0x06, 0x78, 0xab, 0x81, 0xcc, 0x25, 0x87, 0x98, 0xee, 0xd7, 0x39, 0xc2, + 0x2e, 0x2a, 0xc3, 0x1a, 0xad, 0x04, 0x1e, 0x53, 0xde, 0xa4, 0x34, 0xaa, 0x85, 0x60, 0xb2, 0x1a, + 0x2c, 0xd1, 0xf9, 0x62, 0x4f, 0x1f, 0xe3, 0xd2, 0xef, 0x44, 0x58, 0x5d, 0x38, 0xf1, 0xab, 0x45, + 0xd9, 0xcb, 0x9c, 0x1c, 0x6b, 0x8b, 0x41, 0x8f, 0xb3, 0x97, 0x39, 0x39, 0xa6, 0xc3, 0x5e, 0x92, + 0x2e, 0x1e, 0x38, 0x26, 0x6a, 0x83, 0x68, 0xd9, 0xae, 0xdf, 0x2c, 0xe7, 0x1d, 0x96, 0xaf, 0xbc, + 0xa3, 0xdc, 0xb1, 0x5d, 0x7e, 0x0a, 0xab, 0xcc, 0x07, 0xfa, 0xb5, 0x00, 0x49, 0x97, 0x05, 0x41, + 0x94, 0x04, 0xf3, 0x77, 0xf7, 0x4a, 0xfe, 0x78, 0x02, 0xbc, 0x01, 0x6f, 0x9f, 0xd6, 0xf2, 0xe5, + 0xac, 0xb0, 0x7a, 0x3a, 0x41, 0xe4, 0xba, 0x93, 0x9f, 0xbf, 0x37, 0xd4, 0x86, 0xdc, 0x72, 0x86, + 0xd9, 0xb9, 0x71, 0xc9, 0xd9, 0x2e, 0xbb, 0x54, 0x81, 0xfc, 0x11, 0x1d, 0xb3, 0x16, 0xdb, 0x3e, + 0x63, 0x1e, 0xa9, 0x2e, 0xcf, 0x23, 0x37, 0x2f, 0x95, 0x12, 0xee, 0x33, 0x34, 0x84, 0xe4, 0xef, + 0x40, 0x2a, 0xc8, 0x77, 0xf8, 0x2d, 0x29, 0xfe, 0x96, 0xf5, 0xf0, 0x5b, 0x52, 0xaf, 0x4c, 0x2f, + 0xc1, 0x49, 0x10, 0x97, 0x13, 0xa5, 0x9f, 0x08, 0x90, 0x51, 0x31, 0xb1, 0x46, 0x8f, 0xb1, 0x41, + 0x7b, 0x10, 0x7d, 0x09, 0x44, 0xda, 0xd3, 0xde, 0x79, 0x74, 0x01, 0xb9, 0x31, 0x55, 0x54, 0x85, + 0x54, 0x70, 0xdb, 0xba, 0xca, 0x25, 0x64, 0x61, 0x55, 0xb2, 0x01, 0x2d, 0x02, 0x0e, 0x68, 0xbc, + 0x07, 0x94, 0x1d, 0xd8, 0xde, 0x3c, 0xca, 0xe5, 0x24, 0xf3, 0xee, 0xf9, 0x24, 0x13, 0x04, 0xe3, + 0x97, 0xc9, 0x09, 0xc9, 0x88, 0xd7, 0x86, 0x7f, 0x8c, 0x01, 0xaa, 0x3b, 0x58, 0x77, 0x31, 0xe5, + 0x3c, 0x72, 0x1e, 0x13, 0xd7, 0x20, 0xce, 0xa8, 0xc8, 0x8b, 0xed, 0x92, 0x67, 0xb4, 0xf7, 0x72, + 0x6e, 0x8a, 0xbe, 0x03, 0x99, 0x81, 0x35, 0x9a, 0x8e, 0x39, 0x59, 0xfa, 0xa4, 0xf6, 0xe5, 0xf3, + 0x00, 0xf0, 0xca, 0xe6, 0xca, 0x75, 0x6b, 0x14, 0x62, 0xce, 0x34, 0x77, 0x48, 0x25, 0x74, 0xfe, + 0x4b, 0x05, 0x60, 0x64, 0x7c, 0x96, 0x52, 0x17, 0x02, 0xb4, 0x05, 0x71, 0x9d, 0x68, 0xd6, 0x21, + 0x9b, 0xca, 0x2e, 0xaa, 0x8e, 0x2a, 0xea, 0xa4, 0x73, 0x88, 0x6e, 0x43, 0xf6, 0xf0, 0x84, 0x73, + 0x30, 0x67, 0x1d, 0x7e, 0xd1, 0x58, 0x99, 0xcf, 0x0a, 0xe9, 0xed, 0x0f, 0x59, 0xb0, 0x94, 0x73, + 0xd4, 0xf4, 0xe1, 0x49, 0xf0, 0x90, 0xd7, 0x21, 0xe9, 0x6d, 0x12, 0x3d, 0x82, 0x98, 0x69, 0xf0, + 0x43, 0x32, 0x5b, 0x6b, 0xd0, 0x9b, 0x65, 0xab, 0x41, 0x5e, 0xce, 0x0a, 0x77, 0xaf, 0xdc, 0xaf, + 0x75, 0x16, 0x67, 0xab, 0xa1, 0x52, 0x87, 0xa5, 0xff, 0x83, 0xb5, 0x50, 0x6a, 0x02, 0xfa, 0xfc, + 0x43, 0x02, 0x92, 0xfb, 0xfa, 0xd3, 0x91, 0xa5, 0x1b, 0xa8, 0x08, 0x69, 0xff, 0xca, 0x6a, 0x5a, + 0x13, 0xaf, 0x96, 0x61, 0x11, 0x9d, 0x54, 0xa7, 0x04, 0x3b, 0x2c, 0x2e, 0xde, 0x25, 0xc1, 0x33, + 0x9d, 0x31, 0xd8, 0xfd, 0x1a, 0x1b, 0xda, 0xd8, 0x1c, 0x38, 0x16, 0x3f, 0x37, 0x63, 0xac, 0xdb, + 0xa9, 0xf4, 0x21, 0x13, 0xd2, 0x59, 0xef, 0xd0, 0x9c, 0x98, 0x64, 0xb8, 0xd0, 0x63, 0xb3, 0xb1, + 0x9a, 0xf3, 0xc5, 0x9e, 0xa2, 0x05, 0xb9, 0xc5, 0x05, 0x5a, 0xa3, 0x39, 0x49, 0xb0, 0x9c, 0xec, + 0xcc, 0x67, 0x85, 0xec, 0x02, 0x2f, 0x3c, 0x3b, 0xd7, 0xbb, 0xc7, 0x2e, 0xfc, 0xb7, 0x0c, 0xc2, + 0xbe, 0x42, 0x38, 0x8e, 0xe5, 0x28, 0x12, 0xef, 0x7f, 0xf6, 0x80, 0xde, 0x87, 0xf8, 0x08, 0xeb, + 0x84, 0x8f, 0xb7, 0xe9, 0xad, 0xe2, 0x39, 0xd0, 0x63, 0x1f, 0x4a, 0x54, 0xae, 0x8e, 0x6a, 0x90, + 0xe0, 0x33, 0x34, 0x9b, 0x7c, 0xd3, 0x5b, 0x9b, 0xe7, 0x18, 0x2e, 0x7d, 0xdf, 0xd8, 0x89, 0xa8, + 0x9e, 0x25, 0x6a, 0x42, 0xd2, 0xe1, 0xf7, 0x25, 0x36, 0x0f, 0x5f, 0x38, 0x26, 0x84, 0x6e, 0x62, + 0x3b, 0x11, 0xd5, 0xb7, 0x45, 0x3d, 0xc8, 0x90, 0xd0, 0xd1, 0xa9, 0x64, 0x98, 0xaf, 0xf3, 0x26, + 0x83, 0x33, 0x86, 0x97, 0x1d, 0x3a, 0xe8, 0x85, 0xc4, 0x34, 0x40, 0x93, 0xcd, 0xad, 0x4a, 0xf6, + 0xc2, 0x00, 0x97, 0x2e, 0x62, 0x34, 0x40, 0x6e, 0x89, 0xf6, 0x00, 0x06, 0x01, 0x7f, 0x29, 0x39, + 0xe6, 0xe7, 0x0b, 0x57, 0x39, 0xf0, 0x76, 0x22, 0x6a, 0xc8, 0x03, 0xfa, 0x10, 0xd2, 0x83, 0x05, + 0xc8, 0x95, 0x15, 0xe6, 0xf0, 0xd6, 0x95, 0xd8, 0x62, 0x87, 0x32, 0xc4, 0x42, 0x5a, 0x4b, 0x41, + 0xd2, 0xe0, 0x2b, 0xc1, 0xe0, 0x9f, 0x94, 0xa5, 0xd2, 0xef, 0xe3, 0x20, 0x05, 0x84, 0x5b, 0x01, + 0x74, 0xe8, 0xe8, 0x03, 0xda, 0x22, 0xda, 0xc0, 0xa2, 0x57, 0x1f, 0x17, 0xf3, 0x4f, 0x04, 0xd1, + 0x9d, 0x88, 0xba, 0xea, 0xaf, 0xd5, 0xfd, 0x25, 0xda, 0x04, 0x63, 0xcb, 0x30, 0x0f, 0xcd, 0x45, + 0x13, 0xf0, 0x4f, 0x5f, 0x39, 0x5f, 0xec, 0x35, 0xc1, 0x07, 0x4b, 0xd7, 0xe3, 0xd8, 0x25, 0x68, + 0x68, 0x27, 0x12, 0xba, 0x3f, 0xd3, 0xa6, 0x74, 0xa6, 0x93, 0x09, 0xbd, 0x49, 0x78, 0xc3, 0x2c, + 0x27, 0xb9, 0xac, 0x27, 0xe5, 0x83, 0x2b, 0xaa, 0x9f, 0x02, 0xeb, 0x7b, 0x17, 0x82, 0xd5, 0x8f, + 0x7d, 0x47, 0x08, 0xd0, 0xba, 0x7d, 0x1a, 0xad, 0x37, 0x2e, 0x46, 0x6b, 0xc8, 0x4d, 0x00, 0xd7, + 0x83, 0x33, 0xe1, 0x5a, 0xb9, 0x24, 0x5c, 0x43, 0x1e, 0x97, 0xf1, 0x5a, 0x3f, 0x85, 0xd7, 0xf7, + 0x2e, 0xc4, 0x6b, 0x38, 0x46, 0x0f, 0xb0, 0x9d, 0x33, 0x00, 0x7b, 0xeb, 0x52, 0x80, 0x0d, 0x39, + 0x0b, 0x23, 0x56, 0x3d, 0x0b, 0xb1, 0xe5, 0xcb, 0x21, 0x36, 0xe4, 0x72, 0x09, 0xb2, 0x00, 0x92, + 0x7f, 0x83, 0x0b, 0xc1, 0xf7, 0xc6, 0x37, 0x20, 0xe1, 0x95, 0x1b, 0x41, 0xae, 0xa1, 0x56, 0x5b, + 0x7b, 0xad, 0xbd, 0xfb, 0xda, 0x5e, 0xf5, 0x61, 0xb3, 0x2b, 0x47, 0x90, 0x02, 0xeb, 0x1f, 0x55, + 0x5b, 0x3d, 0x6d, 0xbb, 0xa3, 0x6a, 0xf7, 0xeb, 0x5a, 0x6b, 0xaf, 0xd7, 0x54, 0x1f, 0x55, 0x77, + 0x65, 0x01, 0xbd, 0x06, 0x48, 0xed, 0xd4, 0x1f, 0x74, 0x1b, 0x35, 0xad, 0xde, 0x79, 0xb8, 0x5f, + 0xad, 0xf7, 0x5a, 0x9d, 0x3d, 0x39, 0x8a, 0x24, 0x10, 0x1b, 0x9d, 0xbd, 0xa6, 0x0c, 0x37, 0x7e, + 0x14, 0x05, 0xb1, 0xf7, 0xd4, 0xc6, 0xe8, 0xf3, 0x90, 0x3e, 0xd8, 0xeb, 0xee, 0x37, 0xeb, 0xad, + 0xed, 0x56, 0xb3, 0x21, 0x47, 0xf2, 0x6b, 0xcf, 0x9e, 0x17, 0x57, 0xe8, 0xd2, 0xc1, 0x84, 0xd8, + 0x78, 0xc0, 0xa0, 0x8d, 0xf2, 0x90, 0xa8, 0x55, 0xeb, 0x0f, 0x0e, 0xf6, 0x65, 0x21, 0x9f, 0x7b, + 0xf6, 0xbc, 0x08, 0x54, 0x81, 0xc3, 0x0a, 0xbd, 0x09, 0x49, 0xb5, 0xd9, 0xed, 0x75, 0xd4, 0xa6, + 0x1c, 0xcd, 0xaf, 0x3c, 0x7b, 0x5e, 0x4c, 0xd3, 0x45, 0x0f, 0x2d, 0xe8, 0x5d, 0xc8, 0x76, 0xeb, + 0x3b, 0xcd, 0x87, 0x55, 0xad, 0xbe, 0x53, 0xdd, 0xbb, 0xdf, 0x94, 0x63, 0xf9, 0xf5, 0x67, 0xcf, + 0x8b, 0x32, 0xd5, 0x09, 0x83, 0x80, 0xbe, 0xa2, 0xf5, 0x70, 0xbf, 0xa3, 0xf6, 0x64, 0x71, 0xf1, + 0x0a, 0x5e, 0x55, 0x54, 0x02, 0xe0, 0xd6, 0xdb, 0xcd, 0x66, 0x43, 0x8e, 0xe7, 0xd1, 0xb3, 0xe7, + 0xc5, 0x1c, 0x5d, 0x5f, 0x14, 0x0b, 0xbd, 0x0d, 0x99, 0xba, 0xda, 0xac, 0xf6, 0x9a, 0x5a, 0xb7, + 0x57, 0xed, 0x75, 0xe5, 0xc4, 0x22, 0x92, 0x50, 0x01, 0xf2, 0xd2, 0x4f, 0x7f, 0xb9, 0x11, 0xf9, + 0xcd, 0xaf, 0x36, 0x22, 0xb5, 0xe2, 0x8b, 0x7f, 0x6e, 0x44, 0x5e, 0xcc, 0x37, 0x84, 0x4f, 0xe7, + 0x1b, 0xc2, 0x5f, 0xe7, 0x1b, 0xc2, 0x3f, 0xe6, 0x1b, 0xc2, 0xcf, 0xfe, 0xb5, 0x11, 0xf9, 0x38, + 0xc1, 0x0b, 0xd7, 0x4f, 0xb0, 0x0f, 0xea, 0xb7, 0xff, 0x13, 0x00, 0x00, 0xff, 0xff, 0x84, 0x98, + 0xe9, 0xbe, 0x01, 0x18, 0x00, 0x00, } diff --git a/pkg/jobs/jobspb/jobs.proto b/pkg/jobs/jobspb/jobs.proto index 0cdf97bd05b8..091f76e61701 100644 --- a/pkg/jobs/jobspb/jobs.proto +++ b/pkg/jobs/jobspb/jobs.proto @@ -209,13 +209,14 @@ message CreateStatsDetails { (gogoproto.casttype) = "github.com/cockroachdb/cockroach/pkg/sql/sqlbase.ColumnID" ]; } - string name = 1 [ - (gogoproto.casttype) = "github.com/cockroachdb/cockroach/pkg/sql/sem/tree.Name" - ]; + string name = 1; sqlbase.TableDescriptor table = 2 [(gogoproto.nullable) = false]; repeated ColList column_lists = 3 [(gogoproto.nullable) = false]; string statement = 4; util.hlc.Timestamp as_of = 5; + + // Fully qualified table name. + string fq_table_name = 6 [(gogoproto.customname) = "FQTableName"]; } message CreateStatsProgress { diff --git a/pkg/sql/create_stats.go b/pkg/sql/create_stats.go index f7f5c8e09a9f..9082e057f600 100644 --- a/pkg/sql/create_stats.go +++ b/pkg/sql/create_stats.go @@ -16,10 +16,12 @@ package sql import ( "context" + "fmt" "github.com/cockroachdb/cockroach/pkg/internal/client" "github.com/cockroachdb/cockroach/pkg/jobs" "github.com/cockroachdb/cockroach/pkg/jobs/jobspb" + "github.com/cockroachdb/cockroach/pkg/settings" "github.com/cockroachdb/cockroach/pkg/settings/cluster" "github.com/cockroachdb/cockroach/pkg/sql/pgwire/pgerror" "github.com/cockroachdb/cockroach/pkg/sql/privilege" @@ -34,6 +36,14 @@ import ( "google.golang.org/grpc/status" ) +// createStatsPostEvents controls the cluster setting for enabling +// automatic table statistics collection. +var createStatsPostEvents = settings.RegisterBoolSetting( + "sql.stats.post_events", + "if set, an event is shown for every CREATE STATISTICS job", + false, +) + func (p *planner) CreateStatistics(ctx context.Context, n *tree.CreateStats) (planNode, error) { return &createStatsNode{ CreateStats: *n, @@ -97,6 +107,7 @@ func (n *createStatsNode) startJob(ctx context.Context, resultsCh chan<- tree.Da } var tableDesc *ImmutableTableDescriptor + var fqTableName string var err error switch t := n.Table.(type) { case *tree.TableName: @@ -107,6 +118,7 @@ func (n *createStatsNode) startJob(ctx context.Context, resultsCh chan<- tree.Da if err != nil { return err } + fqTableName = t.FQString() case *tree.TableRef: flags := ObjectLookupFlags{CommonLookupFlags: CommonLookupFlags{ @@ -116,6 +128,10 @@ func (n *createStatsNode) startJob(ctx context.Context, resultsCh chan<- tree.Da if err != nil { return err } + fqTableName, err = n.p.getQualifiedTableName(ctx, &tableDesc.TableDescriptor) + if err != nil { + return err + } } if tableDesc.IsVirtualTable() { @@ -173,11 +189,21 @@ func (n *createStatsNode) startJob(ctx context.Context, resultsCh chan<- tree.Da } // Create a job to run statistics creation. + var description string + if n.Name == stats.AutoStatsName { + // Use a user-friendly description for automatic statistics. + description = fmt.Sprintf("Table statistics refresh for %s", fqTableName) + } else { + // This must be a user query, so use the statement (for consistency with + // other jobs triggered by statements). + description = tree.AsStringWithFlags(n, tree.FmtAlwaysQualifyTableNames) + } _, errCh, err := n.p.ExecCfg().JobRegistry.StartJob(ctx, resultsCh, jobs.Record{ - Description: tree.AsStringWithFlags(n, tree.FmtAlwaysQualifyTableNames), + Description: description, Username: n.p.User(), Details: jobspb.CreateStatsDetails{ - Name: n.Name, + Name: string(n.Name), + FQTableName: fqTableName, Table: tableDesc.TableDescriptor, ColumnLists: createStatsColLists, Statement: n.String(), @@ -380,6 +406,10 @@ func (r *createStatsResumer) OnFailOrCancel( // OnSuccess is part of the jobs.Resumer interface. func (r *createStatsResumer) OnSuccess(ctx context.Context, _ *client.Txn, job *jobs.Job) error { details := job.Details().(jobspb.CreateStatsDetails) + + if !createStatsPostEvents.Get(&r.evalCtx.Settings.SV) { + return nil + } // Record this statistics creation in the event log. // TODO(rytaft): This creates a new transaction for the CREATE STATISTICS // event. It must be different from the CREATE STATISTICS transaction, @@ -395,9 +425,9 @@ func (r *createStatsResumer) OnSuccess(ctx context.Context, _ *client.Txn, job * int32(details.Table.ID), int32(r.evalCtx.NodeID), struct { - StatisticName string - Statement string - }{details.Name.String(), details.Statement}, + TableName string + Statement string + }{details.FQTableName, details.Statement}, ) }) } diff --git a/pkg/sql/distsql_plan_stats.go b/pkg/sql/distsql_plan_stats.go index 4d61b19f3718..fec8d6b2dd4f 100644 --- a/pkg/sql/distsql_plan_stats.go +++ b/pkg/sql/distsql_plan_stats.go @@ -171,7 +171,7 @@ func (dsp *DistSQLPlanner) createPlanForCreateStats( columns: details.ColumnLists[i].IDs, histogram: histogram, histogramMaxBuckets: histogramBuckets, - name: string(details.Name), + name: details.Name, } } diff --git a/pkg/sql/logictest/testdata/logic_test/distsql_event_log b/pkg/sql/logictest/testdata/logic_test/distsql_event_log index 2dcaff4dd042..3c722c910074 100644 --- a/pkg/sql/logictest/testdata/logic_test/distsql_event_log +++ b/pkg/sql/logictest/testdata/logic_test/distsql_event_log @@ -4,6 +4,10 @@ # CREATE STATISTICS ################### +# This test verifies that events are posted for table statistics creation. +statement ok +SET CLUSTER SETTING sql.stats.post_events = TRUE + statement ok CREATE TABLE a (id INT PRIMARY KEY, x INT, y INT, INDEX x_idx (x, y)) @@ -13,16 +17,14 @@ CREATE STATISTICS s1 ON id FROM a statement ok CREATE STATISTICS __auto__ FROM a -# verify statistics creation is logged -################## query IIT SELECT "targetID", "reportingID", "info" FROM system.eventlog WHERE "eventType" = 'create_statistics' ORDER BY "timestamp" ---- -53 1 {"StatisticName":"s1","Statement":"CREATE STATISTICS s1 ON id FROM a"} -53 1 {"StatisticName":"__auto__","Statement":"CREATE STATISTICS __auto__ FROM a"} +53 1 {"TableName":"test.public.a","Statement":"CREATE STATISTICS s1 ON id FROM a"} +53 1 {"TableName":"test.public.a","Statement":"CREATE STATISTICS __auto__ FROM a"} statement ok DROP TABLE a diff --git a/pkg/ui/src/util/eventTypes.ts b/pkg/ui/src/util/eventTypes.ts index 515eb7fab5fc..292472e183c5 100644 --- a/pkg/ui/src/util/eventTypes.ts +++ b/pkg/ui/src/util/eventTypes.ts @@ -69,6 +69,8 @@ export const SET_CLUSTER_SETTING = "set_cluster_setting"; export const SET_ZONE_CONFIG = "set_zone_config"; // Recorded when a zone config is removed. export const REMOVE_ZONE_CONFIG = "remove_zone_config"; +// Recorded when statistics are collected for a table. +export const CREATE_STATISTICS = "create_statistics"; // Node Event Types export const nodeEvents = [NODE_JOIN, NODE_RESTART, NODE_DECOMMISSIONED, NODE_RECOMMISSIONED]; diff --git a/pkg/ui/src/util/events.ts b/pkg/ui/src/util/events.ts index eff328011cc8..844c28416752 100644 --- a/pkg/ui/src/util/events.ts +++ b/pkg/ui/src/util/events.ts @@ -76,9 +76,11 @@ export function getEventDescription(e: Event$Properties): string { } return `Cluster Setting Changed: User ${info.User} changed ${info.SettingName}`; case eventTypes.SET_ZONE_CONFIG: - return `Zone Config Changed: User ${info.User} set the zone config for ${info.Target} to ${info.Config}`; + return `Zone Config Changed: User ${info.User} set the zone config for ${info.Target} to ${info.Config}`; case eventTypes.REMOVE_ZONE_CONFIG: return `Zone Config Removed: User ${info.User} removed the zone config for ${info.Target}`; + case eventTypes.CREATE_STATISTICS: + return `Table statistics refreshed for ${info.TableName}`; default: return `Unknown Event Type: ${e.event_type}, content: ${JSON.stringify(info, null, 2)}`; } @@ -98,6 +100,7 @@ export interface EventInfo { Value?: string; Target?: string; Config?: string; + Statement?: string; // The following are three names for the same key (it was renamed twice). // All ar included for backwards compatibility. DroppedTables?: string[];