-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
HBASE-28703 Data race in RecoveredEditsOutputSink while closing writers #6042
Conversation
🎊 +1 overall
This message was automatically generated. |
In local testing I see |
🎊 +1 overall
This message was automatically generated. |
Seems the link between jira and github PRs are broken or at least has a big lag... I've already opened a PR #6039 , which uses a ConcurrentLinkedQueue. But anyway, both approaches are fine, but while implementing, I found that in some cases we will add null to the splits list, which is not very good but for ArrayList this is not a problem. And better also open a backport PR against branch-2. Thanks. |
Ok I will move forward with this then. |
Backport to branch-2 here: #6045 |
…rs (#6042) Signed-off-by: Duo Zhang <zhangduo@apache.org>
Simple fix seemed enough.