-
Notifications
You must be signed in to change notification settings - Fork 47
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: Add classes that implements BTreeSortMergeGetOperation.Callback. #507
base: develop
Are you sure you want to change the base?
Conversation
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.
리뷰하였습니다.
import java.util.concurrent.atomic.AtomicInteger; | ||
import java.util.concurrent.locks.ReentrantLock; | ||
|
||
public class BTreeSMGetOperationCallback<T> |
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.
GlobalParams의 생성자의 인자들이 너무 많아서 줄이는 방향으로 수정되어야 할 것 같습니다.
lock과, processedSMGetCount는 Client쪽에서 사용되지 않는 필드이므로, 여기에 기본 필드로 두면 좋을 것 같습니다.
stopCollect, mergedTrim 변수도 마찬가지로 굳이 Client에 있을 필요가 없어서, GlobalParams의 기본 생성자에 인스턴스를 생성하여 전달해주거나, 기본 필드로 두고 생성해야 하겠습니다.
56ac7b7
to
0e9bb5e
Compare
0e9bb5e
to
de026fa
Compare
리뷰 반영했습니다. |
public static class GlobalParams<T> | ||
extends BaseBTreeSMGetOperationCallback.GlobalParams<T> { | ||
|
||
private final AtomicBoolean mergedTrim = new AtomicBoolean(false); |
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.
@uhm0311
mergedTrim을 BTreeSMGetOperationOldCallback의 필드로 이동하면 굳이 GlobalParam을 상속받지 않아도 될 것 같습니다.
추가로, lock, stopCollect, processedSMGetCount 필드도 BaseBTreeSMGetOperationCallback의 필드로 이동하는게 좋겠습니다.
위에 언급한 필드들은 개별 smget 연산에 관해서만 쓰이는 필드이기 때문에, 여러 smget 연산의 결과를 종합해서 결과를 도출하는 global param과 거리가 멀어보이는 param 같습니다.
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.
해당 필드들은 1회의 smget API 호출에 대해 1개만 존재해야 하는 필드들입니다. 여러 node로 분산되어 처리될 연산들의 결과끼리 sort merge하여 1개의 merged result가 필요하기 때문입니다. 이 분산된 연산들은 각자 하나의 콜백을 갖습니다. 여러 콜백에 하나만 필요하다는 의미로 Global이라는 이름을 붙여서 사용했습니다.
@uhm0311 @jhpark816 |
07918e6
to
ae2a82f
Compare
BTreeSortMergeGetOperation.Callback의 로직과 MultiOperationCallback의 로직이 맞는지 테스트 코드를 추가하기 위해 콜백을 class로 만들었습니다. class로 만들어진 콜백을 통해 테스트 코드를 작성하려고 합니다.
변경 사항은 다음과 같습니다.