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

org.apache.hadoop.hbase.util.compaction.MajorCompactionRequest Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta-1
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.hadoop.hbase.util.compaction;

import java.io.IOException;
import java.util.Collection;
import java.util.List;
import java.util.Optional;
import java.util.Set;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileStatus;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.hbase.client.Admin;
import org.apache.hadoop.hbase.client.Connection;
import org.apache.hadoop.hbase.client.ConnectionFactory;
import org.apache.hadoop.hbase.client.RegionInfo;
import org.apache.hadoop.hbase.regionserver.HRegionFileSystem;
import org.apache.hadoop.hbase.regionserver.StoreFileInfo;
import org.apache.hadoop.hbase.util.FSUtils;
import org.apache.yetus.audience.InterfaceAudience;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
import org.apache.hbase.thirdparty.com.google.common.collect.Sets;

@InterfaceAudience.Private
class MajorCompactionRequest {

  private static final Logger LOG = LoggerFactory.getLogger(MajorCompactionRequest.class);

  private final Configuration configuration;
  private final RegionInfo region;
  private Set stores;
  private final long timestamp;

  @VisibleForTesting
  MajorCompactionRequest(Configuration configuration, RegionInfo region,
      Set stores, long timestamp) {
    this.configuration = configuration;
    this.region = region;
    this.stores = stores;
    this.timestamp = timestamp;
  }

  static Optional newRequest(Configuration configuration, RegionInfo info,
      Set stores, long timestamp) throws IOException {
    MajorCompactionRequest request =
        new MajorCompactionRequest(configuration, info, stores, timestamp);
    return request.createRequest(configuration, stores);
  }

  RegionInfo getRegion() {
    return region;
  }

  Set getStores() {
    return stores;
  }

  void setStores(Set stores) {
    this.stores = stores;
  }

  @VisibleForTesting
  Optional createRequest(Configuration configuration,
      Set stores) throws IOException {
    Set familiesToCompact = getStoresRequiringCompaction(stores);
    MajorCompactionRequest request = null;
    if (!familiesToCompact.isEmpty()) {
      request = new MajorCompactionRequest(configuration, region, familiesToCompact, timestamp);
    }
    return Optional.ofNullable(request);
  }

  Set getStoresRequiringCompaction(Set requestedStores) throws IOException {
    try(Connection connection = getConnection(configuration)) {
      HRegionFileSystem fileSystem = getFileSystem(connection);
      Set familiesToCompact = Sets.newHashSet();
      for (String family : requestedStores) {
        // do we have any store files?
        Collection storeFiles = fileSystem.getStoreFiles(family);
        if (storeFiles == null) {
          LOG.info("Excluding store: " + family + " for compaction for region:  " + fileSystem
              .getRegionInfo().getEncodedName(), " has no store files");
          continue;
        }
        // check for reference files
        if (fileSystem.hasReferences(family) && familyHasReferenceFile(fileSystem, family)) {
          familiesToCompact.add(family);
          LOG.info("Including store: " + family + " with: " + storeFiles.size()
              + " files for compaction for region: " + fileSystem.getRegionInfo().getEncodedName());
          continue;
        }
        // check store file timestamps
        boolean includeStore = false;
        for (StoreFileInfo storeFile : storeFiles) {
          if (storeFile.getModificationTime() < timestamp) {
            LOG.info("Including store: " + family + " with: " + storeFiles.size()
                + " files for compaction for region: "
                + fileSystem.getRegionInfo().getEncodedName());
            familiesToCompact.add(family);
            includeStore = true;
            break;
          }
        }
        if (!includeStore) {
          LOG.info("Excluding store: " + family + " for compaction for region:  " + fileSystem
              .getRegionInfo().getEncodedName(), " already compacted");
        }
      }
      return familiesToCompact;
    }
  }

  @VisibleForTesting
  Connection getConnection(Configuration configuration) throws IOException {
    return ConnectionFactory.createConnection(configuration);
  }

  private boolean familyHasReferenceFile(HRegionFileSystem fileSystem, String family)
      throws IOException {
    List referenceFiles =
        getReferenceFilePaths(fileSystem.getFileSystem(), fileSystem.getStoreDir(family));
    for (Path referenceFile : referenceFiles) {
      FileStatus status = fileSystem.getFileSystem().getFileLinkStatus(referenceFile);
      if (status.getModificationTime() < timestamp) {
        LOG.info("Including store: " + family + " for compaction for region:  " + fileSystem
            .getRegionInfo().getEncodedName() + " (reference store files)");
        return true;
      }
    }
    return false;

  }

  @VisibleForTesting
  List getReferenceFilePaths(FileSystem fileSystem, Path familyDir)
      throws IOException {
    return FSUtils.getReferenceFilePaths(fileSystem, familyDir);
  }

  @VisibleForTesting
  HRegionFileSystem getFileSystem(Connection connection) throws IOException {
    Admin admin = connection.getAdmin();
    return HRegionFileSystem.openRegionFromFileSystem(admin.getConfiguration(),
        FSUtils.getCurrentFileSystem(admin.getConfiguration()),
        FSUtils.getTableDir(FSUtils.getRootDir(admin.getConfiguration()), region.getTable()),
        region, true);
  }

  @Override
  public String toString() {
    return "region: " + region.getEncodedName() + " store(s): " + stores;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy