Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] feat(storage): use dict encoding #715

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/storage/secondary/block/dict_block_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ use std::collections::HashMap;
use std::hash::Hash;

use bytes::BufMut;
use risinglight_proto::rowset::block_statistics::BlockStatisticsType;
use risinglight_proto::rowset::BlockStatistics;

use super::PlainPrimitiveBlockBuilder;
Expand Down Expand Up @@ -79,8 +80,12 @@ where
}

fn get_statistics(&self) -> Vec<BlockStatistics> {
// Tracking issue: https://github.com/risinglightdb/risinglight/issues/674
vec![]
let distinct_count = self.dict_map.len() as u64;
let distinct_stat = BlockStatistics {
block_stat_type: BlockStatisticsType::DistinctValue as i32,
body: distinct_count.to_le_bytes().to_vec(),
};
vec![distinct_stat]
}

fn should_finish(&self, next_item: &Option<&A::Item>) -> bool {
Expand Down
30 changes: 29 additions & 1 deletion src/storage/secondary/column/primitive_column_factory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ use super::super::{
};
use super::{BlockIteratorFactory, ConcreteColumnIterator};
use crate::array::Array;
use crate::storage::secondary::block::{decode_rle_block, FakeBlockIterator, RleBlockIterator};
use crate::array::ArrayBuilder;
use crate::storage::secondary::block::{decode_rle_block, decode_dict_block,DictBlockIterator, FakeBlockIterator, RleBlockIterator};
use crate::types::{Date, Interval, F64};

/// All supported block iterators for primitive types.
Expand All @@ -21,6 +22,8 @@ pub enum PrimitiveBlockIteratorImpl<T: PrimitiveFixedWidthEncode> {
PlainNullable(PlainPrimitiveNullableBlockIterator<T>),
RunLength(RleBlockIterator<T::ArrayType, PlainPrimitiveBlockIterator<T>>),
RleNullable(RleBlockIterator<T::ArrayType, PlainPrimitiveNullableBlockIterator<T>>),
Dictionary(DictBlockIterator<T::ArrayType, PlainPrimitiveBlockIterator<T>>),
DictNullable(DictBlockIterator<T::ArrayType, PlainPrimitiveNullableBlockIterator<T>>),
Fake(FakeBlockIterator<T::ArrayType>),
}

Expand All @@ -35,6 +38,8 @@ impl<T: PrimitiveFixedWidthEncode> BlockIterator<T::ArrayType> for PrimitiveBloc
Self::PlainNullable(it) => it.next_batch(expected_size, builder),
Self::RunLength(it) => it.next_batch(expected_size, builder),
Self::RleNullable(it) => it.next_batch(expected_size, builder),
Self::Dictionary(it) => it.next_batch(expected_size, builder),
Self::DictNullable(it) => it.next_batch(expected_size, builder),
Self::Fake(it) => it.next_batch(expected_size, builder),
}
}
Expand All @@ -45,6 +50,8 @@ impl<T: PrimitiveFixedWidthEncode> BlockIterator<T::ArrayType> for PrimitiveBloc
Self::PlainNullable(it) => it.skip(cnt),
Self::RunLength(it) => it.skip(cnt),
Self::RleNullable(it) => it.skip(cnt),
Self::Dictionary(it) => it.skip(cnt),
Self::DictNullable(it) => it.skip(cnt),
Self::Fake(it) => it.skip(cnt),
}
}
Expand All @@ -55,6 +62,8 @@ impl<T: PrimitiveFixedWidthEncode> BlockIterator<T::ArrayType> for PrimitiveBloc
Self::PlainNullable(it) => it.remaining_items(),
Self::RunLength(it) => it.remaining_items(),
Self::RleNullable(it) => it.remaining_items(),
Self::Dictionary(it) => it.remaining_items(),
Self::DictNullable(it) => it.remaining_items(),
Self::Fake(it) => it.remaining_items(),
}
}
Expand Down Expand Up @@ -124,6 +133,25 @@ impl<T: PrimitiveFixedWidthEncode> BlockIteratorFactory<T::ArrayType>
);
PrimitiveBlockIteratorImpl::RleNullable(it)
}
BlockType::Dictionary => {
let (rle_num, block_data, rle_data) = decode_dict_block(block);
let mut block_builder = <<T as PrimitiveFixedWidthEncode>::ArrayType as Array>::Builder::new();
let mut block_iter = PlainPrimitiveBlockIterator::<T>::new(block_data, rle_num);
let it = DictBlockIterator::<T::ArrayType, PlainPrimitiveBlockIterator<T>>::new(
&mut block_builder, &mut block_iter, rle_data, rle_num,
);
PrimitiveBlockIteratorImpl::Dictionary(it)
}
BlockType::DictNullable => {
let (rle_num, block_data, rle_data) = decode_dict_block(block);
let mut block_builder = <<T as PrimitiveFixedWidthEncode>::ArrayType as Array>::Builder::new();
let mut block_iter = PlainPrimitiveNullableBlockIterator::<T>::new(block_data, rle_num);
let it =
DictBlockIterator::<T::ArrayType, PlainPrimitiveNullableBlockIterator<T>>::new(
&mut block_builder, &mut block_iter, rle_data, rle_num,
);
PrimitiveBlockIteratorImpl::DictNullable(it)
}
_ => todo!(),
};
it.skip(start_pos - index.first_rowid as usize);
Expand Down
4 changes: 2 additions & 2 deletions src/storage/secondary/compactor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ impl Compactor {
let mut builder = if distinct_value < row_count / 5 {
let mut column_options =
ColumnBuilderOptions::from_storage_options(&table.storage_options);
column_options.encode_type = EncodeType::RunLength;
column_options.encode_type = EncodeType::Dictionary;
RowsetBuilder::new(table.columns.clone(), column_options)
} else {
RowsetBuilder::new(
Expand Down Expand Up @@ -223,7 +223,7 @@ impl Compactor {
.txn_mgr
.try_lock_for_compaction(table.table_id())
{
if let Err(err) = self.compact_table(&pin_version.snapshot, table).await {
if let Err(err) = self.compact_table(&pin_version.snapshot, table).await {
warn!("failed to compact: {:?}", err);
}
}
Expand Down