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  
20  package org.apache.hadoop.hbase.master.snapshot;
21  
22  import java.io.IOException;
23  import java.util.List;
24  import java.util.concurrent.CancellationException;
25  
26  import org.apache.commons.logging.Log;
27  import org.apache.commons.logging.LogFactory;
28  import org.apache.hadoop.hbase.classification.InterfaceAudience;
29  import org.apache.hadoop.fs.FileSystem;
30  import org.apache.hadoop.fs.Path;
31  import org.apache.hadoop.hbase.TableName;
32  import org.apache.hadoop.hbase.HRegionInfo;
33  import org.apache.hadoop.hbase.HTableDescriptor;
34  import org.apache.hadoop.hbase.NotAllMetaRegionsOnlineException;
35  import org.apache.hadoop.hbase.TableExistsException;
36  import org.apache.hadoop.hbase.errorhandling.ForeignException;
37  import org.apache.hadoop.hbase.errorhandling.ForeignExceptionDispatcher;
38  import org.apache.hadoop.hbase.master.MasterServices;
39  import org.apache.hadoop.hbase.master.MetricsSnapshot;
40  import org.apache.hadoop.hbase.master.SnapshotSentinel;
41  import org.apache.hadoop.hbase.master.handler.CreateTableHandler;
42  import org.apache.hadoop.hbase.monitoring.MonitoredTask;
43  import org.apache.hadoop.hbase.monitoring.TaskMonitor;
44  import org.apache.hadoop.hbase.protobuf.generated.HBaseProtos.SnapshotDescription;
45  import org.apache.hadoop.hbase.snapshot.ClientSnapshotDescriptionUtils;
46  import org.apache.hadoop.hbase.snapshot.RestoreSnapshotException;
47  import org.apache.hadoop.hbase.snapshot.RestoreSnapshotHelper;
48  import org.apache.hadoop.hbase.snapshot.SnapshotDescriptionUtils;
49  import org.apache.hadoop.hbase.snapshot.SnapshotManifest;
50  
51  import com.google.common.base.Preconditions;
52  
53  /**
54   * Handler to Clone a snapshot.
55   *
56   * <p>Uses {@link RestoreSnapshotHelper} to create a new table with the same
57   * content of the specified snapshot.
58   */
59  @InterfaceAudience.Private
60  public class CloneSnapshotHandler extends CreateTableHandler implements SnapshotSentinel {
61    private static final Log LOG = LogFactory.getLog(CloneSnapshotHandler.class);
62  
63    private final static String NAME = "Master CloneSnapshotHandler";
64  
65    private final SnapshotDescription snapshot;
66  
67    private final ForeignExceptionDispatcher monitor;
68    private final MetricsSnapshot metricsSnapshot = new MetricsSnapshot();
69    private final MonitoredTask status;
70  
71    private RestoreSnapshotHelper.RestoreMetaChanges metaChanges;
72  
73    private volatile boolean stopped = false;
74  
75    public CloneSnapshotHandler(final MasterServices masterServices,
76        final SnapshotDescription snapshot, final HTableDescriptor hTableDescriptor) {
77      super(masterServices, masterServices.getMasterFileSystem(), hTableDescriptor,
78        masterServices.getConfiguration(), null, masterServices);
79  
80      // Snapshot information
81      this.snapshot = snapshot;
82  
83      // Monitor
84      this.monitor = new ForeignExceptionDispatcher();
85      this.status = TaskMonitor.get().createStatus("Cloning  snapshot '" + snapshot.getName() +
86        "' to table " + hTableDescriptor.getTableName());
87    }
88  
89    @Override
90    public CloneSnapshotHandler prepare() throws NotAllMetaRegionsOnlineException,
91        TableExistsException, IOException {
92      return (CloneSnapshotHandler) super.prepare();
93    }
94  
95    /**
96     * Create the on-disk regions, using the tableRootDir provided by the CreateTableHandler.
97     * The cloned table will be created in a temp directory, and then the CreateTableHandler
98     * will be responsible to add the regions returned by this method to hbase:meta and do the assignment.
99     */
100   @Override
101   protected List<HRegionInfo> handleCreateHdfsRegions(final Path tableRootDir,
102       final TableName tableName) throws IOException {
103     status.setStatus("Creating regions for table: " + tableName);
104     FileSystem fs = fileSystemManager.getFileSystem();
105     Path rootDir = fileSystemManager.getRootDir();
106 
107     try {
108       // 1. Execute the on-disk Clone
109       Path snapshotDir = SnapshotDescriptionUtils.getCompletedSnapshotDir(snapshot, rootDir);
110       SnapshotManifest manifest = SnapshotManifest.open(conf, fs, snapshotDir, snapshot);
111       RestoreSnapshotHelper restoreHelper = new RestoreSnapshotHelper(conf, fs,
112           manifest, hTableDescriptor, tableRootDir, monitor, status);
113       metaChanges = restoreHelper.restoreHdfsRegions();
114 
115       // Clone operation should not have stuff to restore or remove
116       Preconditions.checkArgument(!metaChanges.hasRegionsToRestore(),
117           "A clone should not have regions to restore");
118       Preconditions.checkArgument(!metaChanges.hasRegionsToRemove(),
119           "A clone should not have regions to remove");
120 
121       // At this point the clone is complete. Next step is enabling the table.
122       String msg = "Clone snapshot="+ snapshot.getName() +" on table=" + tableName + " completed!";
123       LOG.info(msg);
124       status.setStatus(msg + " Waiting for table to be enabled...");
125 
126       // 2. let the CreateTableHandler add the regions to meta
127       return metaChanges.getRegionsToAdd();
128     } catch (Exception e) {
129       String msg = "clone snapshot=" + ClientSnapshotDescriptionUtils.toString(snapshot) +
130         " failed because " + e.getMessage();
131       LOG.error(msg, e);
132       IOException rse = new RestoreSnapshotException(msg, e, snapshot);
133 
134       // these handlers aren't futures so we need to register the error here.
135       this.monitor.receive(new ForeignException(NAME, rse));
136       throw rse;
137     }
138   }
139 
140   @Override
141   protected void addRegionsToMeta(final List<HRegionInfo> regionInfos,
142       int regionReplication)
143       throws IOException {
144     super.addRegionsToMeta(regionInfos, regionReplication);
145     metaChanges.updateMetaParentRegions(this.server.getConnection(), regionInfos);
146   }
147 
148   @Override
149   protected void completed(final Throwable exception) {
150     this.stopped = true;
151     if (exception != null) {
152       status.abort("Snapshot '" + snapshot.getName() + "' clone failed because " +
153           exception.getMessage());
154     } else {
155       status.markComplete("Snapshot '"+ snapshot.getName() +"' clone completed and table enabled!");
156     }
157     metricsSnapshot.addSnapshotClone(status.getCompletionTimestamp() - status.getStartTime());
158     super.completed(exception);
159   }
160 
161   @Override
162   public boolean isFinished() {
163     return this.stopped;
164   }
165 
166   @Override
167   public long getCompletionTimestamp() {
168     return this.status.getCompletionTimestamp();
169   }
170 
171   @Override
172   public SnapshotDescription getSnapshot() {
173     return snapshot;
174   }
175 
176   @Override
177   public void cancel(String why) {
178     if (this.stopped) return;
179     this.stopped = true;
180     String msg = "Stopping clone snapshot=" + snapshot + " because: " + why;
181     LOG.info(msg);
182     status.abort(msg);
183     this.monitor.receive(new ForeignException(NAME, new CancellationException(why)));
184   }
185 
186   @Override
187   public ForeignException getExceptionIfFailed() {
188     return this.monitor.getException();
189   }
190 
191   @Override
192   public void rethrowExceptionIfFailed() throws ForeignException {
193     monitor.rethrowException();
194   }
195 }