View Javadoc

1   /**
2    *
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *     http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   */
19  package org.apache.hadoop.hbase.regionserver;
20  
21  import java.io.IOException;
22  import java.util.List;
23  
24  import org.apache.hadoop.hbase.classification.InterfaceAudience;
25  import org.apache.hadoop.conf.Configuration;
26  import org.apache.hadoop.fs.Path;
27  import org.apache.hadoop.hbase.HBaseInterfaceAudience;
28  import org.apache.hadoop.hbase.KeyValue.KVComparator;
29  import org.apache.hadoop.hbase.regionserver.compactions.CompactionContext;
30  import org.apache.hadoop.hbase.regionserver.compactions.ExploringCompactionPolicy;
31  import org.apache.hadoop.hbase.regionserver.compactions.RatioBasedCompactionPolicy;
32  import org.apache.hadoop.hbase.regionserver.compactions.DefaultCompactor;
33  import org.apache.hadoop.hbase.regionserver.compactions.CompactionThroughputController;
34  import org.apache.hadoop.hbase.security.User;
35  import org.apache.hadoop.hbase.util.ReflectionUtils;
36  
37  /**
38   * Default StoreEngine creates the default compactor, policy, and store file manager, or
39   * their derivatives.
40   */
41  @InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.CONFIG)
42  public class DefaultStoreEngine extends StoreEngine<
43    DefaultStoreFlusher, RatioBasedCompactionPolicy, DefaultCompactor, DefaultStoreFileManager> {
44  
45    public static final String DEFAULT_STORE_FLUSHER_CLASS_KEY =
46        "hbase.hstore.defaultengine.storeflusher.class";
47    public static final String DEFAULT_COMPACTOR_CLASS_KEY =
48        "hbase.hstore.defaultengine.compactor.class";
49    public static final String DEFAULT_COMPACTION_POLICY_CLASS_KEY =
50        "hbase.hstore.defaultengine.compactionpolicy.class";
51  
52    private static final Class<? extends DefaultStoreFlusher>
53      DEFAULT_STORE_FLUSHER_CLASS = DefaultStoreFlusher.class;
54    private static final Class<? extends DefaultCompactor>
55      DEFAULT_COMPACTOR_CLASS = DefaultCompactor.class;
56    private static final Class<? extends RatioBasedCompactionPolicy>
57      DEFAULT_COMPACTION_POLICY_CLASS = ExploringCompactionPolicy.class;
58  
59    @Override
60    public boolean needsCompaction(List<StoreFile> filesCompacting) {
61      return compactionPolicy.needsCompaction(
62          this.storeFileManager.getStorefiles(), filesCompacting);
63    }
64  
65    @Override
66    protected void createComponents(
67        Configuration conf, Store store, KVComparator kvComparator) throws IOException {
68      String className = conf.get(DEFAULT_COMPACTOR_CLASS_KEY, DEFAULT_COMPACTOR_CLASS.getName());
69      try {
70        compactor = ReflectionUtils.instantiateWithCustomCtor(className,
71            new Class[] { Configuration.class, Store.class }, new Object[] { conf, store });
72      } catch (Exception e) {
73        throw new IOException("Unable to load configured compactor '" + className + "'", e);
74      }
75      className = conf.get(
76          DEFAULT_COMPACTION_POLICY_CLASS_KEY, DEFAULT_COMPACTION_POLICY_CLASS.getName());
77      try {
78        compactionPolicy = ReflectionUtils.instantiateWithCustomCtor(className,
79            new Class[] { Configuration.class, StoreConfigInformation.class },
80            new Object[] { conf, store });
81      } catch (Exception e) {
82        throw new IOException("Unable to load configured compaction policy '" + className + "'", e);
83      }
84      storeFileManager = new DefaultStoreFileManager(kvComparator, conf, compactionPolicy.getConf());
85      className = conf.get(
86          DEFAULT_STORE_FLUSHER_CLASS_KEY, DEFAULT_STORE_FLUSHER_CLASS.getName());
87      try {
88        storeFlusher = ReflectionUtils.instantiateWithCustomCtor(className,
89            new Class[] { Configuration.class, Store.class }, new Object[] { conf, store });
90      } catch (Exception e) {
91        throw new IOException("Unable to load configured store flusher '" + className + "'", e);
92      }
93    }
94  
95  
96    @Override
97    public CompactionContext createCompaction() {
98      return new DefaultCompactionContext();
99    }
100 
101   private class DefaultCompactionContext extends CompactionContext {
102     @Override
103     public boolean select(List<StoreFile> filesCompacting, boolean isUserCompaction,
104         boolean mayUseOffPeak, boolean forceMajor) throws IOException {
105       request = compactionPolicy.selectCompaction(storeFileManager.getStorefiles(),
106           filesCompacting, isUserCompaction, mayUseOffPeak, forceMajor);
107       return request != null;
108     }
109 
110     @Override
111     public List<Path> compact(CompactionThroughputController throughputController)
112         throws IOException {
113       return compact(throughputController, null);
114     }
115 
116     @Override
117     public List<Path> compact(CompactionThroughputController throughputController, User user)
118         throws IOException {
119       return compactor.compact(request, throughputController, user);
120     }
121 
122     @Override
123     public List<StoreFile> preSelect(List<StoreFile> filesCompacting) {
124       return compactionPolicy.preSelectCompactionForCoprocessor(
125           storeFileManager.getStorefiles(), filesCompacting);
126     }
127   }
128 
129 }