feat(inverted_index): add row count to metas (#126)

Signed-off-by: Zhenchi <zhongzc_arch@outlook.com>
This commit is contained in:
Zhenchi
2023-12-05 10:42:43 +08:00
committed by GitHub
parent 4377b4377c
commit b1d403088f
4 changed files with 377 additions and 206 deletions
+90 -51
View File
@@ -37,6 +37,8 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORIT
PROTOBUF_CONSTEXPR InvertedIndexMetas::InvertedIndexMetas( PROTOBUF_CONSTEXPR InvertedIndexMetas::InvertedIndexMetas(
::_pbi::ConstantInitialized): _impl_{ ::_pbi::ConstantInitialized): _impl_{
/*decltype(_impl_.metas_)*/{::_pbi::ConstantInitialized()} /*decltype(_impl_.metas_)*/{::_pbi::ConstantInitialized()}
, /*decltype(_impl_.total_row_count_)*/uint64_t{0u}
, /*decltype(_impl_.segment_row_count_)*/uint64_t{0u}
, /*decltype(_impl_._cached_size_)*/{}} {} , /*decltype(_impl_._cached_size_)*/{}} {}
struct InvertedIndexMetasDefaultTypeInternal { struct InvertedIndexMetasDefaultTypeInternal {
PROTOBUF_CONSTEXPR InvertedIndexMetasDefaultTypeInternal() PROTOBUF_CONSTEXPR InvertedIndexMetasDefaultTypeInternal()
@@ -57,7 +59,6 @@ PROTOBUF_CONSTEXPR InvertedIndexMeta::InvertedIndexMeta(
, /*decltype(_impl_.fst_size_)*/0u , /*decltype(_impl_.fst_size_)*/0u
, /*decltype(_impl_.relative_null_bitmap_offset_)*/0u , /*decltype(_impl_.relative_null_bitmap_offset_)*/0u
, /*decltype(_impl_.null_bitmap_size_)*/0u , /*decltype(_impl_.null_bitmap_size_)*/0u
, /*decltype(_impl_.segment_row_count_)*/uint64_t{0u}
, /*decltype(_impl_._cached_size_)*/{}} {} , /*decltype(_impl_._cached_size_)*/{}} {}
struct InvertedIndexMetaDefaultTypeInternal { struct InvertedIndexMetaDefaultTypeInternal {
PROTOBUF_CONSTEXPR InvertedIndexMetaDefaultTypeInternal() PROTOBUF_CONSTEXPR InvertedIndexMetaDefaultTypeInternal()
@@ -109,6 +110,8 @@ const uint32_t TableStruct_greptime_2fv1_2findex_2finverted_5findex_2eproto::off
~0u, // no _weak_field_map_ ~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_ ~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMetas, _impl_.metas_), PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMetas, _impl_.metas_),
PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMetas, _impl_.total_row_count_),
PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMetas, _impl_.segment_row_count_),
~0u, // no _has_bits_ ~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMeta, _internal_metadata_), PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMeta, _internal_metadata_),
~0u, // no _extensions_ ~0u, // no _extensions_
@@ -123,7 +126,6 @@ const uint32_t TableStruct_greptime_2fv1_2findex_2finverted_5findex_2eproto::off
PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMeta, _impl_.relative_null_bitmap_offset_), PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMeta, _impl_.relative_null_bitmap_offset_),
PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMeta, _impl_.null_bitmap_size_), PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMeta, _impl_.null_bitmap_size_),
PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMeta, _impl_.stats_), PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMeta, _impl_.stats_),
PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexMeta, _impl_.segment_row_count_),
~0u, // no _has_bits_ ~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexStats, _internal_metadata_), PROTOBUF_FIELD_OFFSET(::greptime::v1::index::InvertedIndexStats, _internal_metadata_),
~0u, // no _extensions_ ~0u, // no _extensions_
@@ -138,8 +140,8 @@ const uint32_t TableStruct_greptime_2fv1_2findex_2finverted_5findex_2eproto::off
static const ::_pbi::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { static const ::_pbi::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = {
{ 0, 8, -1, sizeof(::greptime::v1::index::InvertedIndexMetas_MetasEntry_DoNotUse)}, { 0, 8, -1, sizeof(::greptime::v1::index::InvertedIndexMetas_MetasEntry_DoNotUse)},
{ 10, -1, -1, sizeof(::greptime::v1::index::InvertedIndexMetas)}, { 10, -1, -1, sizeof(::greptime::v1::index::InvertedIndexMetas)},
{ 17, -1, -1, sizeof(::greptime::v1::index::InvertedIndexMeta)}, { 19, -1, -1, sizeof(::greptime::v1::index::InvertedIndexMeta)},
{ 32, -1, -1, sizeof(::greptime::v1::index::InvertedIndexStats)}, { 33, -1, -1, sizeof(::greptime::v1::index::InvertedIndexStats)},
}; };
static const ::_pb::Message* const file_default_instances[] = { static const ::_pb::Message* const file_default_instances[] = {
@@ -151,27 +153,28 @@ static const ::_pb::Message* const file_default_instances[] = {
const char descriptor_table_protodef_greptime_2fv1_2findex_2finverted_5findex_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = const char descriptor_table_protodef_greptime_2fv1_2findex_2finverted_5findex_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) =
"\n&greptime/v1/index/inverted_index.proto" "\n&greptime/v1/index/inverted_index.proto"
"\022\021greptime.v1.index\"\251\001\n\022InvertedIndexMet" "\022\021greptime.v1.index\"\335\001\n\022InvertedIndexMet"
"as\022\?\n\005metas\030\001 \003(\01320.greptime.v1.index.In" "as\022\?\n\005metas\030\001 \003(\01320.greptime.v1.index.In"
"vertedIndexMetas.MetasEntry\032R\n\nMetasEntr" "vertedIndexMetas.MetasEntry\022\027\n\017total_row"
"y\022\013\n\003key\030\001 \001(\t\0223\n\005value\030\002 \001(\0132$.greptime" "_count\030\002 \001(\004\022\031\n\021segment_row_count\030\003 \001(\004\032"
".v1.index.InvertedIndexMeta:\0028\001\"\222\002\n\021Inve" "R\n\nMetasEntry\022\013\n\003key\030\001 \001(\t\0223\n\005value\030\002 \001("
"rtedIndexMeta\022\014\n\004name\030\001 \001(\t\022\023\n\013base_offs" "\0132$.greptime.v1.index.InvertedIndexMeta:"
"et\030\002 \001(\004\022\033\n\023inverted_index_size\030\003 \001(\004\022\033\n" "\0028\001\"\367\001\n\021InvertedIndexMeta\022\014\n\004name\030\001 \001(\t\022"
"\023relative_fst_offset\030\004 \001(\r\022\020\n\010fst_size\030\005" "\023\n\013base_offset\030\002 \001(\004\022\033\n\023inverted_index_s"
" \001(\r\022#\n\033relative_null_bitmap_offset\030\006 \001(" "ize\030\003 \001(\004\022\033\n\023relative_fst_offset\030\004 \001(\r\022\020"
"\r\022\030\n\020null_bitmap_size\030\007 \001(\r\0224\n\005stats\030\010 \001" "\n\010fst_size\030\005 \001(\r\022#\n\033relative_null_bitmap"
"(\0132%.greptime.v1.index.InvertedIndexStat" "_offset\030\006 \001(\r\022\030\n\020null_bitmap_size\030\007 \001(\r\022"
"s\022\031\n\021segment_row_count\030\t \001(\004\"f\n\022Inverted" "4\n\005stats\030\010 \001(\0132%.greptime.v1.index.Inver"
"IndexStats\022\022\n\nnull_count\030\001 \001(\004\022\026\n\016distin" "tedIndexStats\"f\n\022InvertedIndexStats\022\022\n\nn"
"ct_count\030\002 \001(\004\022\021\n\tmin_value\030\003 \001(\014\022\021\n\tmax" "ull_count\030\001 \001(\004\022\026\n\016distinct_count\030\002 \001(\004\022"
"_value\030\004 \001(\014BZ\n\024io.greptime.v1.indexB\005In" "\021\n\tmin_value\030\003 \001(\014\022\021\n\tmax_value\030\004 \001(\014BZ\n"
"dexZ;github.com/GreptimeTeam/greptime-pr" "\024io.greptime.v1.indexB\005IndexZ;github.com"
"oto/go/greptime/v1/indexb\006proto3" "/GreptimeTeam/greptime-proto/go/greptime"
"/v1/indexb\006proto3"
; ;
static ::_pbi::once_flag descriptor_table_greptime_2fv1_2findex_2finverted_5findex_2eproto_once; static ::_pbi::once_flag descriptor_table_greptime_2fv1_2findex_2finverted_5findex_2eproto_once;
const ::_pbi::DescriptorTable descriptor_table_greptime_2fv1_2findex_2finverted_5findex_2eproto = { const ::_pbi::DescriptorTable descriptor_table_greptime_2fv1_2findex_2finverted_5findex_2eproto = {
false, false, 712, descriptor_table_protodef_greptime_2fv1_2findex_2finverted_5findex_2eproto, false, false, 737, descriptor_table_protodef_greptime_2fv1_2findex_2finverted_5findex_2eproto,
"greptime/v1/index/inverted_index.proto", "greptime/v1/index/inverted_index.proto",
&descriptor_table_greptime_2fv1_2findex_2finverted_5findex_2eproto_once, nullptr, 0, 4, &descriptor_table_greptime_2fv1_2findex_2finverted_5findex_2eproto_once, nullptr, 0, 4,
schemas, file_default_instances, TableStruct_greptime_2fv1_2findex_2finverted_5findex_2eproto::offsets, schemas, file_default_instances, TableStruct_greptime_2fv1_2findex_2finverted_5findex_2eproto::offsets,
@@ -222,10 +225,15 @@ InvertedIndexMetas::InvertedIndexMetas(const InvertedIndexMetas& from)
InvertedIndexMetas* const _this = this; (void)_this; InvertedIndexMetas* const _this = this; (void)_this;
new (&_impl_) Impl_{ new (&_impl_) Impl_{
/*decltype(_impl_.metas_)*/{} /*decltype(_impl_.metas_)*/{}
, decltype(_impl_.total_row_count_){}
, decltype(_impl_.segment_row_count_){}
, /*decltype(_impl_._cached_size_)*/{}}; , /*decltype(_impl_._cached_size_)*/{}};
_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_);
_this->_impl_.metas_.MergeFrom(from._impl_.metas_); _this->_impl_.metas_.MergeFrom(from._impl_.metas_);
::memcpy(&_impl_.total_row_count_, &from._impl_.total_row_count_,
static_cast<size_t>(reinterpret_cast<char*>(&_impl_.segment_row_count_) -
reinterpret_cast<char*>(&_impl_.total_row_count_)) + sizeof(_impl_.segment_row_count_));
// @@protoc_insertion_point(copy_constructor:greptime.v1.index.InvertedIndexMetas) // @@protoc_insertion_point(copy_constructor:greptime.v1.index.InvertedIndexMetas)
} }
@@ -235,6 +243,8 @@ inline void InvertedIndexMetas::SharedCtor(
(void)is_message_owned; (void)is_message_owned;
new (&_impl_) Impl_{ new (&_impl_) Impl_{
/*decltype(_impl_.metas_)*/{::_pbi::ArenaInitialized(), arena} /*decltype(_impl_.metas_)*/{::_pbi::ArenaInitialized(), arena}
, decltype(_impl_.total_row_count_){uint64_t{0u}}
, decltype(_impl_.segment_row_count_){uint64_t{0u}}
, /*decltype(_impl_._cached_size_)*/{} , /*decltype(_impl_._cached_size_)*/{}
}; };
} }
@@ -270,6 +280,9 @@ void InvertedIndexMetas::Clear() {
(void) cached_has_bits; (void) cached_has_bits;
_impl_.metas_.Clear(); _impl_.metas_.Clear();
::memset(&_impl_.total_row_count_, 0, static_cast<size_t>(
reinterpret_cast<char*>(&_impl_.segment_row_count_) -
reinterpret_cast<char*>(&_impl_.total_row_count_)) + sizeof(_impl_.segment_row_count_));
_internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>();
} }
@@ -292,6 +305,22 @@ const char* InvertedIndexMetas::_InternalParse(const char* ptr, ::_pbi::ParseCon
} else } else
goto handle_unusual; goto handle_unusual;
continue; continue;
// uint64 total_row_count = 2;
case 2:
if (PROTOBUF_PREDICT_TRUE(static_cast<uint8_t>(tag) == 16)) {
_impl_.total_row_count_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr);
CHK_(ptr);
} else
goto handle_unusual;
continue;
// uint64 segment_row_count = 3;
case 3:
if (PROTOBUF_PREDICT_TRUE(static_cast<uint8_t>(tag) == 24)) {
_impl_.segment_row_count_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr);
CHK_(ptr);
} else
goto handle_unusual;
continue;
default: default:
goto handle_unusual; goto handle_unusual;
} // switch } // switch
@@ -347,6 +376,18 @@ uint8_t* InvertedIndexMetas::_InternalSerialize(
} }
} }
// uint64 total_row_count = 2;
if (this->_internal_total_row_count() != 0) {
target = stream->EnsureSpace(target);
target = ::_pbi::WireFormatLite::WriteUInt64ToArray(2, this->_internal_total_row_count(), target);
}
// uint64 segment_row_count = 3;
if (this->_internal_segment_row_count() != 0) {
target = stream->EnsureSpace(target);
target = ::_pbi::WireFormatLite::WriteUInt64ToArray(3, this->_internal_segment_row_count(), target);
}
if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream);
@@ -372,6 +413,16 @@ size_t InvertedIndexMetas::ByteSizeLong() const {
total_size += InvertedIndexMetas_MetasEntry_DoNotUse::Funcs::ByteSizeLong(it->first, it->second); total_size += InvertedIndexMetas_MetasEntry_DoNotUse::Funcs::ByteSizeLong(it->first, it->second);
} }
// uint64 total_row_count = 2;
if (this->_internal_total_row_count() != 0) {
total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_total_row_count());
}
// uint64 segment_row_count = 3;
if (this->_internal_segment_row_count() != 0) {
total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_segment_row_count());
}
return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_);
} }
@@ -391,6 +442,12 @@ void InvertedIndexMetas::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, con
(void) cached_has_bits; (void) cached_has_bits;
_this->_impl_.metas_.MergeFrom(from._impl_.metas_); _this->_impl_.metas_.MergeFrom(from._impl_.metas_);
if (from._internal_total_row_count() != 0) {
_this->_internal_set_total_row_count(from._internal_total_row_count());
}
if (from._internal_segment_row_count() != 0) {
_this->_internal_set_segment_row_count(from._internal_segment_row_count());
}
_this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_);
} }
@@ -409,6 +466,12 @@ void InvertedIndexMetas::InternalSwap(InvertedIndexMetas* other) {
using std::swap; using std::swap;
_internal_metadata_.InternalSwap(&other->_internal_metadata_); _internal_metadata_.InternalSwap(&other->_internal_metadata_);
_impl_.metas_.InternalSwap(&other->_impl_.metas_); _impl_.metas_.InternalSwap(&other->_impl_.metas_);
::PROTOBUF_NAMESPACE_ID::internal::memswap<
PROTOBUF_FIELD_OFFSET(InvertedIndexMetas, _impl_.segment_row_count_)
+ sizeof(InvertedIndexMetas::_impl_.segment_row_count_)
- PROTOBUF_FIELD_OFFSET(InvertedIndexMetas, _impl_.total_row_count_)>(
reinterpret_cast<char*>(&_impl_.total_row_count_),
reinterpret_cast<char*>(&other->_impl_.total_row_count_));
} }
::PROTOBUF_NAMESPACE_ID::Metadata InvertedIndexMetas::GetMetadata() const { ::PROTOBUF_NAMESPACE_ID::Metadata InvertedIndexMetas::GetMetadata() const {
@@ -446,7 +509,6 @@ InvertedIndexMeta::InvertedIndexMeta(const InvertedIndexMeta& from)
, decltype(_impl_.fst_size_){} , decltype(_impl_.fst_size_){}
, decltype(_impl_.relative_null_bitmap_offset_){} , decltype(_impl_.relative_null_bitmap_offset_){}
, decltype(_impl_.null_bitmap_size_){} , decltype(_impl_.null_bitmap_size_){}
, decltype(_impl_.segment_row_count_){}
, /*decltype(_impl_._cached_size_)*/{}}; , /*decltype(_impl_._cached_size_)*/{}};
_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); _internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_);
@@ -462,8 +524,8 @@ InvertedIndexMeta::InvertedIndexMeta(const InvertedIndexMeta& from)
_this->_impl_.stats_ = new ::greptime::v1::index::InvertedIndexStats(*from._impl_.stats_); _this->_impl_.stats_ = new ::greptime::v1::index::InvertedIndexStats(*from._impl_.stats_);
} }
::memcpy(&_impl_.base_offset_, &from._impl_.base_offset_, ::memcpy(&_impl_.base_offset_, &from._impl_.base_offset_,
static_cast<size_t>(reinterpret_cast<char*>(&_impl_.segment_row_count_) - static_cast<size_t>(reinterpret_cast<char*>(&_impl_.null_bitmap_size_) -
reinterpret_cast<char*>(&_impl_.base_offset_)) + sizeof(_impl_.segment_row_count_)); reinterpret_cast<char*>(&_impl_.base_offset_)) + sizeof(_impl_.null_bitmap_size_));
// @@protoc_insertion_point(copy_constructor:greptime.v1.index.InvertedIndexMeta) // @@protoc_insertion_point(copy_constructor:greptime.v1.index.InvertedIndexMeta)
} }
@@ -480,7 +542,6 @@ inline void InvertedIndexMeta::SharedCtor(
, decltype(_impl_.fst_size_){0u} , decltype(_impl_.fst_size_){0u}
, decltype(_impl_.relative_null_bitmap_offset_){0u} , decltype(_impl_.relative_null_bitmap_offset_){0u}
, decltype(_impl_.null_bitmap_size_){0u} , decltype(_impl_.null_bitmap_size_){0u}
, decltype(_impl_.segment_row_count_){uint64_t{0u}}
, /*decltype(_impl_._cached_size_)*/{} , /*decltype(_impl_._cached_size_)*/{}
}; };
_impl_.name_.InitDefault(); _impl_.name_.InitDefault();
@@ -520,8 +581,8 @@ void InvertedIndexMeta::Clear() {
} }
_impl_.stats_ = nullptr; _impl_.stats_ = nullptr;
::memset(&_impl_.base_offset_, 0, static_cast<size_t>( ::memset(&_impl_.base_offset_, 0, static_cast<size_t>(
reinterpret_cast<char*>(&_impl_.segment_row_count_) - reinterpret_cast<char*>(&_impl_.null_bitmap_size_) -
reinterpret_cast<char*>(&_impl_.base_offset_)) + sizeof(_impl_.segment_row_count_)); reinterpret_cast<char*>(&_impl_.base_offset_)) + sizeof(_impl_.null_bitmap_size_));
_internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(); _internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>();
} }
@@ -597,14 +658,6 @@ const char* InvertedIndexMeta::_InternalParse(const char* ptr, ::_pbi::ParseCont
} else } else
goto handle_unusual; goto handle_unusual;
continue; continue;
// uint64 segment_row_count = 9;
case 9:
if (PROTOBUF_PREDICT_TRUE(static_cast<uint8_t>(tag) == 72)) {
_impl_.segment_row_count_ = ::PROTOBUF_NAMESPACE_ID::internal::ReadVarint64(&ptr);
CHK_(ptr);
} else
goto handle_unusual;
continue;
default: default:
goto handle_unusual; goto handle_unusual;
} // switch } // switch
@@ -687,12 +740,6 @@ uint8_t* InvertedIndexMeta::_InternalSerialize(
_Internal::stats(this).GetCachedSize(), target, stream); _Internal::stats(this).GetCachedSize(), target, stream);
} }
// uint64 segment_row_count = 9;
if (this->_internal_segment_row_count() != 0) {
target = stream->EnsureSpace(target);
target = ::_pbi::WireFormatLite::WriteUInt64ToArray(9, this->_internal_segment_row_count(), target);
}
if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) {
target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray(
_internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream);
@@ -753,11 +800,6 @@ size_t InvertedIndexMeta::ByteSizeLong() const {
total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_null_bitmap_size()); total_size += ::_pbi::WireFormatLite::UInt32SizePlusOne(this->_internal_null_bitmap_size());
} }
// uint64 segment_row_count = 9;
if (this->_internal_segment_row_count() != 0) {
total_size += ::_pbi::WireFormatLite::UInt64SizePlusOne(this->_internal_segment_row_count());
}
return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_);
} }
@@ -801,9 +843,6 @@ void InvertedIndexMeta::MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, cons
if (from._internal_null_bitmap_size() != 0) { if (from._internal_null_bitmap_size() != 0) {
_this->_internal_set_null_bitmap_size(from._internal_null_bitmap_size()); _this->_internal_set_null_bitmap_size(from._internal_null_bitmap_size());
} }
if (from._internal_segment_row_count() != 0) {
_this->_internal_set_segment_row_count(from._internal_segment_row_count());
}
_this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_); _this->_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_);
} }
@@ -828,8 +867,8 @@ void InvertedIndexMeta::InternalSwap(InvertedIndexMeta* other) {
&other->_impl_.name_, rhs_arena &other->_impl_.name_, rhs_arena
); );
::PROTOBUF_NAMESPACE_ID::internal::memswap< ::PROTOBUF_NAMESPACE_ID::internal::memswap<
PROTOBUF_FIELD_OFFSET(InvertedIndexMeta, _impl_.segment_row_count_) PROTOBUF_FIELD_OFFSET(InvertedIndexMeta, _impl_.null_bitmap_size_)
+ sizeof(InvertedIndexMeta::_impl_.segment_row_count_) + sizeof(InvertedIndexMeta::_impl_.null_bitmap_size_)
- PROTOBUF_FIELD_OFFSET(InvertedIndexMeta, _impl_.stats_)>( - PROTOBUF_FIELD_OFFSET(InvertedIndexMeta, _impl_.stats_)>(
reinterpret_cast<char*>(&_impl_.stats_), reinterpret_cast<char*>(&_impl_.stats_),
reinterpret_cast<char*>(&other->_impl_.stats_)); reinterpret_cast<char*>(&other->_impl_.stats_));
+62 -31
View File
@@ -228,6 +228,8 @@ class InvertedIndexMetas final :
enum : int { enum : int {
kMetasFieldNumber = 1, kMetasFieldNumber = 1,
kTotalRowCountFieldNumber = 2,
kSegmentRowCountFieldNumber = 3,
}; };
// map<string, .greptime.v1.index.InvertedIndexMeta> metas = 1; // map<string, .greptime.v1.index.InvertedIndexMeta> metas = 1;
int metas_size() const; int metas_size() const;
@@ -246,6 +248,24 @@ class InvertedIndexMetas final :
::PROTOBUF_NAMESPACE_ID::Map< std::string, ::greptime::v1::index::InvertedIndexMeta >* ::PROTOBUF_NAMESPACE_ID::Map< std::string, ::greptime::v1::index::InvertedIndexMeta >*
mutable_metas(); mutable_metas();
// uint64 total_row_count = 2;
void clear_total_row_count();
uint64_t total_row_count() const;
void set_total_row_count(uint64_t value);
private:
uint64_t _internal_total_row_count() const;
void _internal_set_total_row_count(uint64_t value);
public:
// uint64 segment_row_count = 3;
void clear_segment_row_count();
uint64_t segment_row_count() const;
void set_segment_row_count(uint64_t value);
private:
uint64_t _internal_segment_row_count() const;
void _internal_set_segment_row_count(uint64_t value);
public:
// @@protoc_insertion_point(class_scope:greptime.v1.index.InvertedIndexMetas) // @@protoc_insertion_point(class_scope:greptime.v1.index.InvertedIndexMetas)
private: private:
class _Internal; class _Internal;
@@ -259,6 +279,8 @@ class InvertedIndexMetas final :
std::string, ::greptime::v1::index::InvertedIndexMeta, std::string, ::greptime::v1::index::InvertedIndexMeta,
::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::TYPE_STRING, ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::TYPE_STRING,
::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::TYPE_MESSAGE> metas_; ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::TYPE_MESSAGE> metas_;
uint64_t total_row_count_;
uint64_t segment_row_count_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
}; };
union { Impl_ _impl_; }; union { Impl_ _impl_; };
@@ -395,7 +417,6 @@ class InvertedIndexMeta final :
kFstSizeFieldNumber = 5, kFstSizeFieldNumber = 5,
kRelativeNullBitmapOffsetFieldNumber = 6, kRelativeNullBitmapOffsetFieldNumber = 6,
kNullBitmapSizeFieldNumber = 7, kNullBitmapSizeFieldNumber = 7,
kSegmentRowCountFieldNumber = 9,
}; };
// string name = 1; // string name = 1;
void clear_name(); void clear_name();
@@ -483,15 +504,6 @@ class InvertedIndexMeta final :
void _internal_set_null_bitmap_size(uint32_t value); void _internal_set_null_bitmap_size(uint32_t value);
public: public:
// uint64 segment_row_count = 9;
void clear_segment_row_count();
uint64_t segment_row_count() const;
void set_segment_row_count(uint64_t value);
private:
uint64_t _internal_segment_row_count() const;
void _internal_set_segment_row_count(uint64_t value);
public:
// @@protoc_insertion_point(class_scope:greptime.v1.index.InvertedIndexMeta) // @@protoc_insertion_point(class_scope:greptime.v1.index.InvertedIndexMeta)
private: private:
class _Internal; class _Internal;
@@ -508,7 +520,6 @@ class InvertedIndexMeta final :
uint32_t fst_size_; uint32_t fst_size_;
uint32_t relative_null_bitmap_offset_; uint32_t relative_null_bitmap_offset_;
uint32_t null_bitmap_size_; uint32_t null_bitmap_size_;
uint64_t segment_row_count_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_; mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
}; };
union { Impl_ _impl_; }; union { Impl_ _impl_; };
@@ -747,6 +758,46 @@ InvertedIndexMetas::mutable_metas() {
return _internal_mutable_metas(); return _internal_mutable_metas();
} }
// uint64 total_row_count = 2;
inline void InvertedIndexMetas::clear_total_row_count() {
_impl_.total_row_count_ = uint64_t{0u};
}
inline uint64_t InvertedIndexMetas::_internal_total_row_count() const {
return _impl_.total_row_count_;
}
inline uint64_t InvertedIndexMetas::total_row_count() const {
// @@protoc_insertion_point(field_get:greptime.v1.index.InvertedIndexMetas.total_row_count)
return _internal_total_row_count();
}
inline void InvertedIndexMetas::_internal_set_total_row_count(uint64_t value) {
_impl_.total_row_count_ = value;
}
inline void InvertedIndexMetas::set_total_row_count(uint64_t value) {
_internal_set_total_row_count(value);
// @@protoc_insertion_point(field_set:greptime.v1.index.InvertedIndexMetas.total_row_count)
}
// uint64 segment_row_count = 3;
inline void InvertedIndexMetas::clear_segment_row_count() {
_impl_.segment_row_count_ = uint64_t{0u};
}
inline uint64_t InvertedIndexMetas::_internal_segment_row_count() const {
return _impl_.segment_row_count_;
}
inline uint64_t InvertedIndexMetas::segment_row_count() const {
// @@protoc_insertion_point(field_get:greptime.v1.index.InvertedIndexMetas.segment_row_count)
return _internal_segment_row_count();
}
inline void InvertedIndexMetas::_internal_set_segment_row_count(uint64_t value) {
_impl_.segment_row_count_ = value;
}
inline void InvertedIndexMetas::set_segment_row_count(uint64_t value) {
_internal_set_segment_row_count(value);
// @@protoc_insertion_point(field_set:greptime.v1.index.InvertedIndexMetas.segment_row_count)
}
// ------------------------------------------------------------------- // -------------------------------------------------------------------
// InvertedIndexMeta // InvertedIndexMeta
@@ -1011,26 +1062,6 @@ inline void InvertedIndexMeta::set_allocated_stats(::greptime::v1::index::Invert
// @@protoc_insertion_point(field_set_allocated:greptime.v1.index.InvertedIndexMeta.stats) // @@protoc_insertion_point(field_set_allocated:greptime.v1.index.InvertedIndexMeta.stats)
} }
// uint64 segment_row_count = 9;
inline void InvertedIndexMeta::clear_segment_row_count() {
_impl_.segment_row_count_ = uint64_t{0u};
}
inline uint64_t InvertedIndexMeta::_internal_segment_row_count() const {
return _impl_.segment_row_count_;
}
inline uint64_t InvertedIndexMeta::segment_row_count() const {
// @@protoc_insertion_point(field_get:greptime.v1.index.InvertedIndexMeta.segment_row_count)
return _internal_segment_row_count();
}
inline void InvertedIndexMeta::_internal_set_segment_row_count(uint64_t value) {
_impl_.segment_row_count_ = value;
}
inline void InvertedIndexMeta::set_segment_row_count(uint64_t value) {
_internal_set_segment_row_count(value);
// @@protoc_insertion_point(field_set:greptime.v1.index.InvertedIndexMeta.segment_row_count)
}
// ------------------------------------------------------------------- // -------------------------------------------------------------------
// InvertedIndexStats // InvertedIndexStats
+216 -119
View File
@@ -78,6 +78,29 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
io.greptime.v1.index.Index.InvertedIndexMeta getMetasOrThrow( io.greptime.v1.index.Index.InvertedIndexMeta getMetasOrThrow(
java.lang.String key); java.lang.String key);
/**
* <pre>
* The total count of rows within the inverted index blob.
* This is used to determine the number of segments within the bitmap.
* </pre>
*
* <code>uint64 total_row_count = 2;</code>
* @return The totalRowCount.
*/
long getTotalRowCount();
/**
* <pre>
* The number of rows per group for bitmap indexing which determines how rows are
* batched for indexing. Each batch corresponds to a segment in the bitmap and allows
* for efficient retrieval during queries by reducing the search space.
* </pre>
*
* <code>uint64 segment_row_count = 3;</code>
* @return The segmentRowCount.
*/
long getSegmentRowCount();
} }
/** /**
* <pre> * <pre>
@@ -143,6 +166,16 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
metas__.getKey(), metas__.getValue()); metas__.getKey(), metas__.getValue());
break; break;
} }
case 16: {
totalRowCount_ = input.readUInt64();
break;
}
case 24: {
segmentRowCount_ = input.readUInt64();
break;
}
default: { default: {
if (!parseUnknownField( if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) { input, unknownFields, extensionRegistry, tag)) {
@@ -290,6 +323,39 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
return map.get(key); return map.get(key);
} }
public static final int TOTAL_ROW_COUNT_FIELD_NUMBER = 2;
private long totalRowCount_;
/**
* <pre>
* The total count of rows within the inverted index blob.
* This is used to determine the number of segments within the bitmap.
* </pre>
*
* <code>uint64 total_row_count = 2;</code>
* @return The totalRowCount.
*/
@java.lang.Override
public long getTotalRowCount() {
return totalRowCount_;
}
public static final int SEGMENT_ROW_COUNT_FIELD_NUMBER = 3;
private long segmentRowCount_;
/**
* <pre>
* The number of rows per group for bitmap indexing which determines how rows are
* batched for indexing. Each batch corresponds to a segment in the bitmap and allows
* for efficient retrieval during queries by reducing the search space.
* </pre>
*
* <code>uint64 segment_row_count = 3;</code>
* @return The segmentRowCount.
*/
@java.lang.Override
public long getSegmentRowCount() {
return segmentRowCount_;
}
private byte memoizedIsInitialized = -1; private byte memoizedIsInitialized = -1;
@java.lang.Override @java.lang.Override
public final boolean isInitialized() { public final boolean isInitialized() {
@@ -310,6 +376,12 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
internalGetMetas(), internalGetMetas(),
MetasDefaultEntryHolder.defaultEntry, MetasDefaultEntryHolder.defaultEntry,
1); 1);
if (totalRowCount_ != 0L) {
output.writeUInt64(2, totalRowCount_);
}
if (segmentRowCount_ != 0L) {
output.writeUInt64(3, segmentRowCount_);
}
unknownFields.writeTo(output); unknownFields.writeTo(output);
} }
@@ -329,6 +401,14 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
size += com.google.protobuf.CodedOutputStream size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, metas__); .computeMessageSize(1, metas__);
} }
if (totalRowCount_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeUInt64Size(2, totalRowCount_);
}
if (segmentRowCount_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeUInt64Size(3, segmentRowCount_);
}
size += unknownFields.getSerializedSize(); size += unknownFields.getSerializedSize();
memoizedSize = size; memoizedSize = size;
return size; return size;
@@ -346,6 +426,10 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
if (!internalGetMetas().equals( if (!internalGetMetas().equals(
other.internalGetMetas())) return false; other.internalGetMetas())) return false;
if (getTotalRowCount()
!= other.getTotalRowCount()) return false;
if (getSegmentRowCount()
!= other.getSegmentRowCount()) return false;
if (!unknownFields.equals(other.unknownFields)) return false; if (!unknownFields.equals(other.unknownFields)) return false;
return true; return true;
} }
@@ -361,6 +445,12 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
hash = (37 * hash) + METAS_FIELD_NUMBER; hash = (37 * hash) + METAS_FIELD_NUMBER;
hash = (53 * hash) + internalGetMetas().hashCode(); hash = (53 * hash) + internalGetMetas().hashCode();
} }
hash = (37 * hash) + TOTAL_ROW_COUNT_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getTotalRowCount());
hash = (37 * hash) + SEGMENT_ROW_COUNT_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getSegmentRowCount());
hash = (29 * hash) + unknownFields.hashCode(); hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash; memoizedHashCode = hash;
return hash; return hash;
@@ -522,6 +612,10 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
public Builder clear() { public Builder clear() {
super.clear(); super.clear();
internalGetMutableMetas().clear(); internalGetMutableMetas().clear();
totalRowCount_ = 0L;
segmentRowCount_ = 0L;
return this; return this;
} }
@@ -551,6 +645,8 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
int from_bitField0_ = bitField0_; int from_bitField0_ = bitField0_;
result.metas_ = internalGetMetas(); result.metas_ = internalGetMetas();
result.metas_.makeImmutable(); result.metas_.makeImmutable();
result.totalRowCount_ = totalRowCount_;
result.segmentRowCount_ = segmentRowCount_;
onBuilt(); onBuilt();
return result; return result;
} }
@@ -601,6 +697,12 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
if (other == io.greptime.v1.index.Index.InvertedIndexMetas.getDefaultInstance()) return this; if (other == io.greptime.v1.index.Index.InvertedIndexMetas.getDefaultInstance()) return this;
internalGetMutableMetas().mergeFrom( internalGetMutableMetas().mergeFrom(
other.internalGetMetas()); other.internalGetMetas());
if (other.getTotalRowCount() != 0L) {
setTotalRowCount(other.getTotalRowCount());
}
if (other.getSegmentRowCount() != 0L) {
setSegmentRowCount(other.getSegmentRowCount());
}
this.mergeUnknownFields(other.unknownFields); this.mergeUnknownFields(other.unknownFields);
onChanged(); onChanged();
return this; return this;
@@ -796,6 +898,101 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
.putAll(values); .putAll(values);
return this; return this;
} }
private long totalRowCount_ ;
/**
* <pre>
* The total count of rows within the inverted index blob.
* This is used to determine the number of segments within the bitmap.
* </pre>
*
* <code>uint64 total_row_count = 2;</code>
* @return The totalRowCount.
*/
@java.lang.Override
public long getTotalRowCount() {
return totalRowCount_;
}
/**
* <pre>
* The total count of rows within the inverted index blob.
* This is used to determine the number of segments within the bitmap.
* </pre>
*
* <code>uint64 total_row_count = 2;</code>
* @param value The totalRowCount to set.
* @return This builder for chaining.
*/
public Builder setTotalRowCount(long value) {
totalRowCount_ = value;
onChanged();
return this;
}
/**
* <pre>
* The total count of rows within the inverted index blob.
* This is used to determine the number of segments within the bitmap.
* </pre>
*
* <code>uint64 total_row_count = 2;</code>
* @return This builder for chaining.
*/
public Builder clearTotalRowCount() {
totalRowCount_ = 0L;
onChanged();
return this;
}
private long segmentRowCount_ ;
/**
* <pre>
* The number of rows per group for bitmap indexing which determines how rows are
* batched for indexing. Each batch corresponds to a segment in the bitmap and allows
* for efficient retrieval during queries by reducing the search space.
* </pre>
*
* <code>uint64 segment_row_count = 3;</code>
* @return The segmentRowCount.
*/
@java.lang.Override
public long getSegmentRowCount() {
return segmentRowCount_;
}
/**
* <pre>
* The number of rows per group for bitmap indexing which determines how rows are
* batched for indexing. Each batch corresponds to a segment in the bitmap and allows
* for efficient retrieval during queries by reducing the search space.
* </pre>
*
* <code>uint64 segment_row_count = 3;</code>
* @param value The segmentRowCount to set.
* @return This builder for chaining.
*/
public Builder setSegmentRowCount(long value) {
segmentRowCount_ = value;
onChanged();
return this;
}
/**
* <pre>
* The number of rows per group for bitmap indexing which determines how rows are
* batched for indexing. Each batch corresponds to a segment in the bitmap and allows
* for efficient retrieval during queries by reducing the search space.
* </pre>
*
* <code>uint64 segment_row_count = 3;</code>
* @return This builder for chaining.
*/
public Builder clearSegmentRowCount() {
segmentRowCount_ = 0L;
onChanged();
return this;
}
@java.lang.Override @java.lang.Override
public final Builder setUnknownFields( public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) { final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -962,18 +1159,6 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
* <code>.greptime.v1.index.InvertedIndexStats stats = 8;</code> * <code>.greptime.v1.index.InvertedIndexStats stats = 8;</code>
*/ */
io.greptime.v1.index.Index.InvertedIndexStatsOrBuilder getStatsOrBuilder(); io.greptime.v1.index.Index.InvertedIndexStatsOrBuilder getStatsOrBuilder();
/**
* <pre>
* The number of rows per group for bitmap indexing which determines how rows are
* batched for indexing. Each batch corresponds to a segment in the bitmap and allows
* for efficient retrieval during queries by reducing the search space.
* </pre>
*
* <code>uint64 segment_row_count = 9;</code>
* @return The segmentRowCount.
*/
long getSegmentRowCount();
} }
/** /**
* <pre> * <pre>
@@ -1074,11 +1259,6 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
break; break;
} }
case 72: {
segmentRowCount_ = input.readUInt64();
break;
}
default: { default: {
if (!parseUnknownField( if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) { input, unknownFields, extensionRegistry, tag)) {
@@ -1290,23 +1470,6 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
return getStats(); return getStats();
} }
public static final int SEGMENT_ROW_COUNT_FIELD_NUMBER = 9;
private long segmentRowCount_;
/**
* <pre>
* The number of rows per group for bitmap indexing which determines how rows are
* batched for indexing. Each batch corresponds to a segment in the bitmap and allows
* for efficient retrieval during queries by reducing the search space.
* </pre>
*
* <code>uint64 segment_row_count = 9;</code>
* @return The segmentRowCount.
*/
@java.lang.Override
public long getSegmentRowCount() {
return segmentRowCount_;
}
private byte memoizedIsInitialized = -1; private byte memoizedIsInitialized = -1;
@java.lang.Override @java.lang.Override
public final boolean isInitialized() { public final boolean isInitialized() {
@@ -1345,9 +1508,6 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
if (stats_ != null) { if (stats_ != null) {
output.writeMessage(8, getStats()); output.writeMessage(8, getStats());
} }
if (segmentRowCount_ != 0L) {
output.writeUInt64(9, segmentRowCount_);
}
unknownFields.writeTo(output); unknownFields.writeTo(output);
} }
@@ -1388,10 +1548,6 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
size += com.google.protobuf.CodedOutputStream size += com.google.protobuf.CodedOutputStream
.computeMessageSize(8, getStats()); .computeMessageSize(8, getStats());
} }
if (segmentRowCount_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeUInt64Size(9, segmentRowCount_);
}
size += unknownFields.getSerializedSize(); size += unknownFields.getSerializedSize();
memoizedSize = size; memoizedSize = size;
return size; return size;
@@ -1426,8 +1582,6 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
if (!getStats() if (!getStats()
.equals(other.getStats())) return false; .equals(other.getStats())) return false;
} }
if (getSegmentRowCount()
!= other.getSegmentRowCount()) return false;
if (!unknownFields.equals(other.unknownFields)) return false; if (!unknownFields.equals(other.unknownFields)) return false;
return true; return true;
} }
@@ -1459,9 +1613,6 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
hash = (37 * hash) + STATS_FIELD_NUMBER; hash = (37 * hash) + STATS_FIELD_NUMBER;
hash = (53 * hash) + getStats().hashCode(); hash = (53 * hash) + getStats().hashCode();
} }
hash = (37 * hash) + SEGMENT_ROW_COUNT_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getSegmentRowCount());
hash = (29 * hash) + unknownFields.hashCode(); hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash; memoizedHashCode = hash;
return hash; return hash;
@@ -1619,8 +1770,6 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
stats_ = null; stats_ = null;
statsBuilder_ = null; statsBuilder_ = null;
} }
segmentRowCount_ = 0L;
return this; return this;
} }
@@ -1659,7 +1808,6 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
} else { } else {
result.stats_ = statsBuilder_.build(); result.stats_ = statsBuilder_.build();
} }
result.segmentRowCount_ = segmentRowCount_;
onBuilt(); onBuilt();
return result; return result;
} }
@@ -1733,9 +1881,6 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
if (other.hasStats()) { if (other.hasStats()) {
mergeStats(other.getStats()); mergeStats(other.getStats());
} }
if (other.getSegmentRowCount() != 0L) {
setSegmentRowCount(other.getSegmentRowCount());
}
this.mergeUnknownFields(other.unknownFields); this.mergeUnknownFields(other.unknownFields);
onChanged(); onChanged();
return this; return this;
@@ -2282,55 +2427,6 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
} }
return statsBuilder_; return statsBuilder_;
} }
private long segmentRowCount_ ;
/**
* <pre>
* The number of rows per group for bitmap indexing which determines how rows are
* batched for indexing. Each batch corresponds to a segment in the bitmap and allows
* for efficient retrieval during queries by reducing the search space.
* </pre>
*
* <code>uint64 segment_row_count = 9;</code>
* @return The segmentRowCount.
*/
@java.lang.Override
public long getSegmentRowCount() {
return segmentRowCount_;
}
/**
* <pre>
* The number of rows per group for bitmap indexing which determines how rows are
* batched for indexing. Each batch corresponds to a segment in the bitmap and allows
* for efficient retrieval during queries by reducing the search space.
* </pre>
*
* <code>uint64 segment_row_count = 9;</code>
* @param value The segmentRowCount to set.
* @return This builder for chaining.
*/
public Builder setSegmentRowCount(long value) {
segmentRowCount_ = value;
onChanged();
return this;
}
/**
* <pre>
* The number of rows per group for bitmap indexing which determines how rows are
* batched for indexing. Each batch corresponds to a segment in the bitmap and allows
* for efficient retrieval during queries by reducing the search space.
* </pre>
*
* <code>uint64 segment_row_count = 9;</code>
* @return This builder for chaining.
*/
public Builder clearSegmentRowCount() {
segmentRowCount_ = 0L;
onChanged();
return this;
}
@java.lang.Override @java.lang.Override
public final Builder setUnknownFields( public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) { final com.google.protobuf.UnknownFieldSet unknownFields) {
@@ -3212,23 +3308,24 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
static { static {
java.lang.String[] descriptorData = { java.lang.String[] descriptorData = {
"\n&greptime/v1/index/inverted_index.proto" + "\n&greptime/v1/index/inverted_index.proto" +
"\022\021greptime.v1.index\"\251\001\n\022InvertedIndexMet" + "\022\021greptime.v1.index\"\335\001\n\022InvertedIndexMet" +
"as\022?\n\005metas\030\001 \003(\01320.greptime.v1.index.In" + "as\022?\n\005metas\030\001 \003(\01320.greptime.v1.index.In" +
"vertedIndexMetas.MetasEntry\032R\n\nMetasEntr" + "vertedIndexMetas.MetasEntry\022\027\n\017total_row" +
"y\022\013\n\003key\030\001 \001(\t\0223\n\005value\030\002 \001(\0132$.greptime" + "_count\030\002 \001(\004\022\031\n\021segment_row_count\030\003 \001(\004\032" +
".v1.index.InvertedIndexMeta:\0028\001\"\222\002\n\021Inve" + "R\n\nMetasEntry\022\013\n\003key\030\001 \001(\t\0223\n\005value\030\002 \001(" +
"rtedIndexMeta\022\014\n\004name\030\001 \001(\t\022\023\n\013base_offs" + "\0132$.greptime.v1.index.InvertedIndexMeta:" +
"et\030\002 \001(\004\022\033\n\023inverted_index_size\030\003 \001(\004\022\033\n" + "\0028\001\"\367\001\n\021InvertedIndexMeta\022\014\n\004name\030\001 \001(\t\022" +
"\023relative_fst_offset\030\004 \001(\r\022\020\n\010fst_size\030\005" + "\023\n\013base_offset\030\002 \001(\004\022\033\n\023inverted_index_s" +
" \001(\r\022#\n\033relative_null_bitmap_offset\030\006 \001(" + "ize\030\003 \001(\004\022\033\n\023relative_fst_offset\030\004 \001(\r\022\020" +
"\r\022\030\n\020null_bitmap_size\030\007 \001(\r\0224\n\005stats\030\010 \001" + "\n\010fst_size\030\005 \001(\r\022#\n\033relative_null_bitmap" +
"(\0132%.greptime.v1.index.InvertedIndexStat" + "_offset\030\006 \001(\r\022\030\n\020null_bitmap_size\030\007 \001(\r\022" +
"s\022\031\n\021segment_row_count\030\t \001(\004\"f\n\022Inverted" + "4\n\005stats\030\010 \001(\0132%.greptime.v1.index.Inver" +
"IndexStats\022\022\n\nnull_count\030\001 \001(\004\022\026\n\016distin" + "tedIndexStats\"f\n\022InvertedIndexStats\022\022\n\nn" +
"ct_count\030\002 \001(\004\022\021\n\tmin_value\030\003 \001(\014\022\021\n\tmax" + "ull_count\030\001 \001(\004\022\026\n\016distinct_count\030\002 \001(\004\022" +
"_value\030\004 \001(\014BZ\n\024io.greptime.v1.indexB\005In" + "\021\n\tmin_value\030\003 \001(\014\022\021\n\tmax_value\030\004 \001(\014BZ\n" +
"dexZ;github.com/GreptimeTeam/greptime-pr" + "\024io.greptime.v1.indexB\005IndexZ;github.com" +
"oto/go/greptime/v1/indexb\006proto3" "/GreptimeTeam/greptime-proto/go/greptime" +
"/v1/indexb\006proto3"
}; };
descriptor = com.google.protobuf.Descriptors.FileDescriptor descriptor = com.google.protobuf.Descriptors.FileDescriptor
.internalBuildGeneratedFileFrom(descriptorData, .internalBuildGeneratedFileFrom(descriptorData,
@@ -3239,7 +3336,7 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
internal_static_greptime_v1_index_InvertedIndexMetas_fieldAccessorTable = new internal_static_greptime_v1_index_InvertedIndexMetas_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_greptime_v1_index_InvertedIndexMetas_descriptor, internal_static_greptime_v1_index_InvertedIndexMetas_descriptor,
new java.lang.String[] { "Metas", }); new java.lang.String[] { "Metas", "TotalRowCount", "SegmentRowCount", });
internal_static_greptime_v1_index_InvertedIndexMetas_MetasEntry_descriptor = internal_static_greptime_v1_index_InvertedIndexMetas_MetasEntry_descriptor =
internal_static_greptime_v1_index_InvertedIndexMetas_descriptor.getNestedTypes().get(0); internal_static_greptime_v1_index_InvertedIndexMetas_descriptor.getNestedTypes().get(0);
internal_static_greptime_v1_index_InvertedIndexMetas_MetasEntry_fieldAccessorTable = new internal_static_greptime_v1_index_InvertedIndexMetas_MetasEntry_fieldAccessorTable = new
@@ -3251,7 +3348,7 @@ io.greptime.v1.index.Index.InvertedIndexMeta defaultValue);
internal_static_greptime_v1_index_InvertedIndexMeta_fieldAccessorTable = new internal_static_greptime_v1_index_InvertedIndexMeta_fieldAccessorTable = new
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
internal_static_greptime_v1_index_InvertedIndexMeta_descriptor, internal_static_greptime_v1_index_InvertedIndexMeta_descriptor,
new java.lang.String[] { "Name", "BaseOffset", "InvertedIndexSize", "RelativeFstOffset", "FstSize", "RelativeNullBitmapOffset", "NullBitmapSize", "Stats", "SegmentRowCount", }); new java.lang.String[] { "Name", "BaseOffset", "InvertedIndexSize", "RelativeFstOffset", "FstSize", "RelativeNullBitmapOffset", "NullBitmapSize", "Stats", });
internal_static_greptime_v1_index_InvertedIndexStats_descriptor = internal_static_greptime_v1_index_InvertedIndexStats_descriptor =
getDescriptor().getMessageTypes().get(2); getDescriptor().getMessageTypes().get(2);
internal_static_greptime_v1_index_InvertedIndexStats_fieldAccessorTable = new internal_static_greptime_v1_index_InvertedIndexStats_fieldAccessorTable = new
+9 -5
View File
@@ -26,6 +26,15 @@ message InvertedIndexMetas {
// A map of tag names to their respective metadata corresponding to an individual // A map of tag names to their respective metadata corresponding to an individual
// inverted index within the inverted index blob. // inverted index within the inverted index blob.
map<string, InvertedIndexMeta> metas = 1; map<string, InvertedIndexMeta> metas = 1;
// The total count of rows within the inverted index blob.
// This is used to determine the number of segments within the bitmap.
uint64 total_row_count = 2;
// The number of rows per group for bitmap indexing which determines how rows are
// batched for indexing. Each batch corresponds to a segment in the bitmap and allows
// for efficient retrieval during queries by reducing the search space.
uint64 segment_row_count = 3;
} }
// InvertedIndexMeta contains the metadata for a specific tag's inverted index. // InvertedIndexMeta contains the metadata for a specific tag's inverted index.
@@ -56,11 +65,6 @@ message InvertedIndexMeta {
// Statistical information about the tag's inverted index. // Statistical information about the tag's inverted index.
InvertedIndexStats stats = 8; InvertedIndexStats stats = 8;
// The number of rows per group for bitmap indexing which determines how rows are
// batched for indexing. Each batch corresponds to a segment in the bitmap and allows
// for efficient retrieval during queries by reducing the search space.
uint64 segment_row_count = 9;
} }
// InvertedIndexStats provides statistical data on a tag's inverted index. // InvertedIndexStats provides statistical data on a tag's inverted index.