Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.3.1, 1.2.6, 2.0.0-alpha-3, 1.1.12
-
1.4.0, 1.3.2, 2.0.0-beta-1, 2.0.0, 1.2.7
-
None
-
None
-
Reviewed
Description
In branch-0.98 we have below codes to avoid accessing meta in parallel in HConnectionManager:
Result regionInfoRow; // This block guards against two threads trying to load the meta // region at the same time. The first will load the meta region and // the second will use the value that the first one found. if (useCache) { if (TableName.META_TABLE_NAME.equals(parentTable) && usePrefetch && getRegionCachePrefetch(tableName)) { synchronized (regionLockObject) { // Check the cache again for a hit in case some other thread made the // same query while we were waiting on the lock. ... } } ...
while in HBASE-10018 we removed such logic along with region-location-prefetching.
We regard this as an unexpected behavior change and observed below phenomenon in our product env:
1. Unnecessary connection setup to meta when multiple threads locating region in a client process
2. Priority handler of the RS holding meta region exhausted, application keep retrying and cause a vicious circle
To resolve this problem, we propose to add the userRegionLock back and keep the behavior in accordance with 0.98
Attachments
Attachments
Issue Links
- is broken by
-
HBASE-10018 Remove region location prefetching
- Closed
- relates to
-
HBASE-27764 scan table is slow when enter hbase shell first time
- Open