1   /**
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *     http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing, software
13   * distributed under the License is distributed on an "AS IS" BASIS,
14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   * See the License for the specific language governing permissions and
16   * limitations under the License.
17   */
18  
19  package org.apache.hadoop.hbase.snapshot;
20  
21  import static org.junit.Assert.assertEquals;
22  import static org.junit.Assert.assertFalse;
23  import static org.junit.Assert.assertTrue;
24  
25  import java.io.IOException;
26  import java.net.URI;
27  import java.util.ArrayList;
28  import java.util.Arrays;
29  import java.util.List;
30  import java.util.HashSet;
31  import java.util.Set;
32  
33  import org.apache.commons.logging.Log;
34  import org.apache.commons.logging.LogFactory;
35  
36  import org.apache.hadoop.conf.Configuration;
37  import org.apache.hadoop.fs.FileSystem;
38  import org.apache.hadoop.fs.FileStatus;
39  import org.apache.hadoop.fs.FileUtil;
40  import org.apache.hadoop.fs.FSDataOutputStream;
41  import org.apache.hadoop.fs.Path;
42  import org.apache.hadoop.hbase.HBaseTestingUtility;
43  import org.apache.hadoop.hbase.HColumnDescriptor;
44  import org.apache.hadoop.hbase.HConstants;
45  import org.apache.hadoop.hbase.HRegionInfo;
46  import org.apache.hadoop.hbase.HTableDescriptor;
47  import org.apache.hadoop.hbase.KeyValue;
48  import org.apache.hadoop.hbase.MediumTests;
49  import org.apache.hadoop.hbase.MiniHBaseCluster;
50  import org.apache.hadoop.hbase.master.snapshot.SnapshotManager;
51  import org.apache.hadoop.hbase.client.HBaseAdmin;
52  import org.apache.hadoop.hbase.client.HTable;
53  import org.apache.hadoop.hbase.util.Bytes;
54  import org.apache.hadoop.hbase.util.FSUtils;
55  import org.apache.hadoop.hbase.util.Pair;
56  import org.apache.hadoop.hbase.protobuf.generated.HBaseProtos.SnapshotDescription;
57  import org.apache.hadoop.hbase.regionserver.HRegion;
58  import org.apache.hadoop.hbase.snapshot.ExportSnapshot;
59  import org.apache.hadoop.hbase.snapshot.SnapshotReferenceUtil;
60  import org.apache.hadoop.mapreduce.Job;
61  import org.junit.After;
62  import org.junit.AfterClass;
63  import org.junit.Before;
64  import org.junit.BeforeClass;
65  import org.junit.Test;
66  import org.junit.experimental.categories.Category;
67  
68  /**
69   * Test Export Snapshot Tool
70   */
71  @Category(MediumTests.class)
72  public class TestExportSnapshot {
73    private final Log LOG = LogFactory.getLog(getClass());
74  
75    private final static HBaseTestingUtility TEST_UTIL = new HBaseTestingUtility();
76  
77    private final static byte[] FAMILY = Bytes.toBytes("cf");
78  
79    private byte[] emptySnapshotName;
80    private byte[] snapshotName;
81    private byte[] tableName;
82    private HBaseAdmin admin;
83  
84    @BeforeClass
85    public static void setUpBeforeClass() throws Exception {
86      TEST_UTIL.getConfiguration().setBoolean(SnapshotManager.HBASE_SNAPSHOT_ENABLED, true);
87      TEST_UTIL.getConfiguration().setInt("hbase.regionserver.msginterval", 100);
88      TEST_UTIL.getConfiguration().setInt("hbase.client.pause", 250);
89      TEST_UTIL.getConfiguration().setInt("hbase.client.retries.number", 6);
90      TEST_UTIL.getConfiguration().setBoolean("hbase.master.enabletable.roundrobin", true);
91      TEST_UTIL.startMiniCluster(3);
92    }
93  
94    @AfterClass
95    public static void tearDownAfterClass() throws Exception {
96      TEST_UTIL.shutdownMiniCluster();
97    }
98  
99    /**
100    * Create a table and take a snapshot of the table used by the export test.
101    */
102   @Before
103   public void setUp() throws Exception {
104     this.admin = TEST_UTIL.getHBaseAdmin();
105 
106     long tid = System.currentTimeMillis();
107     tableName = Bytes.toBytes("testtb-" + tid);
108     snapshotName = Bytes.toBytes("snaptb0-" + tid);
109     emptySnapshotName = Bytes.toBytes("emptySnaptb0-" + tid);
110 
111     // create Table
112     HTableDescriptor htd = new HTableDescriptor(tableName);
113     htd.addFamily(new HColumnDescriptor(FAMILY));
114     admin.createTable(htd, null);
115 
116     // Take an empty snapshot
117     admin.snapshot(emptySnapshotName, tableName);
118 
119     // Add some rows
120     HTable table = new HTable(TEST_UTIL.getConfiguration(), tableName);
121     TEST_UTIL.loadTable(table, FAMILY);
122 
123     // take a snapshot
124     admin.snapshot(snapshotName, tableName);
125   }
126 
127   @After
128   public void tearDown() throws Exception {
129     admin.disableTable(tableName);
130     admin.deleteSnapshot(snapshotName);
131     admin.deleteSnapshot(emptySnapshotName);
132     admin.deleteTable(tableName);
133     admin.close();
134   }
135 
136   /**
137    * Verfy the result of getBalanceSplits() method.
138    * The result are groups of files, used as input list for the "export" mappers.
139    * All the groups should have similar amount of data.
140    *
141    * The input list is a pair of file path and length.
142    * The getBalanceSplits() function sort it by length,
143    * and assign to each group a file, going back and forth through the groups.
144    */
145   @Test
146   public void testBalanceSplit() throws Exception {
147     // Create a list of files
148     List<Pair<Path, Long>> files = new ArrayList<Pair<Path, Long>>();
149     for (long i = 0; i <= 20; i++) {
150       files.add(new Pair<Path, Long>(new Path("file-" + i), i));
151     }
152 
153     // Create 5 groups (total size 210)
154     //    group 0: 20, 11, 10,  1 (total size: 42)
155     //    group 1: 19, 12,  9,  2 (total size: 42)
156     //    group 2: 18, 13,  8,  3 (total size: 42)
157     //    group 3: 17, 12,  7,  4 (total size: 42)
158     //    group 4: 16, 11,  6,  5 (total size: 42)
159     List<List<Path>> splits = ExportSnapshot.getBalancedSplits(files, 5);
160     assertEquals(5, splits.size());
161     assertEquals(Arrays.asList(new Path("file-20"), new Path("file-11"),
162       new Path("file-10"), new Path("file-1"), new Path("file-0")), splits.get(0));
163     assertEquals(Arrays.asList(new Path("file-19"), new Path("file-12"),
164       new Path("file-9"), new Path("file-2")), splits.get(1));
165     assertEquals(Arrays.asList(new Path("file-18"), new Path("file-13"),
166       new Path("file-8"), new Path("file-3")), splits.get(2));
167     assertEquals(Arrays.asList(new Path("file-17"), new Path("file-14"),
168       new Path("file-7"), new Path("file-4")), splits.get(3));
169     assertEquals(Arrays.asList(new Path("file-16"), new Path("file-15"),
170       new Path("file-6"), new Path("file-5")), splits.get(4));
171   }
172 
173   /**
174    * Verify if exported snapshot and copied files matches the original one.
175    */
176   @Test
177   public void testExportFileSystemState() throws Exception {
178     testExportFileSystemState(tableName, snapshotName, 2);
179   }
180 
181   @Test
182   public void testEmptyExportFileSystemState() throws Exception {
183     testExportFileSystemState(tableName, emptySnapshotName, 1);
184   }
185 
186   /**
187    * Mock a snapshot with files in the archive dir,
188    * two regions, and one reference file.
189    */
190   @Test
191   public void testSnapshotWithRefsExportFileSystemState() throws Exception {
192     Configuration conf = TEST_UTIL.getConfiguration();
193 
194     final byte[] tableWithRefsName = Bytes.toBytes("tableWithRefs");
195     final String snapshotName = "tableWithRefs";
196     final String TEST_FAMILY = Bytes.toString(FAMILY);
197     final String TEST_HFILE = "abc";
198 
199     final SnapshotDescription sd = SnapshotDescription.newBuilder()
200         .setName(snapshotName).setTable(Bytes.toString(tableWithRefsName)).build();
201 
202     FileSystem fs = TEST_UTIL.getHBaseCluster().getMaster().getMasterFileSystem().getFileSystem();
203     Path rootDir = TEST_UTIL.getHBaseCluster().getMaster().getMasterFileSystem().getRootDir();
204     Path archiveDir = new Path(rootDir, HConstants.HFILE_ARCHIVE_DIRECTORY);
205 
206     HTableDescriptor htd = new HTableDescriptor(tableWithRefsName);
207     htd.addFamily(new HColumnDescriptor(TEST_FAMILY));
208 
209     // First region, simple with one plain hfile.
210     HRegion r0 = HRegion.createHRegion(new HRegionInfo(htd.getName()), archiveDir,
211         conf, htd, null, true, true);
212     Path storeFile = new Path(new Path(r0.getRegionDir(), TEST_FAMILY), TEST_HFILE);
213     FSDataOutputStream out = fs.create(storeFile);
214     out.write(Bytes.toBytes("Test Data"));
215     out.close();
216     r0.close();
217 
218     // Second region, used to test the split case.
219     // This region contains a reference to the hfile in the first region.
220     HRegion r1 = HRegion.createHRegion(new HRegionInfo(htd.getName()), archiveDir,
221         conf, htd, null, true, true);
222     out = fs.create(new Path(new Path(r1.getRegionDir(), TEST_FAMILY),
223         storeFile.getName() + '.' + r0.getRegionInfo().getEncodedName()));
224     out.write(Bytes.toBytes("Test Data"));
225     out.close();
226     r1.close();
227 
228     Path tableDir = HTableDescriptor.getTableDir(archiveDir, tableWithRefsName);
229     Path snapshotDir = SnapshotDescriptionUtils.getCompletedSnapshotDir(snapshotName, rootDir);
230     FileUtil.copy(fs, tableDir, fs, snapshotDir, false, conf);
231     SnapshotDescriptionUtils.writeSnapshotInfo(sd, snapshotDir, fs);
232 
233     testExportFileSystemState(tableWithRefsName, Bytes.toBytes(snapshotName), 2);
234   }
235 
236   /**
237    * Test ExportSnapshot
238    */
239   private void testExportFileSystemState(final byte[] tableName, final byte[] snapshotName,
240       int filesExpected) throws Exception {
241     Path copyDir = TEST_UTIL.getDataTestDir("export-" + System.currentTimeMillis());
242     URI hdfsUri = FileSystem.get(TEST_UTIL.getConfiguration()).getUri();
243     FileSystem fs = FileSystem.get(copyDir.toUri(), new Configuration());
244     copyDir = copyDir.makeQualified(fs);
245 
246     // Export Snapshot
247     int res = ExportSnapshot.innerMain(TEST_UTIL.getConfiguration(), new String[] {
248       "-snapshot", Bytes.toString(snapshotName),
249       "-copy-to", copyDir.toString()
250     });
251     assertEquals(0, res);
252 
253     // Verify File-System state
254     FileStatus[] rootFiles = fs.listStatus(copyDir);
255     assertEquals(filesExpected, rootFiles.length);
256     for (FileStatus fileStatus: rootFiles) {
257       String name = fileStatus.getPath().getName();
258       assertTrue(fileStatus.isDir());
259       assertTrue(name.equals(HConstants.SNAPSHOT_DIR_NAME) || name.equals(".archive"));
260     }
261 
262     // compare the snapshot metadata and verify the hfiles
263     final FileSystem hdfs = FileSystem.get(hdfsUri, TEST_UTIL.getConfiguration());
264     final Path snapshotDir = new Path(HConstants.SNAPSHOT_DIR_NAME, Bytes.toString(snapshotName));
265     verifySnapshot(hdfs, new Path(TEST_UTIL.getDefaultRootDirPath(), snapshotDir),
266         fs, new Path(copyDir, snapshotDir));
267     verifyArchive(fs, copyDir, tableName, Bytes.toString(snapshotName));
268     FSUtils.logFileSystemState(hdfs, snapshotDir, LOG);
269 
270     // Remove the exported dir
271     fs.delete(copyDir, true);
272   }
273 
274   /*
275    * verify if the snapshot folder on file-system 1 match the one on file-system 2
276    */
277   private void verifySnapshot(final FileSystem fs1, final Path root1,
278       final FileSystem fs2, final Path root2) throws IOException {
279     Set<String> s = new HashSet<String>();
280     assertEquals(listFiles(fs1, root1, root1), listFiles(fs2, root2, root2));
281   }
282 
283   /*
284    * Verify if the files exists
285    */
286   private void verifyArchive(final FileSystem fs, final Path rootDir,
287       final byte[] tableName, final String snapshotName) throws IOException {
288     final Path exportedSnapshot = new Path(rootDir,
289       new Path(HConstants.SNAPSHOT_DIR_NAME, snapshotName));
290     final Path exportedArchive = new Path(rootDir, HConstants.HFILE_ARCHIVE_DIRECTORY);
291     LOG.debug(listFiles(fs, exportedArchive, exportedArchive));
292     SnapshotReferenceUtil.visitReferencedFiles(fs, exportedSnapshot,
293         new SnapshotReferenceUtil.FileVisitor() {
294         public void storeFile (final String region, final String family, final String hfile)
295             throws IOException {
296           verifyNonEmptyFile(new Path(exportedArchive,
297             new Path(Bytes.toString(tableName), new Path(region, new Path(family, hfile)))));
298         }
299 
300         public void recoveredEdits (final String region, final String logfile)
301             throws IOException {
302           verifyNonEmptyFile(new Path(exportedSnapshot,
303             new Path(Bytes.toString(tableName), new Path(region, logfile))));
304         }
305 
306         public void logFile (final String server, final String logfile)
307             throws IOException {
308           verifyNonEmptyFile(new Path(exportedSnapshot, new Path(server, logfile)));
309         }
310 
311         private void verifyNonEmptyFile(final Path path) throws IOException {
312           assertTrue(path + " should exist", fs.exists(path));
313           assertTrue(path + " should not be empty", fs.getFileStatus(path).getLen() > 0);
314         }
315     });
316   }
317 
318   private Set<String> listFiles(final FileSystem fs, final Path root, final Path dir)
319       throws IOException {
320     Set<String> files = new HashSet<String>();
321     int rootPrefix = root.toString().length();
322     FileStatus[] list = FSUtils.listStatus(fs, dir);
323     if (list != null) {
324       for (FileStatus fstat: list) {
325         LOG.debug(fstat.getPath());
326         if (fstat.isDir()) {
327           files.addAll(listFiles(fs, root, fstat.getPath()));
328         } else {
329           files.add(fstat.getPath().toString().substring(rootPrefix));
330         }
331       }
332     }
333     return files;
334   }
335 }