All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pingcap.tikv.tools.RegionUtils Maven / Gradle / Ivy

There is a newer version: 3.2.3
Show newest version
/*
 * Copyright 2017 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.tools;

import static java.util.Objects.requireNonNull;

import com.google.common.collect.ImmutableList;
import com.pingcap.tikv.TiSession;
import com.pingcap.tikv.meta.TiDAGRequest;
import com.pingcap.tikv.meta.TiDAGRequest.PushDownType;
import com.pingcap.tikv.meta.TiTableInfo;
import com.pingcap.tikv.predicates.TiKVScanAnalyzer;
import com.pingcap.tikv.util.RangeSplitter;
import com.pingcap.tikv.util.RangeSplitter.RegionTask;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.tikv.kvproto.Coprocessor.KeyRange;

public class RegionUtils {
  public static Map getRegionDistribution(
      TiSession session, String databaseName, String tableName) {
    List tasks = getRegionTasks(session, databaseName, tableName);
    Map regionMap = new HashMap<>();
    for (RegionTask task : tasks) {
      regionMap.merge(task.getHost() + "_" + task.getStore().getId(), 1, Integer::sum);
    }
    return regionMap;
  }

  public static Map> getStoreRegionIdDistribution(
      TiSession session, String databaseName, String tableName) {
    List tasks = getRegionTasks(session, databaseName, tableName);
    Map> storeMap = new HashMap<>();
    for (RegionTask task : tasks) {
      long regionId = task.getRegion().getId();
      long storeId = task.getStore().getId();
      storeMap.putIfAbsent(storeId, new ArrayList<>());
      storeMap.get(storeId).add(regionId);
    }
    return storeMap;
  }

  private static List getRegionTasks(
      TiSession session, String databaseName, String tableName) {
    requireNonNull(session, "session is null");
    requireNonNull(databaseName, "databaseName is null");
    requireNonNull(tableName, "tableName is null");
    TiTableInfo table = session.getCatalog().getTable(databaseName, tableName);
    requireNonNull(table, String.format("Table not found %s.%s", databaseName, tableName));
    TiKVScanAnalyzer builder = new TiKVScanAnalyzer();
    TiDAGRequest dagRequest =
        builder.buildTiDAGReq(
            ImmutableList.of(),
            ImmutableList.of(),
            table,
            session.getTimestamp(),
            new TiDAGRequest(PushDownType.NORMAL));
    List ranges = new ArrayList<>();
    dagRequest.getRangesMaps().forEach((k, v) -> ranges.addAll(v));
    return RangeSplitter.newSplitter(session.getRegionManager()).splitRangeByRegion(ranges);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy