-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Ingest sst files rather than their keyvalue content. #12079
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
base: main
Are you sure you want to change the base?
Changes from all commits
b8d51f9
a7e7708
9a6cc47
e46aba1
90c0f3a
0685a3d
82a5412
34bc721
0a9f641
142d0be
580cedf
3e74942
7860adb
021e63e
5f79d34
339454e
27ed416
b01100a
ccaefec
fbef2af
68fcae0
c0d3ec3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ function start_fdb_cluster { | |
"${local_build_dir}" \ | ||
--knobs "${knobs}" \ | ||
--stateless_count 1 --replication_count 1 --logs_count 1 \ | ||
--storage_count "${ss_count}" --storage_type ssd \ | ||
--storage_count "${ss_count}" --storage_type ssd-rocksdb-v1 \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we want to randomly choose between sqlite and rocksdb? for testing coverage There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Dunno. rocksdb is the standard, not sqllite. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We want bulkload feature to stably work for both sqlite and rocksdb There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let me make a new PR for this that allows setting of storage engine to use in ctest. |
||
--dump_pids on \ | ||
> >(tee "${output}") \ | ||
2> >(tee "${output}" >&2) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you do
if (isSimulated) BULK_LOAD_USE_SST_INGEST = deterministicRandom()->coinflip()
to improve the test coverage?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done