We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Create a blackhole sink with sink_decouple enabled panics.
sink_decouple
No response
./risedev d and connect with psql
./risedev d
CREATE source s1 (seq_id bigint, user_id bigint, user_name varchar) WITH ( connector = 'datagen', fields.seq_id.kind = 'sequence', fields.seq_id.start = '1', fields.seq_id.end = '10000000', fields.user_id.kind = 'random', fields.user_id.min = '1', fields.user_id.max = '10000000', fields.user_name.kind = 'random', fields.user_name.length = '10', datagen.rows.per.second = '100000' ) format plain encode json; set sink_decouple=true; create sink sink from s1 with (connector = 'blackhole');
It panics soon with
thread 'risingwave-compaction' panicked at src/storage/src/hummock/compactor/shared_buffer_compact.rs:405:13: assertion failed: epoch < earliest_range_delete_which_can_see_key &&\n earliest_range_delete_which_can_see_key < pivot_last_delete_epoch
After disable merge imm, it panics with
thread 'risingwave-compaction' panicked at src/storage/src/hummock/compactor/compactor_runner.rs:800:13: assertion failed: iter_key.epoch < earliest_range_delete_which_can_see_iter_key &&\n earliest_range_delete_which_can_see_iter_key < user_key_last_delete_epoch
After change both debug_assert condition from < to <=, it panics with
debug_assert
<
<=
thread 'risingwave-compaction' panicked at src/storage/src/hummock/sstable/block.rs:473:13: assertion `left == right` failed: epoch: 5204850519048192, table key: 18014398819715250 left: Equal right: Less
git commit e53c9f7
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
Create a blackhole sink with
sink_decouple
enabled panics.Error message/log
No response
To Reproduce
./risedev d
and connect with psqlIt panics soon with
After disable merge imm, it panics with
After change both
debug_assert
condition from<
to<=
, it panics withExpected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
git commit e53c9f7
Additional context
No response
The text was updated successfully, but these errors were encountered: