001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *     http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS,
014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 * See the License for the specific language governing permissions and
016 * limitations under the License.
017 */
018package org.apache.hadoop.hbase.chaos.actions;
019
020import java.util.List;
021import org.apache.hadoop.hbase.HBaseTestingUtil;
022import org.apache.hadoop.hbase.TableName;
023import org.apache.hadoop.hbase.chaos.monkies.PolicyBasedChaosMonkey;
024import org.apache.hadoop.hbase.client.Admin;
025import org.apache.hadoop.hbase.client.RegionInfo;
026import org.slf4j.Logger;
027import org.slf4j.LoggerFactory;
028
029/**
030 * Action that tries to split a random region of a table.
031 */
032public class SplitRandomRegionOfTableAction extends Action {
033  private static final Logger LOG = LoggerFactory.getLogger(SplitRandomRegionOfTableAction.class);
034  private final long sleepTime;
035  private final TableName tableName;
036
037  public SplitRandomRegionOfTableAction(TableName tableName) {
038    this(-1, tableName);
039  }
040
041  public SplitRandomRegionOfTableAction(int sleepTime, TableName tableName) {
042    this.sleepTime = sleepTime;
043    this.tableName = tableName;
044  }
045
046  @Override
047  protected Logger getLogger() {
048    return LOG;
049  }
050
051  @Override
052  public void perform() throws Exception {
053    HBaseTestingUtil util = context.getHBaseIntegrationTestingUtility();
054    Admin admin = util.getAdmin();
055
056    getLogger().info("Performing action: Split random region of table " + tableName);
057    List<RegionInfo> regions = admin.getRegions(tableName);
058    if (regions == null || regions.isEmpty()) {
059      getLogger().info("Table " + tableName + " doesn't have regions to split");
060      return;
061    }
062    // Don't try the split if we're stopping
063    if (context.isStopping()) {
064      return;
065    }
066
067    RegionInfo region = PolicyBasedChaosMonkey.selectRandomItem(regions.toArray(new RegionInfo[0]));
068    getLogger().debug("Splitting region " + region.getRegionNameAsString());
069    try {
070      admin.splitRegionAsync(region.getRegionName()).get();
071    } catch (Exception ex) {
072      getLogger().warn("Split failed, might be caused by other chaos: " + ex.getMessage());
073    }
074    if (sleepTime > 0) {
075      Thread.sleep(sleepTime);
076    }
077  }
078}