com.pingcap.tikv.util.ClientUtils Maven / Gradle / Ivy
/*
* Copyright 2020 PingCAP, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.pingcap.tikv.util;
import com.google.protobuf.ByteString;
import com.pingcap.tikv.exception.TiKVException;
import com.pingcap.tikv.region.RegionManager;
import com.pingcap.tikv.region.RegionStoreClient;
import com.pingcap.tikv.region.TiRegion;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.Set;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorCompletionService;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.stream.Stream;
import org.tikv.kvproto.Kvrpcpb;
import org.tikv.kvproto.Kvrpcpb.KvPair;
public class ClientUtils {
/**
* Append batch to list and split them according to batch limit
*
* @param backOffer backOffer
* @param batches a grouped batch
* @param region region
* @param keys keys
* @param batchMaxSizeInBytes batch max limit
*/
public static void appendBatches(
BackOffer backOffer,
List batches,
TiRegion region,
List keys,
int batchMaxSizeInBytes,
int batchLimit) {
if (keys == null) {
return;
}
int len = keys.size();
for (int start = 0, end; start < len; start = end) {
int size = 0;
for (end = start;
end < len && size < batchMaxSizeInBytes && end - start < batchLimit;
end++) {
size += keys.get(end).size();
}
Batch batch = new Batch(backOffer, region, keys.subList(start, end));
batches.add(batch);
}
}
/**
* Append batch to list and split them according to batch limit
*
* @param backOffer backOffer
* @param batches a grouped batch
* @param region region
* @param keys keys
* @param values values
* @param batchMaxSizeInBytes batch max limit
*/
public static void appendBatches(
BackOffer backOffer,
List batches,
TiRegion region,
List keys,
List values,
int batchMaxSizeInBytes,
int batchLimit) {
if (keys == null) {
return;
}
int len = keys.size();
for (int start = 0, end; start < len; start = end) {
int size = 0;
for (end = start;
end < len && size < batchMaxSizeInBytes && end - start < batchLimit;
end++) {
size += keys.get(end).size();
size += values.get(end).size();
}
Batch batch =
new Batch(backOffer, region, keys.subList(start, end), values.subList(start, end));
batches.add(batch);
}
}
public static List getBatches(
BackOffer backOffer,
List keys,
int batchSize,
int batchLimit,
RegionStoreClient.RegionStoreClientBuilder clientBuilder) {
Map> groupKeys =
groupKeysByRegion(clientBuilder.getRegionManager(), keys, backOffer);
List retryBatches = new ArrayList<>();
for (Map.Entry> entry : groupKeys.entrySet()) {
appendBatches(
backOffer, retryBatches, entry.getKey(), entry.getValue(), batchSize, batchLimit);
}
return retryBatches;
}
public static Map> groupKeysByRegion(
RegionManager regionManager, Set keys, BackOffer backoffer) {
return groupKeysByRegion(regionManager, new ArrayList<>(keys), backoffer, true);
}
public static Map> groupKeysByRegion(
RegionManager regionManager, List keys, BackOffer backoffer) {
return groupKeysByRegion(regionManager, keys, backoffer, false);
}
/**
* Group by list of keys according to its region
*
* @param keys keys
* @return a mapping of keys and their region
*/
public static Map> groupKeysByRegion(
RegionManager regionManager, List keys, BackOffer backoffer, boolean sorted) {
Map> groups = new HashMap<>();
Stream keyStream = keys.stream();
if (!sorted) {
keyStream =
keys.stream()
.sorted(
(k1, k2) -> FastByteComparisons.compareTo(k1.toByteArray(), k2.toByteArray()));
}
TiRegion lastRegion = null;
for (ByteString key : keyStream.toArray(ByteString[]::new)) {
if (lastRegion == null || !lastRegion.contains(key)) {
lastRegion = regionManager.getRegionByKey(key, backoffer);
}
groups.computeIfAbsent(lastRegion, k -> new ArrayList<>()).add(key);
}
return groups;
}
public static List getKvPairs(
ExecutorCompletionService> completionService, List batches, int backOff) {
try {
List result = new ArrayList<>();
for (int i = 0; i < batches.size(); i++) {
result.addAll(completionService.take().get(backOff, TimeUnit.MILLISECONDS));
}
return result;
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new TiKVException("Current thread interrupted.", e);
} catch (TimeoutException e) {
throw new TiKVException("TimeOut Exceeded for current operation. ", e);
} catch (ExecutionException e) {
throw new TiKVException("Execution exception met.", e);
}
}
public static void getTasks(
ExecutorCompletionService> completionService,
Queue> taskQueue,
List batches,
int backOff) {
try {
for (int i = 0; i < batches.size(); i++) {
List task = completionService.take().get(backOff, TimeUnit.MILLISECONDS);
if (!task.isEmpty()) {
taskQueue.offer(task);
}
}
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new TiKVException("Current thread interrupted.", e);
} catch (TimeoutException e) {
throw new TiKVException("TimeOut Exceeded for current operation. ", e);
} catch (ExecutionException e) {
throw new TiKVException("Execution exception met.", e);
}
}
public static List getTasksWithOutput(
ExecutorCompletionService, List>> completionService,
Queue> taskQueue,
List batches,
int backOff) {
try {
List result = new ArrayList<>();
for (int i = 0; i < batches.size(); i++) {
Pair, List> task = completionService.take().get(backOff, TimeUnit.MILLISECONDS);
if (!task.first.isEmpty()) {
taskQueue.offer(task.first);
} else {
result.addAll(task.second);
}
}
return result;
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new TiKVException("Current thread interrupted.", e);
} catch (TimeoutException e) {
throw new TiKVException("TimeOut Exceeded for current operation. ", e);
} catch (ExecutionException e) {
throw new TiKVException("Execution exception met.", e);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy