Reidddddd commented on a change in pull request #1654:
URL: https://github.com/apache/hbase/pull/1654#discussion_r419943429
##########
File path:
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MultiVersionConcurrencyControl.java
##########
@@ -225,11 +233,12 @@ void waitForRead(WriteEntry e) {
synchronized (readWaiters) {
while (readPoint.get() < e.getWriteNumber()) {
if (count % 100 == 0 && count > 0) {
- LOG.warn("STUCK: " + this);
+ long totalWaitTillNow = READPOINT_ADVANCE_WAIT_TIME * count;
+ LOG.warn("STUCK for : " + totalWaitTillNow + " millis. " + this);
Review comment:
I mean it's ok to keep the same, since it is already in master.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]