-
Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-27520 The potential delay of HDFS RPC in HRegion may cause data inconsistency #4916
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: master
Are you sure you want to change the base?
Conversation
|
💔 -1 overall
This message was automatically generated. |
|
🎊 +1 overall
This message was automatically generated. |
|
🎊 +1 overall
This message was automatically generated. |
|
🎊 +1 overall
This message was automatically generated. |
|
🎊 +1 overall
This message was automatically generated. |
|
💔 -1 overall
This message was automatically generated. |
| private final ConcurrentMap<TableName, TableState.State> tableName2State = | ||
| new ConcurrentHashMap<>(); | ||
|
|
||
| private final ConcurrentMap<TableName, Integer> creating = new ConcurrentHashMap<>(); |
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.
ConcurrentMap.newKeySet
| // XXX: this stage should be named as set table enabled, as now we will cache the | ||
| // descriptor after writing fs layout. | ||
| setEnabledState(env, getTableName()); | ||
| env.getMasterServices().getTableStateManager().finishCreating(getTableName()); |
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.
Actually, the sub procedure will be execute after this line has been executed, so the solution here can not solve the problem described in the issue...
No description provided.