Skip to content

Commit

Permalink
HBASE-24282 'scanDetail' log message is missing when responseTooSlow …
Browse files Browse the repository at this point in the history
…happens on the first scan rpc call (#1604)

Signed-off-by: Guangxu Cheng <gxcheng@apache.org>
Signed-off-by: stack <stack@apache.org>
  • Loading branch information
songxincun authored and saintstack committed Apr 29, 2020
1 parent 8ccffc8 commit 2b4fbac
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -514,12 +514,15 @@ void logResponse(Message param, String methodName, String call, String tag,
responseInfo.put("param", stringifiedParam);
if (param instanceof ClientProtos.ScanRequest && rsRpcServices != null) {
ClientProtos.ScanRequest request = ((ClientProtos.ScanRequest) param);
String scanDetails;
if (request.hasScannerId()) {
long scannerId = request.getScannerId();
String scanDetails = rsRpcServices.getScanDetailsWithId(scannerId);
if (scanDetails != null) {
responseInfo.put("scandetails", scanDetails);
}
scanDetails = rsRpcServices.getScanDetailsWithId(scannerId);
} else {
scanDetails = rsRpcServices.getScanDetailsWithRequest(request);
}
if (scanDetails != null) {
responseInfo.put("scandetails", scanDetails);
}
}
if (param instanceof ClientProtos.MultiRequest) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1352,6 +1352,21 @@ public String getScanDetailsWithId(long scannerId) {
return builder.toString();
}

public String getScanDetailsWithRequest(ScanRequest request) {
try {
if (!request.hasRegion()) {
return null;
}
Region region = getRegion(request.getRegion());
StringBuilder builder = new StringBuilder();
builder.append("table: ").append(region.getRegionInfo().getTable().getNameAsString());
builder.append(" region: ").append(region.getRegionInfo().getRegionNameAsString());
return builder.toString();
} catch (IOException ignored) {
return null;
}
}

/**
* Get the vtime associated with the scanner.
* Currently the vtime is the number of "next" calls.
Expand Down

0 comments on commit 2b4fbac

Please sign in to comment.