-
Notifications
You must be signed in to change notification settings - Fork 16
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
INTERNAL: Fix a smget handling about trimmed result without bkey #286
base: develop
Are you sure you want to change the base?
Conversation
@namsic ๋ฆฌ๋ทฐ ๋ฐ๋๋๋ค. |
์ต์ commit ๊ธฐ์ค์ผ๋ก rebase ํ ๋ฒ ํด์ฃผ๋ฉด ์ข๊ฒ ์ต๋๋ค.
์ด๋ ๊ฒ ๋ณ๊ฒฝํด์ผ ํ๋ ์ด์ ์ ๋ํด ๊ฐ๋จํ ์ค๋ช ํด ์ฃผ๋ฉด ์ข๊ฒ ์ต๋๋ค. |
ํด๋น PR์ด ์กฐ๊ธ ์ค๋๋์ด ์์ธํ ๊ธฐ์ตํ๋ ค๋ฉด, ์กฐ๊ธ ์๊ฐ์ด ๊ฑธ๋ฆด ๊ฒ ๊ฐ์ต๋๋ค. ์๋์ ๋งํฌ์์ ๊ฐ๋จํ ์ค๋ช
๋์ด ์์ต๋๋ค.
eflag๋ก ์ธํด ๋ชจ๋ ๊ฐ์ด skip๋๋ ๊ฒฝ์ฐ, element๋ ์์ง๋ง Trimmed key๋ง ์กด์ฌํ๊ฒ ๋ฉ๋๋ค. ์๋ฒ์์ ์ ์กํ๋ Trimmed key์ bkey์ ํ์ ์ด ๋ค๋ฅผ ๊ฐ๋ฅ์ฑ์ ์๋ค๊ณ ์๊ฐํ์ฌ, ์ด๋ฅผ ์ ์ธํ๊ณ ์ฌ์ฉ์๊ฐ ์ง์ ํ bkey ํ์ ๊ณผ ์๋ฒ์ ์ ์ฅ๋ bkey ํ์ ๊ณผ ๋น๊ตํ ์ ์๋๋ก ๋ณ๊ฒฝํ ๊ฒ ๊ฐ์ต๋๋ค. |
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.
ํด๋น PR์ด ์กฐ๊ธ ์ค๋๋์ด ์์ธํ ๊ธฐ์ตํ๋ ค๋ฉด, ์กฐ๊ธ ์๊ฐ์ด ๊ฑธ๋ฆด ๊ฒ ๊ฐ์ต๋๋ค.
์๋์ ๋งํฌ์์ ๊ฐ๋จํ ์ค๋ช ๋์ด ์์ต๋๋ค.
์ด์์ ์ ํ ์์ธ๊ณผ PR์ ๋ณ๊ฒฝ๋ง์ผ๋ก๋ ์ ๋งค์นญ์ด ๋์ง ์์์ ๋ฌผ์์ต๋๋ค.
๋ฌธ์ ๊ฐ ์๊ธฐ๋ ์์ธ๊ณผ ๊ทธ ๋ฌธ์ ๋ฅผ ์ด๋ป๊ฒ ํด๊ฒฐํ๋ ค๊ณ ํ๋ ๊ฒ์ธ์ง ์กฐ๊ธ ๋ ํ์ด์ ์ค๋ช
ํด์ฃผ๋ฉด ์ข๊ฒ ์ต๋๋ค.
} else { | ||
comp_result= (prev_sub_key->bkey == curr_sub_key->bkey) ? 0 | ||
: (prev_sub_key->bkey < curr_sub_key->bkey) ? -1 : 1; | ||
if (merged->value_count > 0) { |
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.
์กฐ๊ฑด๋ฌธ์ ์๋์ ๊ฐ์ด ๋ณ๊ฒฝํ ์ ์๋์?
value_count๊ฐ 0์ด๋ฉด, trimed_keys๋ฅผ mergeํ์ง ์์์ผ ํ๋์?
if (merged->value_count == 0) {
should_merge = true;
} else if (merged->value_count < merged->count) {
/*
* compare sub_keys
*/
if (comp_result <= 0) {
should_merge = true;
}
}
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.
value_count๊ฐ 0์ด๋ฉด, trimed_keys๋ฅผ mergeํ์ง ์์์ผ ํ๋์?
์ ๋ชจ๋ฅด๊ฒ ๋ค์. ์ข ๋ ์ฌ๋ฌ๊ฐ์ง ์ํฉ์ ๊ณ ๋ คํด์ ๋ค์ ์ง์ผํ ๊ฒ ๊ฐ์ต๋๋ค.
๊ทธ๋ฌ๋ฏ๋ก ์ ์ ํด๋น PR์ ๋ณด๋ฅํ๊ฒ ์ต๋๋ค.
value_count == 0
์ธ ์ํฉ์์ should_merge๊ฐ ๋์ด์ผ ํ๋ค๋ ๊ฒ์
Trimed key๊ฐ ํ์ํ ํ์ํ Btree ๋ด ๋ฒ์ ์ค ์ต์์ฌ์ผ ํ๋ค๋ ๊ฒ์ด ๋ณด์ฅ๋์ด์ผ ํฉ๋๋ค.
โ Search Range โ
----- |--Not Trimmed--| |--Trimed--|
But, all skipped by eflag!
๐ Related Issue
โจ๏ธ What I did
PROTOCOL_ERROR
๋ฅผ ๋ฐํํ๋๋ก ๋ณ๊ฒฝํ์ต๋๋ค.PROTOCOL_ERROR
๋ฅผ ๋ฐํ๐ค Others