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

feat: add disktable status #1788

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5fb7847
add test for disktable gc
Apr 3, 2022
83da99f
add more test for disktable gc
Apr 17, 2022
ed587a0
Merge remote-tracking branch 'upstream/main' into feat/add_disk_statu…
Apr 20, 2022
ab06806
fix wreorder
Apr 27, 2022
aa8bb52
finish latest idxcnt
Apr 28, 2022
c132afa
add new compaction filter and factory
May 2, 2022
3545a0e
add bloomfilter
May 6, 2022
0a10b41
adding bloomFilter in compaction filter
May 8, 2022
a510813
add pk_cnt to absolute
May 8, 2022
9de7c39
add pk_cnt to latest
May 9, 2022
f455161
fix abs and lat ttl in one inner_index
May 9, 2022
b0181ee
update BloomFilter
May 10, 2022
253ede9
update test
May 11, 2022
b9a6914
add idxcnt in delete
May 11, 2022
31e602a
update delete and reformat
May 12, 2022
0eb8d6f
Merge remote-tracking branch 'upstream/main' into feat/add_disk_statu…
May 12, 2022
4ffa37c
remove whitespace
May 12, 2022
ae99943
fix reviewDog
May 12, 2022
da374a9
fix reviewDog
May 12, 2022
3cd7fac
deal with AbsAndLat and AbsOrLat
May 13, 2022
398c66b
Merge remote-tracking branch 'upstream/main' into feat/add_disk_statu…
Jun 28, 2022
889b499
use gflags in bloom_filter
Leowner Jun 29, 2022
7c8db5f
move back tests about GetRecordCnt
Leowner Jul 12, 2022
933750c
skip 2 tests
Leowner Jul 12, 2022
7c0e0ec
Merge remote-tracking branch 'upstream/main' into feat/add_disk_statu…
Leowner Jul 12, 2022
58dc383
move back tests in disk_table_test
Leowner Jul 12, 2022
40f20e3
rename some functions and methods
Leowner Jul 21, 2022
cafba7a
Merge commit '8c5f58e8d18d14ce4c8bfab6d9b0c1ed575ba39c' into feat/add…
Leowner Jul 21, 2022
56bdd39
Merge commit 'b40dd3e12b5d69c075a91f4d309d2b727e562193' into feat/add…
Leowner Oct 15, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/flags.cc
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,9 @@ DEFINE_int32(snapshot_pool_size, 1, "the size of tablet thread pool for making s
DEFINE_uint32(load_index_max_wait_time, 120 * 60 * 1000,
"config the max wait time of load index. unit is milliseconds");

DEFINE_uint32(disk_stat_bloom_filter_bitset_size, 10000, "config the size of bitset in bloom filter");
DEFINE_uint32(disk_stat_bloom_filter_hash_seed, 7, "config the count of hash seed in bloom filter, max 7");

DEFINE_string(recycle_bin_root_path, "/tmp/recycle", "specify the root path of recycle bin");
DEFINE_string(recycle_bin_ssd_root_path, "", "specify the root path of recycle bin in ssd");
DEFINE_string(recycle_bin_hdd_root_path, "", "specify the root path of recycle bin in hdd");
Expand Down
Loading