Skip to content

Commit

Permalink
Retry for range exceed error (#2774) (#2777)
Browse files Browse the repository at this point in the history
* print range

* update version

* retry once

* RC2

* Revert "RC2"

This reverts commit 1e38743.

* opt

* revert version

Co-authored-by: shi yuhang <52435083+shiyuhang0@users.noreply.github.com>
  • Loading branch information
ti-chi-bot and shiyuhang0 authored Mar 28, 2024
1 parent c82c4c7 commit df1dc00
Showing 1 changed file with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import com.pingcap.tikv.operation.SchemaInfer;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
Expand Down Expand Up @@ -212,6 +213,7 @@ private SelectResponse process(RegionTask regionTask) {

// In case of one region task spilt into several others, we ues a queue to properly handle all
// the remaining tasks.
int retryCount = 0;
while (!remainTasks.isEmpty()) {
RegionTask task = remainTasks.poll();
if (task == null) {
Expand Down Expand Up @@ -282,6 +284,37 @@ private SelectResponse process(RegionTask regionTask) {
+ remainTasks.size()
+ " tasks not executed due to",
e);

// We guess range may exceed bound in corner case. Since it is
// hard to find the root cause, we just log it and retry once here.
// We use client-java's splitRangeByRegion method to avoid exceed bound issue. It seems this
// method can split range correctly.
if (e.getMessage().contains("Request range exceeds bound")) {
String regionSt = Arrays.toString(region.getStartKey().toByteArray());
String regionEd = Arrays.toString(region.getEndKey().toByteArray());
Long storeId = store == null ? 0 : store.getId();
logger.warn(
String.format(
"region task failed. host:%s region:%s, store: %d. region start key: %s, region end key: %s",
task.getHost(), region.getId(), storeId, regionSt, regionEd));
logger.warn("start to print range");
for (Coprocessor.KeyRange range : ranges) {
logger.warn(
"Sending DAG request with range "
+ Arrays.toString(range.getStart().toByteArray())
+ " to "
+ Arrays.toString(range.getEnd().toByteArray()));
}
if (retryCount < 1) {
retryCount++;
remainTasks.addAll(
RangeSplitter.newSplitter(clientSession.getTiKVSession().getRegionManager())
.splitRangeByRegion(ranges, storeType));
logger.info(
"Re-splitting region task and retry once. Task count: " + remainTasks.size());
continue;
}
}
// Rethrow to upper levels
throw new RegionTaskException("Handle region task failed:", e);
}
Expand Down

0 comments on commit df1dc00

Please sign in to comment.