This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 8028112 HBASE-22548 Split TestAdmin1
8028112 is described below
commit 80281127cb95b3a4a03997b38b2c1670342d0470
Author: zhangduo <[email protected]>
AuthorDate: Sat Jun 8 13:51:28 2019 +0800
HBASE-22548 Split TestAdmin1
---
.../org/apache/hadoop/hbase/client/TestAdmin.java | 550 +++++++++
.../org/apache/hadoop/hbase/client/TestAdmin1.java | 1245 +++-----------------
.../org/apache/hadoop/hbase/client/TestAdmin2.java | 38 +-
.../org/apache/hadoop/hbase/client/TestAdmin3.java | 409 +++++++
.../apache/hadoop/hbase/client/TestAdminBase.java | 70 ++
5 files changed, 1162 insertions(+), 1150 deletions(-)
diff --git
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin.java
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin.java
new file mode 100644
index 0000000..2098eab
--- /dev/null
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin.java
@@ -0,0 +1,550 @@
+/**
+ * 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.client;
+
+import static org.apache.hadoop.hbase.HBaseTestingUtility.countRows;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Map;
+import org.apache.hadoop.hbase.HBaseClassTestRule;
+import org.apache.hadoop.hbase.HConstants;
+import org.apache.hadoop.hbase.HRegionLocation;
+import org.apache.hadoop.hbase.ServerName;
+import org.apache.hadoop.hbase.TableExistsException;
+import org.apache.hadoop.hbase.TableName;
+import org.apache.hadoop.hbase.TableNotFoundException;
+import org.apache.hadoop.hbase.master.LoadBalancer;
+import org.apache.hadoop.hbase.testclassification.ClientTests;
+import org.apache.hadoop.hbase.testclassification.LargeTests;
+import org.apache.hadoop.hbase.util.Bytes;
+import org.junit.ClassRule;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+@Category({ LargeTests.class, ClientTests.class })
+public class TestAdmin extends TestAdminBase {
+
+ @ClassRule
+ public static final HBaseClassTestRule CLASS_RULE =
HBaseClassTestRule.forClass(TestAdmin.class);
+
+ private static final Logger LOG = LoggerFactory.getLogger(TestAdmin.class);
+
+ @Test
+ public void testCreateTable() throws IOException {
+ List<TableDescriptor> tables = ADMIN.listTableDescriptors();
+ int numTables = tables.size();
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
+ tables = ADMIN.listTableDescriptors();
+ assertEquals(numTables + 1, tables.size());
+ assertTrue("Table must be enabled.",
TEST_UTIL.getHBaseCluster().getMaster()
+ .getTableStateManager().isTableState(tableName,
TableState.State.ENABLED));
+ assertEquals(TableState.State.ENABLED, getStateFromMeta(tableName));
+ }
+
+ @Test
+ public void testTruncateTable() throws IOException {
+ testTruncateTable(TableName.valueOf(name.getMethodName()), false);
+ }
+
+ @Test
+ public void testTruncateTablePreservingSplits() throws IOException {
+ testTruncateTable(TableName.valueOf(name.getMethodName()), true);
+ }
+
+ private void testTruncateTable(final TableName tableName, boolean
preserveSplits)
+ throws IOException {
+ byte[][] splitKeys = new byte[2][];
+ splitKeys[0] = Bytes.toBytes(4);
+ splitKeys[1] = Bytes.toBytes(8);
+
+ // Create & Fill the table
+ Table table = TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY,
splitKeys);
+ try {
+ TEST_UTIL.loadNumericRows(table, HConstants.CATALOG_FAMILY, 0, 10);
+ assertEquals(10, countRows(table));
+ } finally {
+ table.close();
+ }
+ assertEquals(3, TEST_UTIL.getHBaseCluster().getRegions(tableName).size());
+
+ // Truncate & Verify
+ ADMIN.disableTable(tableName);
+ ADMIN.truncateTable(tableName, preserveSplits);
+ table = TEST_UTIL.getConnection().getTable(tableName);
+ try {
+ assertEquals(0, countRows(table));
+ } finally {
+ table.close();
+ }
+ if (preserveSplits) {
+ assertEquals(3,
TEST_UTIL.getHBaseCluster().getRegions(tableName).size());
+ } else {
+ assertEquals(1,
TEST_UTIL.getHBaseCluster().getRegions(tableName).size());
+ }
+ }
+
+ @Test
+ public void testCreateTableNumberOfRegions() throws IOException,
InterruptedException {
+ TableName table = TableName.valueOf(name.getMethodName());
+ ColumnFamilyDescriptor cfd =
ColumnFamilyDescriptorBuilder.of(HConstants.CATALOG_FAMILY);
+
ADMIN.createTable(TableDescriptorBuilder.newBuilder(table).setColumnFamily(cfd).build());
+ List<HRegionLocation> regions;
+ try (RegionLocator l = TEST_UTIL.getConnection().getRegionLocator(table)) {
+ regions = l.getAllRegionLocations();
+ assertEquals("Table should have only 1 region", 1, regions.size());
+ }
+
+ TableName table2 = TableName.valueOf(table.getNameAsString() + "_2");
+
ADMIN.createTable(TableDescriptorBuilder.newBuilder(table2).setColumnFamily(cfd).build(),
+ new byte[][] { new byte[] { 42 } });
+ try (RegionLocator l = TEST_UTIL.getConnection().getRegionLocator(table2))
{
+ regions = l.getAllRegionLocations();
+ assertEquals("Table should have only 2 region", 2, regions.size());
+ }
+
+ TableName table3 = TableName.valueOf(table.getNameAsString() + "_3");
+
ADMIN.createTable(TableDescriptorBuilder.newBuilder(table3).setColumnFamily(cfd).build(),
+ Bytes.toBytes("a"), Bytes.toBytes("z"), 3);
+ try (RegionLocator l = TEST_UTIL.getConnection().getRegionLocator(table3))
{
+ regions = l.getAllRegionLocations();
+ assertEquals("Table should have only 3 region", 3, regions.size());
+ }
+
+ TableName table4 = TableName.valueOf(table.getNameAsString() + "_4");
+ try {
+
ADMIN.createTable(TableDescriptorBuilder.newBuilder(table4).setColumnFamily(cfd).build(),
+ Bytes.toBytes("a"), Bytes.toBytes("z"), 2);
+ fail("Should not be able to create a table with only 2 regions using
this API.");
+ } catch (IllegalArgumentException eae) {
+ // Expected
+ }
+
+ TableName table5 = TableName.valueOf(table.getNameAsString() + "_5");
+
ADMIN.createTable(TableDescriptorBuilder.newBuilder(table5).setColumnFamily(cfd).build(),
+ new byte[] { 1 }, new byte[] { 127 }, 16);
+ try (RegionLocator l = TEST_UTIL.getConnection().getRegionLocator(table5))
{
+ regions = l.getAllRegionLocations();
+ assertEquals("Table should have 16 region", 16, regions.size());
+ }
+ }
+
+ @Test
+ public void testCreateTableWithRegions() throws IOException,
InterruptedException {
+ TableName table = TableName.valueOf(name.getMethodName());
+ ColumnFamilyDescriptor cfd =
ColumnFamilyDescriptorBuilder.of(HConstants.CATALOG_FAMILY);
+ byte[][] splitKeys = { new byte[] { 1, 1, 1 }, new byte[] { 2, 2, 2 }, new
byte[] { 3, 3, 3 },
+ new byte[] { 4, 4, 4 }, new byte[] { 5, 5, 5 }, new byte[] { 6, 6, 6 },
+ new byte[] { 7, 7, 7 }, new byte[] { 8, 8, 8 }, new byte[] { 9, 9, 9 },
};
+ int expectedRegions = splitKeys.length + 1;
+
+
ADMIN.createTable(TableDescriptorBuilder.newBuilder(table).setColumnFamily(cfd).build(),
+ splitKeys);
+
+ boolean tableAvailable = ADMIN.isTableAvailable(table);
+ assertTrue("Table should be created with splitKyes + 1 rows in META",
tableAvailable);
+
+ List<HRegionLocation> regions;
+ Iterator<HRegionLocation> hris;
+ RegionInfo hri;
+ ClusterConnection conn = (ClusterConnection) TEST_UTIL.getConnection();
+ try (RegionLocator l = TEST_UTIL.getConnection().getRegionLocator(table)) {
+ regions = l.getAllRegionLocations();
+
+ assertEquals(
+ "Tried to create " + expectedRegions + " regions " + "but only found "
+ regions.size(),
+ expectedRegions, regions.size());
+ System.err.println("Found " + regions.size() + " regions");
+
+ hris = regions.iterator();
+ hri = hris.next().getRegion();
+ assertTrue(hri.getStartKey() == null || hri.getStartKey().length == 0);
+ assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[0]));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[0]));
+ assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[1]));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[1]));
+ assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[2]));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[2]));
+ assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[3]));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[3]));
+ assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[4]));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[4]));
+ assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[5]));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[5]));
+ assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[6]));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[6]));
+ assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[7]));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[7]));
+ assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[8]));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[8]));
+ assertTrue(hri.getEndKey() == null || hri.getEndKey().length == 0);
+
+ verifyRoundRobinDistribution(conn, l, expectedRegions);
+ }
+
+ // Now test using start/end with a number of regions
+
+ // Use 80 bit numbers to make sure we aren't limited
+ byte[] startKey = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 };
+ byte[] endKey = { 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 };
+
+ // Splitting into 10 regions, we expect (null,1) ... (9, null)
+ // with (1,2) (2,3) (3,4) (4,5) (5,6) (6,7) (7,8) (8,9) in the middle
+
+ expectedRegions = 10;
+
+ TableName table2 = TableName.valueOf(table.getNameAsString() + "_2");
+
ADMIN.createTable(TableDescriptorBuilder.newBuilder(table2).setColumnFamily(cfd).build(),
+ startKey, endKey, expectedRegions);
+
+ try (RegionLocator l = TEST_UTIL.getConnection().getRegionLocator(table2))
{
+ regions = l.getAllRegionLocations();
+ assertEquals(
+ "Tried to create " + expectedRegions + " regions " + "but only found "
+ regions.size(),
+ expectedRegions, regions.size());
+ System.err.println("Found " + regions.size() + " regions");
+
+ hris = regions.iterator();
+ hri = hris.next().getRegion();
+ assertTrue(hri.getStartKey() == null || hri.getStartKey().length == 0);
+ assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 1, 1, 1, 1, 1, 1,
1, 1, 1, 1 }));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 1, 1, 1, 1, 1,
1, 1, 1, 1, 1 }));
+ assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 2, 2, 2, 2, 2, 2,
2, 2, 2, 2 }));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 2, 2, 2, 2, 2,
2, 2, 2, 2, 2 }));
+ assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 3, 3, 3, 3, 3, 3,
3, 3, 3, 3 }));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 3, 3, 3, 3, 3,
3, 3, 3, 3, 3 }));
+ assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 4, 4, 4, 4, 4, 4,
4, 4, 4, 4 }));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 4, 4, 4, 4, 4,
4, 4, 4, 4, 4 }));
+ assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 5, 5, 5, 5, 5, 5,
5, 5, 5, 5 }));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 5, 5, 5, 5, 5,
5, 5, 5, 5, 5 }));
+ assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 6, 6, 6, 6, 6, 6,
6, 6, 6, 6 }));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 6, 6, 6, 6, 6,
6, 6, 6, 6, 6 }));
+ assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 7, 7, 7, 7, 7, 7,
7, 7, 7, 7 }));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 7, 7, 7, 7, 7,
7, 7, 7, 7, 7 }));
+ assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 8, 8, 8, 8, 8, 8,
8, 8, 8, 8 }));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 8, 8, 8, 8, 8,
8, 8, 8, 8, 8 }));
+ assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 9, 9, 9, 9, 9, 9,
9, 9, 9, 9 }));
+ hri = hris.next().getRegion();
+ assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 9, 9, 9, 9, 9,
9, 9, 9, 9, 9 }));
+ assertTrue(hri.getEndKey() == null || hri.getEndKey().length == 0);
+
+ verifyRoundRobinDistribution(conn, l, expectedRegions);
+ }
+
+ // Try once more with something that divides into something infinite
+
+ startKey = new byte[] { 0, 0, 0, 0, 0, 0 };
+ endKey = new byte[] { 1, 0, 0, 0, 0, 0 };
+
+ expectedRegions = 5;
+
+ TableName table3 = TableName.valueOf(table.getNameAsString() + "_3");
+
ADMIN.createTable(TableDescriptorBuilder.newBuilder(table3).setColumnFamily(cfd).build(),
+ startKey, endKey, expectedRegions);
+
+ try (RegionLocator l = TEST_UTIL.getConnection().getRegionLocator(table3))
{
+ regions = l.getAllRegionLocations();
+ assertEquals(
+ "Tried to create " + expectedRegions + " regions " + "but only found "
+ regions.size(),
+ expectedRegions, regions.size());
+ System.err.println("Found " + regions.size() + " regions");
+
+ verifyRoundRobinDistribution(conn, l, expectedRegions);
+ }
+
+ // Try an invalid case where there are duplicate split keys
+ splitKeys = new byte[][] { new byte[] { 1, 1, 1 }, new byte[] { 2, 2, 2 },
+ new byte[] { 3, 3, 3 }, new byte[] { 2, 2, 2 } };
+
+ TableName table4 = TableName.valueOf(table.getNameAsString() + "_4");
+ try {
+
ADMIN.createTable(TableDescriptorBuilder.newBuilder(table4).setColumnFamily(cfd).build(),
+ splitKeys);
+ assertTrue("Should not be able to create this table because of " +
"duplicate split keys",
+ false);
+ } catch (IllegalArgumentException iae) {
+ // Expected
+ }
+ }
+
+ @Test
+ public void testCreateTableWithOnlyEmptyStartRow() throws IOException {
+ final byte[] tableName = Bytes.toBytes(name.getMethodName());
+ byte[][] splitKeys = new byte[1][];
+ splitKeys[0] = HConstants.EMPTY_BYTE_ARRAY;
+ TableDescriptor desc =
TableDescriptorBuilder.newBuilder(TableName.valueOf(tableName))
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of("col")).build();
+ try {
+ ADMIN.createTable(desc, splitKeys);
+ fail("Test case should fail as empty split key is passed.");
+ } catch (IllegalArgumentException e) {
+ }
+ }
+
+ @Test
+ public void testCreateTableWithEmptyRowInTheSplitKeys() throws IOException {
+ final byte[] tableName = Bytes.toBytes(name.getMethodName());
+ byte[][] splitKeys = new byte[3][];
+ splitKeys[0] = Bytes.toBytes("region1");
+ splitKeys[1] = HConstants.EMPTY_BYTE_ARRAY;
+ splitKeys[2] = Bytes.toBytes("region2");
+ TableDescriptor desc =
TableDescriptorBuilder.newBuilder(TableName.valueOf(tableName))
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of("col")).build();
+ try {
+ ADMIN.createTable(desc, splitKeys);
+ fail("Test case should fail as empty split key is passed.");
+ } catch (IllegalArgumentException e) {
+ LOG.info("Expected ", e);
+ }
+ }
+
+ private void verifyRoundRobinDistribution(ClusterConnection c, RegionLocator
regionLocator,
+ int expectedRegions) throws IOException {
+ int numRS = c.getCurrentNrHRS();
+ List<HRegionLocation> regions = regionLocator.getAllRegionLocations();
+ Map<ServerName, List<RegionInfo>> server2Regions = new HashMap<>();
+ for (HRegionLocation loc : regions) {
+ ServerName server = loc.getServerName();
+ List<RegionInfo> regs = server2Regions.get(server);
+ if (regs == null) {
+ regs = new ArrayList<>();
+ server2Regions.put(server, regs);
+ }
+ regs.add(loc.getRegion());
+ }
+ boolean tablesOnMaster =
LoadBalancer.isTablesOnMaster(TEST_UTIL.getConfiguration());
+ if (tablesOnMaster) {
+ // Ignore the master region server,
+ // which contains less regions by intention.
+ numRS--;
+ }
+ float average = (float) expectedRegions / numRS;
+ int min = (int) Math.floor(average);
+ int max = (int) Math.ceil(average);
+ for (List<RegionInfo> regionList : server2Regions.values()) {
+ assertTrue(
+ "numRS=" + numRS + ", min=" + min + ", max=" + max + ", size=" +
regionList.size() +
+ ", tablesOnMaster=" + tablesOnMaster,
+ regionList.size() == min || regionList.size() == max);
+ }
+ }
+
+ @Test
+ public void testCloneTableSchema() throws Exception {
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ final TableName newTableName =
TableName.valueOf(tableName.getNameAsString() + "_new");
+ testCloneTableSchema(tableName, newTableName, false);
+ }
+
+ @Test
+ public void testCloneTableSchemaPreservingSplits() throws Exception {
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ final TableName newTableName =
TableName.valueOf(tableName.getNameAsString() + "_new");
+ testCloneTableSchema(tableName, newTableName, true);
+ }
+
+ private void testCloneTableSchema(final TableName tableName, final TableName
newTableName,
+ boolean preserveSplits) throws Exception {
+ byte[] FAMILY_0 = Bytes.toBytes("cf0");
+ byte[] FAMILY_1 = Bytes.toBytes("cf1");
+ byte[][] splitKeys = new byte[2][];
+ splitKeys[0] = Bytes.toBytes(4);
+ splitKeys[1] = Bytes.toBytes(8);
+ int NUM_FAMILYS = 2;
+ int NUM_REGIONS = 3;
+ int BLOCK_SIZE = 1024;
+ int TTL = 86400;
+ boolean BLOCK_CACHE = false;
+
+ // Create the table
+ TableDescriptor tableDesc = TableDescriptorBuilder.newBuilder(tableName)
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of(FAMILY_0))
+
.setColumnFamily(ColumnFamilyDescriptorBuilder.newBuilder(FAMILY_1).setBlocksize(BLOCK_SIZE)
+ .setBlockCacheEnabled(BLOCK_CACHE).setTimeToLive(TTL).build())
+ .build();
+ ADMIN.createTable(tableDesc, splitKeys);
+
+ assertEquals(NUM_REGIONS,
TEST_UTIL.getHBaseCluster().getRegions(tableName).size());
+ assertTrue("Table should be created with splitKyes + 1 rows in META",
+ ADMIN.isTableAvailable(tableName));
+
+ // clone & Verify
+ ADMIN.cloneTableSchema(tableName, newTableName, preserveSplits);
+ TableDescriptor newTableDesc = ADMIN.getDescriptor(newTableName);
+
+ assertEquals(NUM_FAMILYS, newTableDesc.getColumnFamilyCount());
+ assertEquals(BLOCK_SIZE,
newTableDesc.getColumnFamily(FAMILY_1).getBlocksize());
+ assertEquals(BLOCK_CACHE,
newTableDesc.getColumnFamily(FAMILY_1).isBlockCacheEnabled());
+ assertEquals(TTL, newTableDesc.getColumnFamily(FAMILY_1).getTimeToLive());
+ TEST_UTIL.verifyTableDescriptorIgnoreTableName(tableDesc, newTableDesc);
+
+ if (preserveSplits) {
+ assertEquals(NUM_REGIONS,
TEST_UTIL.getHBaseCluster().getRegions(newTableName).size());
+ assertTrue("New table should be created with splitKyes + 1 rows in META",
+ ADMIN.isTableAvailable(newTableName));
+ } else {
+ assertEquals(1,
TEST_UTIL.getHBaseCluster().getRegions(newTableName).size());
+ }
+ }
+
+ @Test
+ public void testCloneTableSchemaWithNonExistentSourceTable() throws
Exception {
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ final TableName newTableName =
TableName.valueOf(tableName.getNameAsString() + "_new");
+ // test for non-existent source table
+ try {
+ ADMIN.cloneTableSchema(tableName, newTableName, false);
+ fail("Should have failed to create a new table by cloning non-existent
source table.");
+ } catch (TableNotFoundException ex) {
+ // expected
+ }
+ }
+
+ @Test
+ public void testCloneTableSchemaWithExistentDestinationTable() throws
Exception {
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ final TableName newTableName =
TableName.valueOf(tableName.getNameAsString() + "_new");
+ byte[] FAMILY_0 = Bytes.toBytes("cf0");
+ TEST_UTIL.createTable(tableName, FAMILY_0);
+ TEST_UTIL.createTable(newTableName, FAMILY_0);
+ // test for existent destination table
+ try {
+ ADMIN.cloneTableSchema(tableName, newTableName, false);
+ fail("Should have failed to create a existent table.");
+ } catch (TableExistsException ex) {
+ // expected
+ }
+ }
+
+ @Test
+ public void testModifyTableOnTableWithRegionReplicas() throws Exception {
+ TableName tableName = TableName.valueOf(name.getMethodName());
+ TableDescriptor desc = TableDescriptorBuilder.newBuilder(tableName)
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of(Bytes.toBytes("cf")))
+ .setRegionReplication(5).build();
+
+ ADMIN.createTable(desc);
+
+ int maxFileSize = 10000000;
+ TableDescriptor newDesc =
+
TableDescriptorBuilder.newBuilder(desc).setMaxFileSize(maxFileSize).build();
+
+ ADMIN.modifyTable(newDesc);
+ TableDescriptor newTableDesc = ADMIN.getDescriptor(tableName);
+ assertEquals(maxFileSize, newTableDesc.getMaxFileSize());
+ }
+
+ /**
+ * Verify schema modification takes.
+ */
+ @Test
+ public void testOnlineChangeTableSchema() throws IOException,
InterruptedException {
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ List<TableDescriptor> tables = ADMIN.listTableDescriptors();
+ int numTables = tables.size();
+ TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
+ tables = ADMIN.listTableDescriptors();
+ assertEquals(numTables + 1, tables.size());
+ // FIRST, do htabledescriptor changes.
+ TableDescriptor htd = ADMIN.getDescriptor(tableName);
+ // Make a copy and assert copy is good.
+ TableDescriptor copy = TableDescriptorBuilder.newBuilder(htd).build();
+ assertEquals(htd, copy);
+ String key = "anyoldkey";
+ assertNull(htd.getValue(key));
+ // Now amend the copy. Introduce differences.
+ long newFlushSize = htd.getMemStoreFlushSize() / 2;
+ if (newFlushSize <= 0) {
+ newFlushSize = TableDescriptorBuilder.DEFAULT_MEMSTORE_FLUSH_SIZE / 2;
+ }
+ copy =
TableDescriptorBuilder.newBuilder(copy).setMemStoreFlushSize(newFlushSize)
+ .setValue(key, key).build();
+ ADMIN.modifyTable(copy);
+ TableDescriptor modifiedHtd = ADMIN.getDescriptor(tableName);
+ assertNotEquals(htd, modifiedHtd);
+ assertEquals(copy, modifiedHtd);
+ assertEquals(newFlushSize, modifiedHtd.getMemStoreFlushSize());
+ assertEquals(key, modifiedHtd.getValue(key));
+
+ // Now work on column family changes.
+ int countOfFamilies = modifiedHtd.getColumnFamilyCount();
+ assertTrue(countOfFamilies > 0);
+ ColumnFamilyDescriptor hcd = modifiedHtd.getColumnFamilies()[0];
+ int maxversions = hcd.getMaxVersions();
+ int newMaxVersions = maxversions + 1;
+ hcd =
ColumnFamilyDescriptorBuilder.newBuilder(hcd).setMaxVersions(newMaxVersions).build();
+ byte[] hcdName = hcd.getName();
+ ADMIN.modifyColumnFamily(tableName, hcd);
+ modifiedHtd = ADMIN.getDescriptor(tableName);
+ ColumnFamilyDescriptor modifiedHcd = modifiedHtd.getColumnFamily(hcdName);
+ assertEquals(newMaxVersions, modifiedHcd.getMaxVersions());
+
+ // Try adding a column
+ assertFalse(ADMIN.isTableDisabled(tableName));
+ String xtracolName = "xtracol";
+ ColumnFamilyDescriptor xtracol = ColumnFamilyDescriptorBuilder
+ .newBuilder(Bytes.toBytes(xtracolName)).setValue(xtracolName,
xtracolName).build();
+ ADMIN.addColumnFamily(tableName, xtracol);
+ modifiedHtd = ADMIN.getDescriptor(tableName);
+ hcd = modifiedHtd.getColumnFamily(xtracol.getName());
+ assertNotNull(hcd);
+ assertEquals(xtracolName,
Bytes.toString(hcd.getValue(Bytes.toBytes(xtracolName))));
+
+ // Delete the just-added column.
+ ADMIN.deleteColumnFamily(tableName, xtracol.getName());
+ modifiedHtd = ADMIN.getDescriptor(tableName);
+ hcd = modifiedHtd.getColumnFamily(xtracol.getName());
+ assertNull(hcd);
+
+ // Delete the table
+ ADMIN.disableTable(tableName);
+ ADMIN.deleteTable(tableName);
+ ADMIN.listTableDescriptors();
+ assertFalse(ADMIN.tableExists(tableName));
+ }
+}
diff --git
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin1.java
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin1.java
index ba11858..48330c1 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin1.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin1.java
@@ -19,37 +19,24 @@ package org.apache.hadoop.hbase.client;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.IOException;
import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.Iterator;
import java.util.List;
-import java.util.Map;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
-import java.util.regex.Pattern;
import org.apache.hadoop.hbase.DoNotRetryIOException;
import org.apache.hadoop.hbase.HBaseClassTestRule;
-import org.apache.hadoop.hbase.HBaseTestingUtility;
-import org.apache.hadoop.hbase.HColumnDescriptor;
import org.apache.hadoop.hbase.HConstants;
import org.apache.hadoop.hbase.HRegionLocation;
-import org.apache.hadoop.hbase.HTableDescriptor;
-import org.apache.hadoop.hbase.InvalidFamilyOperationException;
import org.apache.hadoop.hbase.MetaTableAccessor;
import org.apache.hadoop.hbase.ServerName;
-import org.apache.hadoop.hbase.TableExistsException;
import org.apache.hadoop.hbase.TableName;
-import org.apache.hadoop.hbase.TableNotDisabledException;
-import org.apache.hadoop.hbase.TableNotEnabledException;
import org.apache.hadoop.hbase.TableNotFoundException;
import org.apache.hadoop.hbase.exceptions.MergeRegionException;
-import org.apache.hadoop.hbase.master.LoadBalancer;
import org.apache.hadoop.hbase.regionserver.DisabledRegionSplitPolicy;
import org.apache.hadoop.hbase.regionserver.HRegion;
import org.apache.hadoop.hbase.regionserver.HStore;
@@ -60,14 +47,9 @@ import org.apache.hadoop.hbase.util.Bytes;
import org.apache.hadoop.hbase.util.FSUtils;
import org.apache.hadoop.hbase.util.Pair;
import org.apache.hadoop.hbase.util.Threads;
-import org.junit.After;
-import org.junit.AfterClass;
-import org.junit.BeforeClass;
import org.junit.ClassRule;
-import org.junit.Rule;
import org.junit.Test;
import org.junit.experimental.categories.Category;
-import org.junit.rules.TestName;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -75,44 +57,16 @@ import
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
import
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.MergeTableRegionsRequest;
/**
- * Class to test HBaseAdmin.
- * Spins up the minicluster once at test start and then takes it down
afterward.
- * Add any testing of HBaseAdmin functionality here.
+ * Class to test HBaseAdmin. Spins up the minicluster once at test start and
then takes it down
+ * afterward. Add any testing of HBaseAdmin functionality here.
*/
-@Category({LargeTests.class, ClientTests.class})
-public class TestAdmin1 {
+@Category({ LargeTests.class, ClientTests.class })
+public class TestAdmin1 extends TestAdminBase {
@ClassRule
- public static final HBaseClassTestRule CLASS_RULE =
- HBaseClassTestRule.forClass(TestAdmin1.class);
+ public static final HBaseClassTestRule CLASS_RULE =
HBaseClassTestRule.forClass(TestAdmin1.class);
private static final Logger LOG = LoggerFactory.getLogger(TestAdmin1.class);
- private final static HBaseTestingUtility TEST_UTIL = new
HBaseTestingUtility();
- private static Admin ADMIN;
-
- @Rule
- public TestName name = new TestName();
-
- @BeforeClass
- public static void setUpBeforeClass() throws Exception {
- TEST_UTIL.getConfiguration().setInt("hbase.regionserver.msginterval", 100);
- TEST_UTIL.getConfiguration().setInt("hbase.client.pause", 250);
- TEST_UTIL.getConfiguration().setInt("hbase.client.retries.number", 6);
-
TEST_UTIL.getConfiguration().setBoolean("hbase.master.enabletable.roundrobin",
true);
- TEST_UTIL.startMiniCluster(3);
- ADMIN = TEST_UTIL.getAdmin();
- }
-
- @AfterClass
- public static void tearDownAfterClass() throws Exception {
- TEST_UTIL.shutdownMiniCluster();
- }
- @After
- public void tearDown() throws Exception {
- for (TableDescriptor htd : ADMIN.listTableDescriptors()) {
- TEST_UTIL.deleteTable(htd.getTableName());
- }
- }
@Test
public void testSplitFlushCompactUnknownTable() throws InterruptedException {
@@ -143,306 +97,10 @@ public class TestAdmin1 {
}
@Test
- public void testDeleteEditUnknownColumnFamilyAndOrTable() throws IOException
{
- // Test we get exception if we try to
- final TableName nonexistentTable = TableName.valueOf("nonexistent");
- final byte[] nonexistentColumn = Bytes.toBytes("nonexistent");
- HColumnDescriptor nonexistentHcd = new
HColumnDescriptor(nonexistentColumn);
- Exception exception = null;
- try {
- ADMIN.addColumnFamily(nonexistentTable, nonexistentHcd);
- } catch (IOException e) {
- exception = e;
- }
- assertTrue(exception instanceof TableNotFoundException);
-
- exception = null;
- try {
- ADMIN.deleteTable(nonexistentTable);
- } catch (IOException e) {
- exception = e;
- }
- assertTrue(exception instanceof TableNotFoundException);
-
- exception = null;
- try {
- ADMIN.deleteColumnFamily(nonexistentTable, nonexistentColumn);
- } catch (IOException e) {
- exception = e;
- }
- assertTrue(exception instanceof TableNotFoundException);
-
- exception = null;
- try {
- ADMIN.disableTable(nonexistentTable);
- } catch (IOException e) {
- exception = e;
- }
- assertTrue(exception instanceof TableNotFoundException);
-
- exception = null;
- try {
- ADMIN.enableTable(nonexistentTable);
- } catch (IOException e) {
- exception = e;
- }
- assertTrue(exception instanceof TableNotFoundException);
-
- exception = null;
- try {
- ADMIN.modifyColumnFamily(nonexistentTable, nonexistentHcd);
- } catch (IOException e) {
- exception = e;
- }
- assertTrue(exception instanceof TableNotFoundException);
-
- exception = null;
- try {
- HTableDescriptor htd = new HTableDescriptor(nonexistentTable);
- htd.addFamily(new HColumnDescriptor(HConstants.CATALOG_FAMILY));
- ADMIN.modifyTable(htd);
- } catch (IOException e) {
- exception = e;
- }
- assertTrue(exception instanceof TableNotFoundException);
-
- // Now make it so at least the table exists and then do tests against a
- // nonexistent column family -- see if we get right exceptions.
- final TableName tableName = TableName.valueOf(name.getMethodName() +
System.currentTimeMillis());
- HTableDescriptor htd = new HTableDescriptor(tableName);
- htd.addFamily(new HColumnDescriptor("cf"));
- ADMIN.createTable(htd);
- try {
- exception = null;
- try {
- ADMIN.deleteColumnFamily(htd.getTableName(), nonexistentHcd.getName());
- } catch (IOException e) {
- exception = e;
- }
- assertTrue("found=" + exception.getClass().getName(),
- exception instanceof InvalidFamilyOperationException);
-
- exception = null;
- try {
- ADMIN.modifyColumnFamily(htd.getTableName(), nonexistentHcd);
- } catch (IOException e) {
- exception = e;
- }
- assertTrue("found=" + exception.getClass().getName(),
- exception instanceof InvalidFamilyOperationException);
- } finally {
- ADMIN.disableTable(tableName);
- ADMIN.deleteTable(tableName);
- }
- }
-
- @Test
- public void testDisableAndEnableTable() throws IOException {
- final byte [] row = Bytes.toBytes("row");
- final byte [] qualifier = Bytes.toBytes("qualifier");
- final byte [] value = Bytes.toBytes("value");
- final TableName table = TableName.valueOf(name.getMethodName());
- Table ht = TEST_UTIL.createTable(table, HConstants.CATALOG_FAMILY);
- Put put = new Put(row);
- put.addColumn(HConstants.CATALOG_FAMILY, qualifier, value);
- ht.put(put);
- Get get = new Get(row);
- get.addColumn(HConstants.CATALOG_FAMILY, qualifier);
- ht.get(get);
-
- ADMIN.disableTable(ht.getName());
- assertTrue("Table must be disabled.", TEST_UTIL.getHBaseCluster()
- .getMaster().getTableStateManager().isTableState(
- ht.getName(), TableState.State.DISABLED));
- assertEquals(TableState.State.DISABLED, getStateFromMeta(table));
-
- // Test that table is disabled
- get = new Get(row);
- get.addColumn(HConstants.CATALOG_FAMILY, qualifier);
- boolean ok = false;
- try {
- ht.get(get);
- } catch (TableNotEnabledException e) {
- ok = true;
- }
- ok = false;
- // verify that scan encounters correct exception
- Scan scan = new Scan();
- try {
- ResultScanner scanner = ht.getScanner(scan);
- Result res = null;
- do {
- res = scanner.next();
- } while (res != null);
- } catch (TableNotEnabledException e) {
- ok = true;
- }
- assertTrue(ok);
- ADMIN.enableTable(table);
- assertTrue("Table must be enabled.", TEST_UTIL.getHBaseCluster()
- .getMaster().getTableStateManager().isTableState(
- ht.getName(), TableState.State.ENABLED));
- assertEquals(TableState.State.ENABLED, getStateFromMeta(table));
-
- // Test that table is enabled
- try {
- ht.get(get);
- } catch (RetriesExhaustedException e) {
- ok = false;
- }
- assertTrue(ok);
- ht.close();
- }
-
- private TableState.State getStateFromMeta(TableName table) throws
IOException {
- TableState state =
- MetaTableAccessor.getTableState(TEST_UTIL.getConnection(), table);
- assertNotNull(state);
- return state.getState();
- }
-
- @Test
- public void testDisableAndEnableTables() throws IOException {
- final byte [] row = Bytes.toBytes("row");
- final byte [] qualifier = Bytes.toBytes("qualifier");
- final byte [] value = Bytes.toBytes("value");
- final TableName table1 = TableName.valueOf(name.getMethodName() + "1");
- final TableName table2 = TableName.valueOf(name.getMethodName() + "2");
- Table ht1 = TEST_UTIL.createTable(table1, HConstants.CATALOG_FAMILY);
- Table ht2 = TEST_UTIL.createTable(table2, HConstants.CATALOG_FAMILY);
- Put put = new Put(row);
- put.addColumn(HConstants.CATALOG_FAMILY, qualifier, value);
- ht1.put(put);
- ht2.put(put);
- Get get = new Get(row);
- get.addColumn(HConstants.CATALOG_FAMILY, qualifier);
- ht1.get(get);
- ht2.get(get);
-
- TableName[] tableNames =
ADMIN.listTableNames(Pattern.compile("testDisableAndEnableTable.*"));
- for (TableName tableName: tableNames) {
- ADMIN.disableTable(tableName);
- }
-
- // Test that tables are disabled
- get = new Get(row);
- get.addColumn(HConstants.CATALOG_FAMILY, qualifier);
- boolean ok = false;
- try {
- ht1.get(get);
- ht2.get(get);
- } catch (org.apache.hadoop.hbase.DoNotRetryIOException e) {
- ok = true;
- }
-
- assertEquals(TableState.State.DISABLED, getStateFromMeta(table1));
- assertEquals(TableState.State.DISABLED, getStateFromMeta(table2));
-
-
- assertTrue(ok);
- for (TableName tableName: tableNames) {
- ADMIN.enableTable(tableName);
- }
-
- // Test that tables are enabled
- try {
- ht1.get(get);
- } catch (IOException e) {
- ok = false;
- }
- try {
- ht2.get(get);
- } catch (IOException e) {
- ok = false;
- }
- assertTrue(ok);
-
- ht1.close();
- ht2.close();
-
- assertEquals(TableState.State.ENABLED, getStateFromMeta(table1));
- assertEquals(TableState.State.ENABLED, getStateFromMeta(table2));
- }
-
- @Test
- public void testCreateTable() throws IOException {
- List<TableDescriptor> tables = ADMIN.listTableDescriptors();
- int numTables = tables.size();
- final TableName tableName = TableName.valueOf(name.getMethodName());
- TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
- tables = ADMIN.listTableDescriptors();
- assertEquals(numTables + 1, tables.size());
- assertTrue("Table must be enabled.",
- TEST_UTIL.getHBaseCluster().getMaster().getTableStateManager()
- .isTableState(tableName, TableState.State.ENABLED));
- assertEquals(TableState.State.ENABLED, getStateFromMeta(tableName));
- }
-
- @Test
- public void testTruncateTable() throws IOException {
- testTruncateTable(TableName.valueOf(name.getMethodName()), false);
- }
-
- @Test
- public void testTruncateTablePreservingSplits() throws IOException {
- testTruncateTable(TableName.valueOf(name.getMethodName()), true);
- }
-
- private void testTruncateTable(final TableName tableName, boolean
preserveSplits)
- throws IOException {
- byte[][] splitKeys = new byte[2][];
- splitKeys[0] = Bytes.toBytes(4);
- splitKeys[1] = Bytes.toBytes(8);
-
- // Create & Fill the table
- Table table = TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY,
splitKeys);
- try {
- TEST_UTIL.loadNumericRows(table, HConstants.CATALOG_FAMILY, 0, 10);
- assertEquals(10, TEST_UTIL.countRows(table));
- } finally {
- table.close();
- }
- assertEquals(3, TEST_UTIL.getHBaseCluster().getRegions(tableName).size());
-
- // Truncate & Verify
- ADMIN.disableTable(tableName);
- ADMIN.truncateTable(tableName, preserveSplits);
- table = TEST_UTIL.getConnection().getTable(tableName);
- try {
- assertEquals(0, TEST_UTIL.countRows(table));
- } finally {
- table.close();
- }
- if (preserveSplits) {
- assertEquals(3,
TEST_UTIL.getHBaseCluster().getRegions(tableName).size());
- } else {
- assertEquals(1,
TEST_UTIL.getHBaseCluster().getRegions(tableName).size());
- }
- }
-
- @Test
- public void testGetTableDescriptor() throws IOException {
- HColumnDescriptor fam1 = new HColumnDescriptor("fam1");
- HColumnDescriptor fam2 = new HColumnDescriptor("fam2");
- HColumnDescriptor fam3 = new HColumnDescriptor("fam3");
- HTableDescriptor htd = new
HTableDescriptor(TableName.valueOf(name.getMethodName()));
- htd.addFamily(fam1);
- htd.addFamily(fam2);
- htd.addFamily(fam3);
- ADMIN.createTable(htd);
- Table table = TEST_UTIL.getConnection().getTable(htd.getTableName());
- TableDescriptor confirmedHtd = table.getDescriptor();
- assertEquals(0, TableDescriptor.COMPARATOR.compare(htd, confirmedHtd));
- MetaTableAccessor.fullScanMetaAndPrint(TEST_UTIL.getConnection());
- table.close();
- }
-
- @Test
public void testCompactionTimestamps() throws Exception {
- HColumnDescriptor fam1 = new HColumnDescriptor("fam1");
- final TableName tableName = TableName.valueOf(name.getMethodName());
- HTableDescriptor htd = new HTableDescriptor(tableName);
- htd.addFamily(fam1);
+ TableName tableName = TableName.valueOf(name.getMethodName());
+ TableDescriptor htd = TableDescriptorBuilder.newBuilder(tableName)
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of("fam1")).build();
ADMIN.createTable(htd);
Table table = TEST_UTIL.getConnection().getTable(htd.getTableName());
long ts = ADMIN.getLastMajorCompactionTimestamp(tableName);
@@ -461,7 +119,7 @@ public class TestAdmin1 {
byte[] regionName;
try (RegionLocator l =
TEST_UTIL.getConnection().getRegionLocator(tableName)) {
- regionName =
l.getAllRegionLocations().get(0).getRegionInfo().getRegionName();
+ regionName =
l.getAllRegionLocations().get(0).getRegion().getRegionName();
}
long ts1 = ADMIN.getLastMajorCompactionTimestampForRegion(regionName);
assertEquals(ts, ts1);
@@ -491,431 +149,9 @@ public class TestAdmin1 {
table.close();
}
- @Test
- public void testHColumnValidName() {
- boolean exceptionThrown;
- try {
- new HColumnDescriptor("\\test\\abc");
- } catch(IllegalArgumentException iae) {
- exceptionThrown = true;
- assertTrue(exceptionThrown);
- }
- }
-
- /**
- * Verify schema change for read only table
- */
- @Test
- public void testReadOnlyTableModify() throws IOException,
InterruptedException {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
-
- // Make table read only
- TableDescriptor htd =
TableDescriptorBuilder.newBuilder(ADMIN.getDescriptor(tableName))
- .setReadOnly(true).build();
- ADMIN.modifyTable(htd);
-
- // try to modify the read only table now
- htd = TableDescriptorBuilder.newBuilder(ADMIN.getDescriptor(tableName))
- .setCompactionEnabled(false).build();
- ADMIN.modifyTable(htd);
- // Delete the table
- ADMIN.disableTable(tableName);
- ADMIN.deleteTable(tableName);
- assertFalse(ADMIN.tableExists(tableName));
- }
-
- @Test(expected = TableNotDisabledException.class)
- public void testModifyRegionReplicasEnabledTable() throws Exception {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
-
- // Modify region replication count
- TableDescriptor htd =
TableDescriptorBuilder.newBuilder(ADMIN.getDescriptor(tableName))
- .setRegionReplication(3).build();
- try {
- // try to modify the region replication count without disabling the table
- ADMIN.modifyTable(htd);
- fail("Expected an exception");
- } finally {
- // Delete the table
- ADMIN.disableTable(tableName);
- ADMIN.deleteTable(tableName);
- assertFalse(ADMIN.tableExists(tableName));
- }
- }
-
- /**
- * Verify schema modification takes.
- */
- @Test
- public void testOnlineChangeTableSchema() throws IOException,
InterruptedException {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- List<TableDescriptor> tables = ADMIN.listTableDescriptors();
- int numTables = tables.size();
- TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
- tables = ADMIN.listTableDescriptors();
- assertEquals(numTables + 1, tables.size());
-
- // FIRST, do htabledescriptor changes.
- HTableDescriptor htd = new
HTableDescriptor(ADMIN.getDescriptor(tableName));
- // Make a copy and assert copy is good.
- HTableDescriptor copy = new HTableDescriptor(htd);
- assertTrue(htd.equals(copy));
- // Now amend the copy. Introduce differences.
- long newFlushSize = htd.getMemStoreFlushSize() / 2;
- if (newFlushSize <=0) {
- newFlushSize = HTableDescriptor.DEFAULT_MEMSTORE_FLUSH_SIZE / 2;
- }
- copy.setMemStoreFlushSize(newFlushSize);
- final String key = "anyoldkey";
- assertTrue(htd.getValue(key) == null);
- copy.setValue(key, key);
- boolean expectedException = false;
- try {
- ADMIN.modifyTable(copy);
- } catch (TableNotDisabledException re) {
- expectedException = true;
- }
- assertFalse(expectedException);
- HTableDescriptor modifiedHtd = new
HTableDescriptor(ADMIN.getDescriptor(tableName));
- assertFalse(htd.equals(modifiedHtd));
- assertTrue(copy.equals(modifiedHtd));
- assertEquals(newFlushSize, modifiedHtd.getMemStoreFlushSize());
- assertEquals(key, modifiedHtd.getValue(key));
-
- // Now work on column family changes.
- int countOfFamilies = modifiedHtd.getFamilies().size();
- assertTrue(countOfFamilies > 0);
- HColumnDescriptor hcd = modifiedHtd.getFamilies().iterator().next();
- int maxversions = hcd.getMaxVersions();
- final int newMaxVersions = maxversions + 1;
- hcd.setMaxVersions(newMaxVersions);
- final byte [] hcdName = hcd.getName();
- expectedException = false;
- try {
- ADMIN.modifyColumnFamily(tableName, hcd);
- } catch (TableNotDisabledException re) {
- expectedException = true;
- }
- assertFalse(expectedException);
- modifiedHtd = new HTableDescriptor(ADMIN.getDescriptor(tableName));
- HColumnDescriptor modifiedHcd = modifiedHtd.getFamily(hcdName);
- assertEquals(newMaxVersions, modifiedHcd.getMaxVersions());
-
- // Try adding a column
- assertFalse(ADMIN.isTableDisabled(tableName));
- final String xtracolName = "xtracol";
- HColumnDescriptor xtracol = new HColumnDescriptor(xtracolName);
- xtracol.setValue(xtracolName, xtracolName);
- expectedException = false;
- try {
- ADMIN.addColumnFamily(tableName, xtracol);
- } catch (TableNotDisabledException re) {
- expectedException = true;
- }
- // Add column should work even if the table is enabled
- assertFalse(expectedException);
- modifiedHtd = new HTableDescriptor(ADMIN.getDescriptor(tableName));
- hcd = modifiedHtd.getFamily(xtracol.getName());
- assertTrue(hcd != null);
- assertTrue(hcd.getValue(xtracolName).equals(xtracolName));
-
- // Delete the just-added column.
- ADMIN.deleteColumnFamily(tableName, xtracol.getName());
- modifiedHtd = new HTableDescriptor(ADMIN.getDescriptor(tableName));
- hcd = modifiedHtd.getFamily(xtracol.getName());
- assertTrue(hcd == null);
-
- // Delete the table
- ADMIN.disableTable(tableName);
- ADMIN.deleteTable(tableName);
- ADMIN.listTableDescriptors();
- assertFalse(ADMIN.tableExists(tableName));
- }
-
- protected void verifyRoundRobinDistribution(ClusterConnection c,
RegionLocator regionLocator, int
- expectedRegions) throws IOException {
- int numRS = c.getCurrentNrHRS();
- List<HRegionLocation> regions = regionLocator.getAllRegionLocations();
- Map<ServerName, List<RegionInfo>> server2Regions = new HashMap<>();
- for (HRegionLocation loc : regions) {
- ServerName server = loc.getServerName();
- List<RegionInfo> regs = server2Regions.get(server);
- if (regs == null) {
- regs = new ArrayList<>();
- server2Regions.put(server, regs);
- }
- regs.add(loc.getRegionInfo());
- }
- boolean tablesOnMaster =
LoadBalancer.isTablesOnMaster(TEST_UTIL.getConfiguration());
- if (tablesOnMaster) {
- // Ignore the master region server,
- // which contains less regions by intention.
- numRS--;
- }
- float average = (float) expectedRegions/numRS;
- int min = (int)Math.floor(average);
- int max = (int)Math.ceil(average);
- for (List<RegionInfo> regionList : server2Regions.values()) {
- assertTrue("numRS=" + numRS + ", min=" + min + ", max=" + max +
- ", size=" + regionList.size() + ", tablesOnMaster=" + tablesOnMaster,
- regionList.size() == min || regionList.size() == max);
- }
- }
-
- @Test
- public void testCreateTableNumberOfRegions() throws IOException,
InterruptedException {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- HTableDescriptor desc = new HTableDescriptor(tableName);
- desc.addFamily(new HColumnDescriptor(HConstants.CATALOG_FAMILY));
- ADMIN.createTable(desc);
- List<HRegionLocation> regions;
- try (RegionLocator l =
TEST_UTIL.getConnection().getRegionLocator(tableName)) {
- regions = l.getAllRegionLocations();
- assertEquals("Table should have only 1 region", 1, regions.size());
- }
-
- TableName TABLE_2 = TableName.valueOf(tableName.getNameAsString() + "_2");
- desc = new HTableDescriptor(TABLE_2);
- desc.addFamily(new HColumnDescriptor(HConstants.CATALOG_FAMILY));
- ADMIN.createTable(desc, new byte[][]{new byte[]{42}});
- try (RegionLocator l =
TEST_UTIL.getConnection().getRegionLocator(TABLE_2)) {
- regions = l.getAllRegionLocations();
- assertEquals("Table should have only 2 region", 2, regions.size());
- }
-
- TableName TABLE_3 = TableName.valueOf(tableName.getNameAsString() + "_3");
- desc = new HTableDescriptor(TABLE_3);
- desc.addFamily(new HColumnDescriptor(HConstants.CATALOG_FAMILY));
- ADMIN.createTable(desc, Bytes.toBytes("a"), Bytes.toBytes("z"), 3);
- try (RegionLocator l =
TEST_UTIL.getConnection().getRegionLocator(TABLE_3)) {
- regions = l.getAllRegionLocations();
- assertEquals("Table should have only 3 region", 3, regions.size());
- }
-
- TableName TABLE_4 = TableName.valueOf(tableName.getNameAsString() + "_4");
- desc = new HTableDescriptor(TABLE_4);
- desc.addFamily(new HColumnDescriptor(HConstants.CATALOG_FAMILY));
- try {
- ADMIN.createTable(desc, Bytes.toBytes("a"), Bytes.toBytes("z"), 2);
- fail("Should not be able to create a table with only 2 regions using
this API.");
- } catch (IllegalArgumentException eae) {
- // Expected
- }
-
- TableName TABLE_5 = TableName.valueOf(tableName.getNameAsString() + "_5");
- desc = new HTableDescriptor(TABLE_5);
- desc.addFamily(new HColumnDescriptor(HConstants.CATALOG_FAMILY));
- ADMIN.createTable(desc, new byte[] { 1 }, new byte[] { 127 }, 16);
- try (RegionLocator l =
TEST_UTIL.getConnection().getRegionLocator(TABLE_5)) {
- regions = l.getAllRegionLocations();
- assertEquals("Table should have 16 region", 16, regions.size());
- }
- }
-
- @Test
- public void testCreateTableWithRegions() throws IOException,
InterruptedException {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- byte [][] splitKeys = {
- new byte [] { 1, 1, 1 },
- new byte [] { 2, 2, 2 },
- new byte [] { 3, 3, 3 },
- new byte [] { 4, 4, 4 },
- new byte [] { 5, 5, 5 },
- new byte [] { 6, 6, 6 },
- new byte [] { 7, 7, 7 },
- new byte [] { 8, 8, 8 },
- new byte [] { 9, 9, 9 },
- };
- int expectedRegions = splitKeys.length + 1;
-
- HTableDescriptor desc = new HTableDescriptor(tableName);
- desc.addFamily(new HColumnDescriptor(HConstants.CATALOG_FAMILY));
- ADMIN.createTable(desc, splitKeys);
-
- boolean tableAvailable = ADMIN.isTableAvailable(tableName);
- assertTrue("Table should be created with splitKyes + 1 rows in META",
tableAvailable);
-
- List<HRegionLocation> regions;
- Iterator<HRegionLocation> hris;
- RegionInfo hri;
- ClusterConnection conn = (ClusterConnection) TEST_UTIL.getConnection();
- try (RegionLocator l =
TEST_UTIL.getConnection().getRegionLocator(tableName)) {
- regions = l.getAllRegionLocations();
-
- assertEquals("Tried to create " + expectedRegions + " regions " +
- "but only found " + regions.size(), expectedRegions,
regions.size());
- System.err.println("Found " + regions.size() + " regions");
-
- hris = regions.iterator();
- hri = hris.next().getRegionInfo();
- assertTrue(hri.getStartKey() == null || hri.getStartKey().length == 0);
- assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[0]));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[0]));
- assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[1]));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[1]));
- assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[2]));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[2]));
- assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[3]));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[3]));
- assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[4]));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[4]));
- assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[5]));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[5]));
- assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[6]));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[6]));
- assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[7]));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[7]));
- assertTrue(Bytes.equals(hri.getEndKey(), splitKeys[8]));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), splitKeys[8]));
- assertTrue(hri.getEndKey() == null || hri.getEndKey().length == 0);
-
- verifyRoundRobinDistribution(conn, l, expectedRegions);
- }
-
-
-
- // Now test using start/end with a number of regions
-
- // Use 80 bit numbers to make sure we aren't limited
- byte [] startKey = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 };
- byte [] endKey = { 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 };
-
- // Splitting into 10 regions, we expect (null,1) ... (9, null)
- // with (1,2) (2,3) (3,4) (4,5) (5,6) (6,7) (7,8) (8,9) in the middle
-
- expectedRegions = 10;
-
- TableName TABLE_2 = TableName.valueOf(tableName.getNameAsString() + "_2");
-
- desc = new HTableDescriptor(TABLE_2);
- desc.addFamily(new HColumnDescriptor(HConstants.CATALOG_FAMILY));
- ADMIN.createTable(desc, startKey, endKey, expectedRegions);
-
- try (RegionLocator l =
TEST_UTIL.getConnection().getRegionLocator(TABLE_2)) {
- regions = l.getAllRegionLocations();
- assertEquals("Tried to create " + expectedRegions + " regions " +
- "but only found " + regions.size(), expectedRegions, regions.size());
- System.err.println("Found " + regions.size() + " regions");
-
- hris = regions.iterator();
- hri = hris.next().getRegionInfo();
- assertTrue(hri.getStartKey() == null || hri.getStartKey().length == 0);
- assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 1, 1, 1, 1, 1, 1,
1, 1, 1, 1 }));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 1, 1, 1, 1, 1,
1, 1, 1, 1, 1 }));
- assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 2, 2, 2, 2, 2, 2,
2, 2, 2, 2 }));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 2, 2, 2, 2, 2,
2, 2, 2, 2, 2 }));
- assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 3, 3, 3, 3, 3, 3,
3, 3, 3, 3 }));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 3, 3, 3, 3, 3,
3, 3, 3, 3, 3 }));
- assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 4, 4, 4, 4, 4, 4,
4, 4, 4, 4 }));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 4, 4, 4, 4, 4,
4, 4, 4, 4, 4 }));
- assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 5, 5, 5, 5, 5, 5,
5, 5, 5, 5 }));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 5, 5, 5, 5, 5,
5, 5, 5, 5, 5 }));
- assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 6, 6, 6, 6, 6, 6,
6, 6, 6, 6 }));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 6, 6, 6, 6, 6,
6, 6, 6, 6, 6 }));
- assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 7, 7, 7, 7, 7, 7,
7, 7, 7, 7 }));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 7, 7, 7, 7, 7,
7, 7, 7, 7, 7 }));
- assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 8, 8, 8, 8, 8, 8,
8, 8, 8, 8 }));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 8, 8, 8, 8, 8,
8, 8, 8, 8, 8 }));
- assertTrue(Bytes.equals(hri.getEndKey(), new byte[] { 9, 9, 9, 9, 9, 9,
9, 9, 9, 9 }));
- hri = hris.next().getRegionInfo();
- assertTrue(Bytes.equals(hri.getStartKey(), new byte[] { 9, 9, 9, 9, 9,
9, 9, 9, 9, 9 }));
- assertTrue(hri.getEndKey() == null || hri.getEndKey().length == 0);
-
- verifyRoundRobinDistribution(conn, l, expectedRegions);
- }
-
- // Try once more with something that divides into something infinite
-
- startKey = new byte [] { 0, 0, 0, 0, 0, 0 };
- endKey = new byte [] { 1, 0, 0, 0, 0, 0 };
-
- expectedRegions = 5;
-
- TableName TABLE_3 = TableName.valueOf(tableName.getNameAsString() + "_3");
-
- desc = new HTableDescriptor(TABLE_3);
- desc.addFamily(new HColumnDescriptor(HConstants.CATALOG_FAMILY));
- ADMIN.createTable(desc, startKey, endKey, expectedRegions);
-
-
- try (RegionLocator l =
TEST_UTIL.getConnection().getRegionLocator(TABLE_3)) {
- regions = l.getAllRegionLocations();
- assertEquals("Tried to create " + expectedRegions + " regions " +
- "but only found " + regions.size(), expectedRegions, regions.size());
- System.err.println("Found " + regions.size() + " regions");
-
- verifyRoundRobinDistribution(conn, l, expectedRegions);
- }
-
-
- // Try an invalid case where there are duplicate split keys
- splitKeys = new byte [][] {
- new byte [] { 1, 1, 1 },
- new byte [] { 2, 2, 2 },
- new byte [] { 3, 3, 3 },
- new byte [] { 2, 2, 2 }
- };
-
- TableName TABLE_4 = TableName.valueOf(tableName.getNameAsString() + "_4");
- desc = new HTableDescriptor(TABLE_4);
- desc.addFamily(new HColumnDescriptor(HConstants.CATALOG_FAMILY));
- try {
- ADMIN.createTable(desc, splitKeys);
- assertTrue("Should not be able to create this table because of " +
- "duplicate split keys", false);
- } catch(IllegalArgumentException iae) {
- // Expected
- }
- }
-
- @Test
- public void testCreateTableWithOnlyEmptyStartRow() throws IOException {
- final byte[] tableName = Bytes.toBytes(name.getMethodName());
- byte[][] splitKeys = new byte[1][];
- splitKeys[0] = HConstants.EMPTY_BYTE_ARRAY;
- HTableDescriptor desc = new HTableDescriptor(TableName.valueOf(tableName));
- desc.addFamily(new HColumnDescriptor("col"));
- try {
- ADMIN.createTable(desc, splitKeys);
- fail("Test case should fail as empty split key is passed.");
- } catch (IllegalArgumentException e) {
- }
- }
-
- @Test
- public void testCreateTableWithEmptyRowInTheSplitKeys() throws IOException{
- final byte[] tableName = Bytes.toBytes(name.getMethodName());
- byte[][] splitKeys = new byte[3][];
- splitKeys[0] = Bytes.toBytes("region1");
- splitKeys[1] = HConstants.EMPTY_BYTE_ARRAY;
- splitKeys[2] = Bytes.toBytes("region2");
- HTableDescriptor desc = new HTableDescriptor(TableName.valueOf(tableName));
- desc.addFamily(new HColumnDescriptor("col"));
- try {
- ADMIN.createTable(desc, splitKeys);
- fail("Test case should fail as empty split key is passed.");
- } catch (IllegalArgumentException e) {
- LOG.info("Expected ", e);
- }
+ @Test(expected = IllegalArgumentException.class)
+ public void testColumnValidName() {
+ ColumnFamilyDescriptorBuilder.of("\\test\\abc");
}
@Test
@@ -931,14 +167,12 @@ public class TestAdmin1 {
/**
* Tests forcing split from client and having scanners successfully ride
over split.
- * @throws Exception
- * @throws IOException
*/
@Test
public void testForceSplit() throws Exception {
byte[][] familyNames = new byte[][] { Bytes.toBytes("cf") };
int[] rowCounts = new int[] { 6000 };
- int numVersions = HColumnDescriptor.DEFAULT_VERSIONS;
+ int numVersions = ColumnFamilyDescriptorBuilder.DEFAULT_MAX_VERSIONS;
int blockSize = 256;
splitTest(null, familyNames, rowCounts, numVersions, blockSize, true);
@@ -949,56 +183,18 @@ public class TestAdmin1 {
}
/**
- * Test retain assignment on enableTable.
- *
- * @throws IOException
- */
- @Test
- public void testEnableTableRetainAssignment() throws IOException {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- byte[][] splitKeys = { new byte[] { 1, 1, 1 }, new byte[] { 2, 2, 2 },
- new byte[] { 3, 3, 3 }, new byte[] { 4, 4, 4 }, new byte[] { 5, 5, 5 },
- new byte[] { 6, 6, 6 }, new byte[] { 7, 7, 7 }, new byte[] { 8, 8, 8 },
- new byte[] { 9, 9, 9 } };
- int expectedRegions = splitKeys.length + 1;
- HTableDescriptor desc = new HTableDescriptor(tableName);
- desc.addFamily(new HColumnDescriptor(HConstants.CATALOG_FAMILY));
- ADMIN.createTable(desc, splitKeys);
-
- try (RegionLocator l =
TEST_UTIL.getConnection().getRegionLocator(tableName)) {
- List<HRegionLocation> regions = l.getAllRegionLocations();
-
- assertEquals(
- "Tried to create " + expectedRegions + " regions " + "but only found
" + regions.size(),
- expectedRegions, regions.size());
- // Disable table.
- ADMIN.disableTable(tableName);
- // Enable table, use retain assignment to assign regions.
- ADMIN.enableTable(tableName);
- List<HRegionLocation> regions2 = l.getAllRegionLocations();
-
- // Check the assignment.
- assertEquals(regions.size(), regions2.size());
- assertTrue(regions2.containsAll(regions));
- }
- }
-
- /**
- * Multi-family scenario. Tests forcing split from client and
- * having scanners successfully ride over split.
- * @throws Exception
- * @throws IOException
+ * Multi-family scenario. Tests forcing split from client and having
scanners successfully ride
+ * over split.
*/
@Test
public void testForceSplitMultiFamily() throws Exception {
- int numVersions = HColumnDescriptor.DEFAULT_VERSIONS;
+ int numVersions = ColumnFamilyDescriptorBuilder.DEFAULT_MAX_VERSIONS;
// use small HFile block size so that we can have lots of blocks in HFile
// Otherwise, if there is only one block,
// HFileBlockIndex.midKey()'s value == startKey
int blockSize = 256;
- byte[][] familyNames = new byte[][] { Bytes.toBytes("cf1"),
- Bytes.toBytes("cf2") };
+ byte[][] familyNames = new byte[][] { Bytes.toBytes("cf1"),
Bytes.toBytes("cf2") };
// one of the column families isn't splittable
int[] rowCounts = new int[] { 6000, 1 };
@@ -1014,11 +210,18 @@ public class TestAdmin1 {
rowCounts = new int[] { 300, 6000 };
splitTest(null, familyNames, rowCounts, numVersions, blockSize, true);
+ }
+ private int count(ResultScanner scanner) throws IOException {
+ int rows = 0;
+ while (scanner.next() != null) {
+ rows++;
+ }
+ return rows;
}
- void splitTest(byte[] splitPoint, byte[][] familyNames, int[] rowCounts,
- int numVersions, int blockSize, boolean async) throws Exception {
+ private void splitTest(byte[] splitPoint, byte[][] familyNames, int[]
rowCounts, int numVersions,
+ int blockSize, boolean async) throws Exception {
TableName tableName = TableName.valueOf("testForceSplit");
StringBuilder sb = new StringBuilder();
// Add tail to String so can see better in logs where a test is running.
@@ -1026,9 +229,8 @@ public class TestAdmin1 {
sb.append("_").append(Integer.toString(rowCounts[i]));
}
assertFalse(ADMIN.tableExists(tableName));
- try (final Table table = TEST_UTIL.createTable(tableName, familyNames,
- numVersions, blockSize);
- final RegionLocator locator =
TEST_UTIL.getConnection().getRegionLocator(tableName)) {
+ try (final Table table = TEST_UTIL.createTable(tableName, familyNames,
numVersions, blockSize);
+ final RegionLocator locator =
TEST_UTIL.getConnection().getRegionLocator(tableName)) {
int rowCount = 0;
byte[] q = new byte[0];
@@ -1057,68 +259,61 @@ public class TestAdmin1 {
// Verify row count
Scan scan = new Scan();
- ResultScanner scanner = table.getScanner(scan);
- int rows = 0;
- for (@SuppressWarnings("unused") Result result : scanner) {
- rows++;
+ int rows;
+ try (ResultScanner scanner = table.getScanner(scan)) {
+ rows = count(scanner);
}
- scanner.close();
assertEquals(rowCount, rows);
// Have an outstanding scan going on to make sure we can scan over
splits.
scan = new Scan();
- scanner = table.getScanner(scan);
- // Scan first row so we are into first region before split happens.
- scanner.next();
-
- // Split the table
- if (async) {
- ADMIN.split(tableName, splitPoint);
- final AtomicInteger count = new AtomicInteger(0);
- Thread t = new Thread("CheckForSplit") {
- @Override public void run() {
- for (int i = 0; i < 45; i++) {
- try {
- sleep(1000);
- } catch (InterruptedException e) {
- continue;
- }
- // check again
- List<HRegionLocation> regions = null;
- try {
- regions = locator.getAllRegionLocations();
- } catch (IOException e) {
- e.printStackTrace();
- }
- if (regions == null) continue;
- count.set(regions.size());
- if (count.get() >= 2) {
- LOG.info("Found: " + regions);
- break;
+ try (ResultScanner scanner = table.getScanner(scan)) {
+ // Scan first row so we are into first region before split happens.
+ scanner.next();
+
+ // Split the table
+ if (async) {
+ ADMIN.split(tableName, splitPoint);
+ final AtomicInteger count = new AtomicInteger(0);
+ Thread t = new Thread("CheckForSplit") {
+ @Override
+ public void run() {
+ for (int i = 0; i < 45; i++) {
+ try {
+ sleep(1000);
+ } catch (InterruptedException e) {
+ continue;
+ }
+ // check again
+ List<HRegionLocation> regions = null;
+ try {
+ regions = locator.getAllRegionLocations();
+ } catch (IOException e) {
+ LOG.warn("get location failed", e);
+ }
+ if (regions == null) {
+ continue;
+ }
+ count.set(regions.size());
+ if (count.get() >= 2) {
+ LOG.info("Found: " + regions);
+ break;
+ }
+ LOG.debug("Cycle waiting on split");
}
- LOG.debug("Cycle waiting on split");
+ LOG.debug("CheckForSplit thread exited, current region count: "
+ count.get());
}
- LOG.debug("CheckForSplit thread exited, current region count: " +
count.get());
- }
- };
- t.setPriority(Thread.NORM_PRIORITY - 2);
- t.start();
- t.join();
- } else {
- // Sync split region, no need to create a thread to check
- ADMIN.splitRegionAsync(m.get(0).getRegion().getRegionName(),
splitPoint).get();
- }
-
- // Verify row count
- rows = 1; // We counted one row above.
- for (@SuppressWarnings("unused") Result result : scanner) {
- rows++;
- if (rows > rowCount) {
- scanner.close();
- assertTrue("Scanned more than expected (" + rowCount + ")", false);
+ };
+ t.setPriority(Thread.NORM_PRIORITY - 2);
+ t.start();
+ t.join();
+ } else {
+ // Sync split region, no need to create a thread to check
+ ADMIN.splitRegionAsync(m.get(0).getRegion().getRegionName(),
splitPoint).get();
}
+ // Verify row count
+ rows = 1 + count(scanner); // We counted one row above.
}
- scanner.close();
assertEquals(rowCount, rows);
List<HRegionLocation> regions = null;
@@ -1131,23 +326,23 @@ public class TestAdmin1 {
if (splitPoint != null) {
// make sure the split point matches our explicit configuration
assertEquals(Bytes.toString(splitPoint),
- Bytes.toString(regions.get(0).getRegionInfo().getEndKey()));
+ Bytes.toString(regions.get(0).getRegion().getEndKey()));
assertEquals(Bytes.toString(splitPoint),
- Bytes.toString(regions.get(1).getRegionInfo().getStartKey()));
+ Bytes.toString(regions.get(1).getRegion().getStartKey()));
LOG.debug("Properly split on " + Bytes.toString(splitPoint));
} else {
if (familyNames.length > 1) {
- int splitKey =
Bytes.toInt(regions.get(0).getRegionInfo().getEndKey());
+ int splitKey = Bytes.toInt(regions.get(0).getRegion().getEndKey());
// check if splitKey is based on the largest column family
// in terms of it store size
int deltaForLargestFamily = Math.abs(rowCount / 2 - splitKey);
LOG.debug("SplitKey=" + splitKey + "&deltaForLargestFamily=" +
deltaForLargestFamily +
- ", r=" + regions.get(0).getRegionInfo());
+ ", r=" + regions.get(0).getRegion());
for (int index = 0; index < familyNames.length; index++) {
int delta = Math.abs(rowCounts[index] / 2 - splitKey);
if (delta < deltaForLargestFamily) {
- assertTrue("Delta " + delta + " for family " + index + " should
be at least "
- + "deltaForLargestFamily " + deltaForLargestFamily,
false);
+ assertTrue("Delta " + delta + " for family " + index + " should
be at least " +
+ "deltaForLargestFamily " + deltaForLargestFamily, false);
}
}
}
@@ -1162,38 +357,36 @@ public class TestAdmin1 {
// are not allowed. The test validates that. Then the test does a valid
split/merge of allowed
// regions.
// Set up a table with 3 regions and replication set to 3
- final TableName tableName = TableName.valueOf(name.getMethodName());
- HTableDescriptor desc = new HTableDescriptor(tableName);
- desc.setRegionReplication(3);
+ TableName tableName = TableName.valueOf(name.getMethodName());
byte[] cf = Bytes.toBytes("f");
- HColumnDescriptor hcd = new HColumnDescriptor(cf);
- desc.addFamily(hcd);
+ TableDescriptor desc =
TableDescriptorBuilder.newBuilder(tableName).setRegionReplication(3)
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of(cf)).build();
byte[][] splitRows = new byte[2][];
- splitRows[0] = new byte[]{(byte)'4'};
- splitRows[1] = new byte[]{(byte)'7'};
+ splitRows[0] = new byte[] { (byte) '4' };
+ splitRows[1] = new byte[] { (byte) '7' };
TEST_UTIL.getAdmin().createTable(desc, splitRows);
List<HRegion> oldRegions;
do {
oldRegions = TEST_UTIL.getHBaseCluster().getRegions(tableName);
Thread.sleep(10);
- } while (oldRegions.size() != 9); //3 regions * 3 replicas
+ } while (oldRegions.size() != 9); // 3 regions * 3 replicas
// write some data to the table
Table ht = TEST_UTIL.getConnection().getTable(tableName);
List<Put> puts = new ArrayList<>();
byte[] qualifier = Bytes.toBytes("c");
- Put put = new Put(new byte[]{(byte)'1'});
+ Put put = new Put(new byte[] { (byte) '1' });
put.addColumn(cf, qualifier, Bytes.toBytes("100"));
puts.add(put);
- put = new Put(new byte[]{(byte)'6'});
+ put = new Put(new byte[] { (byte) '6' });
put.addColumn(cf, qualifier, Bytes.toBytes("100"));
puts.add(put);
- put = new Put(new byte[]{(byte)'8'});
+ put = new Put(new byte[] { (byte) '8' });
put.addColumn(cf, qualifier, Bytes.toBytes("100"));
puts.add(put);
ht.put(puts);
ht.close();
List<Pair<RegionInfo, ServerName>> regions =
-
MetaTableAccessor.getTableRegionsAndLocations(TEST_UTIL.getConnection(),
tableName);
+ MetaTableAccessor.getTableRegionsAndLocations(TEST_UTIL.getConnection(),
tableName);
boolean gotException = false;
// the element at index 1 would be a replica (since the metareader gives
us ordered
// regions). Try splitting that region via the split API . Should fail
@@ -1209,17 +402,18 @@ public class TestAdmin1 {
// this API goes direct to the regionserver skipping any checks in the
admin). Should fail
try {
TEST_UTIL.getHBaseAdmin().splitRegionAsync(regions.get(1).getFirst(),
- new byte[]{(byte)'1'});
+ new byte[] { (byte) '1' });
} catch (IOException ex) {
gotException = true;
}
assertTrue(gotException);
gotException = false;
- //testing Sync split operation
+ // testing Sync split operation
try {
-
TEST_UTIL.getHBaseAdmin().splitRegionSync(regions.get(1).getFirst().getRegionName(),
- new byte[]{(byte)'1'});
+ TEST_UTIL.getAdmin()
+ .splitRegionAsync(regions.get(1).getFirst().getRegionName(), new
byte[] { (byte) '1' })
+ .get();
} catch (IllegalArgumentException ex) {
gotException = true;
}
@@ -1228,10 +422,8 @@ public class TestAdmin1 {
gotException = false;
// Try merging a replica with another. Should fail.
try {
- TEST_UTIL.getHBaseAdmin().mergeRegionsSync(
- regions.get(1).getFirst().getEncodedNameAsBytes(),
- regions.get(2).getFirst().getEncodedNameAsBytes(),
- true);
+
TEST_UTIL.getAdmin().mergeRegionsAsync(regions.get(1).getFirst().getEncodedNameAsBytes(),
+ regions.get(2).getFirst().getEncodedNameAsBytes(), true).get();
} catch (IllegalArgumentException m) {
gotException = true;
}
@@ -1239,16 +431,12 @@ public class TestAdmin1 {
// Try going to the master directly (that will skip the check in admin)
try {
byte[][] nameofRegionsToMerge = new byte[2][];
- nameofRegionsToMerge[0] =
regions.get(1).getFirst().getEncodedNameAsBytes();
+ nameofRegionsToMerge[0] =
regions.get(1).getFirst().getEncodedNameAsBytes();
nameofRegionsToMerge[1] =
regions.get(2).getFirst().getEncodedNameAsBytes();
- MergeTableRegionsRequest request = RequestConverter
- .buildMergeTableRegionsRequest(
- nameofRegionsToMerge,
- true,
- HConstants.NO_NONCE,
- HConstants.NO_NONCE);
- ((ClusterConnection) TEST_UTIL.getAdmin().getConnection()).getMaster()
- .mergeTableRegions(null, request);
+ MergeTableRegionsRequest request =
RequestConverter.buildMergeTableRegionsRequest(
+ nameofRegionsToMerge, true, HConstants.NO_NONCE, HConstants.NO_NONCE);
+ ((ClusterConnection)
TEST_UTIL.getAdmin().getConnection()).getMaster().mergeTableRegions(null,
+ request);
} catch (org.apache.hbase.thirdparty.com.google.protobuf.ServiceException
m) {
Throwable t = m.getCause();
do {
@@ -1262,66 +450,12 @@ public class TestAdmin1 {
assertTrue(gotException);
}
- @Test (expected=IllegalArgumentException.class)
- public void testInvalidHColumnDescriptor() throws IOException {
- new HColumnDescriptor("/cfamily/name");
- }
-
- @Test
- public void testEnableDisableAddColumnDeleteColumn() throws Exception {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
- while (!ADMIN.isTableEnabled(TableName.valueOf(name.getMethodName()))) {
- Thread.sleep(10);
- }
- ADMIN.disableTable(tableName);
- try {
- TEST_UTIL.getConnection().getTable(tableName);
- } catch (org.apache.hadoop.hbase.DoNotRetryIOException e) {
- //expected
- }
-
- ADMIN.addColumnFamily(tableName, new HColumnDescriptor("col2"));
- ADMIN.enableTable(tableName);
- try {
- ADMIN.deleteColumnFamily(tableName, Bytes.toBytes("col2"));
- } catch (TableNotDisabledException e) {
- LOG.info(e.toString(), e);
- }
- ADMIN.disableTable(tableName);
- ADMIN.deleteTable(tableName);
+ @Test(expected = IllegalArgumentException.class)
+ public void testInvalidColumnDescriptor() throws IOException {
+ ColumnFamilyDescriptorBuilder.of("/cfamily/name");
}
- @Test
- public void testDeleteLastColumnFamily() throws Exception {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
- while (!ADMIN.isTableEnabled(TableName.valueOf(name.getMethodName()))) {
- Thread.sleep(10);
- }
-
- // test for enabled table
- try {
- ADMIN.deleteColumnFamily(tableName, HConstants.CATALOG_FAMILY);
- fail("Should have failed to delete the only column family of a table");
- } catch (InvalidFamilyOperationException ex) {
- // expected
- }
-
- // test for disabled table
- ADMIN.disableTable(tableName);
-
- try {
- ADMIN.deleteColumnFamily(tableName, HConstants.CATALOG_FAMILY);
- fail("Should have failed to delete the only column family of a table");
- } catch (InvalidFamilyOperationException ex) {
- // expected
- }
-
- ADMIN.deleteTable(tableName);
- }
-
- /*
+ /**
* Test DFS replication for column families, where one CF has default
replication(3) and the other
* is set to 1.
*/
@@ -1329,13 +463,12 @@ public class TestAdmin1 {
public void testHFileReplication() throws Exception {
final TableName tableName = TableName.valueOf(this.name.getMethodName());
String fn1 = "rep1";
- HColumnDescriptor hcd1 = new HColumnDescriptor(fn1);
- hcd1.setDFSReplication((short) 1);
String fn = "defaultRep";
- HColumnDescriptor hcd = new HColumnDescriptor(fn);
- HTableDescriptor htd = new HTableDescriptor(tableName);
- htd.addFamily(hcd);
- htd.addFamily(hcd1);
+ TableDescriptor htd = TableDescriptorBuilder.newBuilder(tableName)
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of(fn))
+
.setColumnFamily(ColumnFamilyDescriptorBuilder.newBuilder(Bytes.toBytes(fn1))
+ .setDFSReplication((short) 1).build())
+ .build();
Table table = TEST_UTIL.createTable(htd, null);
TEST_UTIL.waitTableAvailable(tableName);
Put p = new Put(Bytes.toBytes("defaultRep_rk"));
@@ -1357,15 +490,15 @@ public class TestAdmin1 {
for (HStoreFile sf : store.getStorefiles()) {
assertTrue(sf.toString().contains(fn));
assertTrue("Column family " + fn + " should have 3 copies",
- FSUtils.getDefaultReplication(TEST_UTIL.getTestFileSystem(),
sf.getPath()) == (sf
- .getFileInfo().getFileStatus().getReplication()));
+ FSUtils.getDefaultReplication(TEST_UTIL.getTestFileSystem(),
+ sf.getPath()) ==
(sf.getFileInfo().getFileStatus().getReplication()));
}
store = r.getStore(Bytes.toBytes(fn1));
for (HStoreFile sf : store.getStorefiles()) {
assertTrue(sf.toString().contains(fn1));
- assertTrue("Column family " + fn1 + " should have only 1 copy", 1 ==
sf.getFileInfo()
- .getFileStatus().getReplication());
+ assertTrue("Column family " + fn1 + " should have only 1 copy",
+ 1 == sf.getFileInfo().getFileStatus().getReplication());
}
}
} finally {
@@ -1379,12 +512,11 @@ public class TestAdmin1 {
@Test
public void testMergeRegions() throws Exception {
final TableName tableName = TableName.valueOf(name.getMethodName());
- HColumnDescriptor cd = new HColumnDescriptor("d");
- HTableDescriptor td = new HTableDescriptor(tableName);
- td.addFamily(cd);
+ TableDescriptor td = TableDescriptorBuilder.newBuilder(tableName)
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of("d")).build();
byte[][] splitRows = new byte[2][];
- splitRows[0] = new byte[]{(byte)'3'};
- splitRows[1] = new byte[]{(byte)'6'};
+ splitRows[0] = new byte[] { (byte) '3' };
+ splitRows[1] = new byte[] { (byte) '6' };
try {
TEST_UTIL.createTable(td, splitRows);
TEST_UTIL.waitTableAvailable(tableName);
@@ -1399,8 +531,8 @@ public class TestAdmin1 {
regionA = tableRegions.get(0);
regionB = tableRegions.get(1);
// TODO convert this to version that is synchronous (See HBASE-16668)
- ADMIN.mergeRegionsAsync(regionA.getRegionName(),
regionB.getRegionName(), false)
- .get(60, TimeUnit.SECONDS);
+ ADMIN.mergeRegionsAsync(regionA.getRegionName(),
regionB.getRegionName(), false).get(60,
+ TimeUnit.SECONDS);
assertEquals(2, ADMIN.getRegions(tableName).size());
@@ -1409,9 +541,9 @@ public class TestAdmin1 {
regionA = tableRegions.get(0);
regionB = tableRegions.get(1);
// TODO convert this to version that is synchronous (See HBASE-16668)
- ADMIN.mergeRegionsAsync(
- regionA.getEncodedNameAsBytes(), regionB.getEncodedNameAsBytes(),
false)
- .get(60, TimeUnit.SECONDS);
+ ADMIN
+ .mergeRegionsAsync(regionA.getEncodedNameAsBytes(),
regionB.getEncodedNameAsBytes(), false)
+ .get(60, TimeUnit.SECONDS);
assertEquals(1, ADMIN.getRegions(tableName).size());
} finally {
@@ -1465,15 +597,14 @@ public class TestAdmin1 {
}
@Test
- public void testSplitShouldNotHappenIfSplitIsDisabledForTable()
- throws Exception {
+ public void testSplitShouldNotHappenIfSplitIsDisabledForTable() throws
Exception {
final TableName tableName = TableName.valueOf(name.getMethodName());
- HTableDescriptor htd = new HTableDescriptor(tableName);
- htd.addFamily(new HColumnDescriptor("f"));
-
htd.setRegionSplitPolicyClassName(DisabledRegionSplitPolicy.class.getName());
+ TableDescriptor htd = TableDescriptorBuilder.newBuilder(tableName)
+ .setRegionSplitPolicyClassName(DisabledRegionSplitPolicy.class.getName())
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of("f")).build();
Table table = TEST_UTIL.createTable(htd, null);
- for(int i = 0; i < 10; i++) {
- Put p = new Put(Bytes.toBytes("row"+i));
+ for (int i = 0; i < 10; i++) {
+ Put p = new Put(Bytes.toBytes("row" + i));
byte[] q1 = Bytes.toBytes("q1");
byte[] v1 = Bytes.toBytes("v1");
p.addColumn(Bytes.toBytes("f"), q1, v1);
@@ -1487,120 +618,8 @@ public class TestAdmin1 {
// Nothing to do.
}
// Split should not happen.
- List<RegionInfo> allRegions = MetaTableAccessor.getTableRegions(
- ADMIN.getConnection(), tableName, true);
+ List<RegionInfo> allRegions =
+ MetaTableAccessor.getTableRegions(ADMIN.getConnection(), tableName,
true);
assertEquals(1, allRegions.size());
}
-
- @Test
- public void testCloneTableSchema() throws Exception {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- final TableName newTableName =
TableName.valueOf(tableName.getNameAsString() + "_new");
- testCloneTableSchema(tableName, newTableName, false);
- }
-
- @Test
- public void testCloneTableSchemaPreservingSplits() throws Exception {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- final TableName newTableName =
TableName.valueOf(tableName.getNameAsString() + "_new");
- testCloneTableSchema(tableName, newTableName, true);
- }
-
- private void testCloneTableSchema(final TableName tableName,
- final TableName newTableName, boolean preserveSplits) throws Exception {
- byte[] FAMILY_0 = Bytes.toBytes("cf0");
- byte[] FAMILY_1 = Bytes.toBytes("cf1");
- byte[][] splitKeys = new byte[2][];
- splitKeys[0] = Bytes.toBytes(4);
- splitKeys[1] = Bytes.toBytes(8);
- int NUM_FAMILYS = 2;
- int NUM_REGIONS = 3;
- int BLOCK_SIZE = 1024;
- int TTL = 86400;
- boolean BLOCK_CACHE = false;
-
- // Create the table
- TableDescriptor tableDesc = TableDescriptorBuilder
- .newBuilder(tableName)
- .setColumnFamily(ColumnFamilyDescriptorBuilder.of(FAMILY_0))
- .setColumnFamily(ColumnFamilyDescriptorBuilder
- .newBuilder(FAMILY_1)
- .setBlocksize(BLOCK_SIZE)
- .setBlockCacheEnabled(BLOCK_CACHE)
- .setTimeToLive(TTL)
- .build()
- ).build();
- ADMIN.createTable(tableDesc, splitKeys);
-
- assertEquals(NUM_REGIONS,
TEST_UTIL.getHBaseCluster().getRegions(tableName).size());
- assertTrue("Table should be created with splitKyes + 1 rows in META",
- ADMIN.isTableAvailable(tableName));
-
- // clone & Verify
- ADMIN.cloneTableSchema(tableName, newTableName, preserveSplits);
- TableDescriptor newTableDesc = ADMIN.getDescriptor(newTableName);
-
- assertEquals(NUM_FAMILYS, newTableDesc.getColumnFamilyCount());
- assertEquals(BLOCK_SIZE,
newTableDesc.getColumnFamily(FAMILY_1).getBlocksize());
- assertEquals(BLOCK_CACHE,
newTableDesc.getColumnFamily(FAMILY_1).isBlockCacheEnabled());
- assertEquals(TTL, newTableDesc.getColumnFamily(FAMILY_1).getTimeToLive());
- TEST_UTIL.verifyTableDescriptorIgnoreTableName(tableDesc, newTableDesc);
-
- if (preserveSplits) {
- assertEquals(NUM_REGIONS,
TEST_UTIL.getHBaseCluster().getRegions(newTableName).size());
- assertTrue("New table should be created with splitKyes + 1 rows in META",
- ADMIN.isTableAvailable(newTableName));
- } else {
- assertEquals(1,
TEST_UTIL.getHBaseCluster().getRegions(newTableName).size());
- }
- }
-
- @Test
- public void testCloneTableSchemaWithNonExistentSourceTable() throws
Exception {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- final TableName newTableName =
TableName.valueOf(tableName.getNameAsString() + "_new");
- // test for non-existent source table
- try {
- ADMIN.cloneTableSchema(tableName, newTableName, false);
- fail("Should have failed to create a new table by cloning non-existent
source table.");
- } catch (TableNotFoundException ex) {
- // expected
- }
- }
-
- @Test
- public void testCloneTableSchemaWithExistentDestinationTable() throws
Exception {
- final TableName tableName = TableName.valueOf(name.getMethodName());
- final TableName newTableName =
TableName.valueOf(tableName.getNameAsString() + "_new");
- byte[] FAMILY_0 = Bytes.toBytes("cf0");
- TEST_UTIL.createTable(tableName, FAMILY_0);
- TEST_UTIL.createTable(newTableName, FAMILY_0);
- // test for existent destination table
- try {
- ADMIN.cloneTableSchema(tableName, newTableName, false);
- fail("Should have failed to create a existent table.");
- } catch (TableExistsException ex) {
- // expected
- }
- }
-
- @Test
- public void testModifyTableOnTableWithRegionReplicas() throws Exception {
- TableName tableName = TableName.valueOf(name.getMethodName());
- TableDescriptor desc = TableDescriptorBuilder.newBuilder(tableName)
- .setColumnFamily(ColumnFamilyDescriptorBuilder.of(Bytes.toBytes("cf")))
- .setRegionReplication(5)
- .build();
-
- ADMIN.createTable(desc);
-
- int maxFileSize = 10000000;
- TableDescriptor newDesc = TableDescriptorBuilder.newBuilder(desc)
- .setMaxFileSize(maxFileSize)
- .build();
-
- ADMIN.modifyTable(newDesc);
- TableDescriptor newTableDesc = ADMIN.getDescriptor(tableName);
- assertEquals(maxFileSize, newTableDesc.getMaxFileSize());
- }
}
diff --git
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin2.java
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin2.java
index f4aafc0..c7bc52c 100644
--- a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin2.java
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin2.java
@@ -33,7 +33,6 @@ import java.util.stream.Collectors;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.ClusterMetrics.Option;
import org.apache.hadoop.hbase.HBaseClassTestRule;
-import org.apache.hadoop.hbase.HBaseTestingUtility;
import org.apache.hadoop.hbase.HColumnDescriptor;
import org.apache.hadoop.hbase.HConstants;
import org.apache.hadoop.hbase.HRegionLocation;
@@ -60,15 +59,10 @@ import
org.apache.hadoop.hbase.testclassification.LargeTests;
import org.apache.hadoop.hbase.util.Bytes;
import org.apache.hadoop.hbase.util.Pair;
import org.apache.hadoop.hbase.wal.AbstractFSWALProvider;
-import org.junit.After;
-import org.junit.AfterClass;
import org.junit.Assert;
-import org.junit.BeforeClass;
import org.junit.ClassRule;
-import org.junit.Rule;
import org.junit.Test;
import org.junit.experimental.categories.Category;
-import org.junit.rules.TestName;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -80,42 +74,13 @@ import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
* Add any testing of HBaseAdmin functionality here.
*/
@Category({LargeTests.class, ClientTests.class})
-public class TestAdmin2 {
+public class TestAdmin2 extends TestAdminBase {
@ClassRule
public static final HBaseClassTestRule CLASS_RULE =
HBaseClassTestRule.forClass(TestAdmin2.class);
private static final Logger LOG = LoggerFactory.getLogger(TestAdmin2.class);
- private final static HBaseTestingUtility TEST_UTIL = new
HBaseTestingUtility();
- private static Admin ADMIN;
-
- @Rule
- public TestName name = new TestName();
-
- @BeforeClass
- public static void setUpBeforeClass() throws Exception {
- TEST_UTIL.getConfiguration().setInt("hbase.regionserver.msginterval", 100);
- TEST_UTIL.getConfiguration().setInt("hbase.client.pause", 250);
- TEST_UTIL.getConfiguration().setInt("hbase.client.retries.number", 6);
-
TEST_UTIL.getConfiguration().setInt(HConstants.REGION_SERVER_HIGH_PRIORITY_HANDLER_COUNT,
30);
-
TEST_UTIL.getConfiguration().setInt(HConstants.REGION_SERVER_HANDLER_COUNT, 30);
-
TEST_UTIL.getConfiguration().setBoolean("hbase.master.enabletable.roundrobin",
true);
- TEST_UTIL.startMiniCluster(3);
- ADMIN = TEST_UTIL.getAdmin();
- }
-
- @AfterClass
- public static void tearDownAfterClass() throws Exception {
- TEST_UTIL.shutdownMiniCluster();
- }
-
- @After
- public void tearDown() throws Exception {
- for (TableDescriptor htd : ADMIN.listTableDescriptors()) {
- TEST_UTIL.deleteTable(htd.getTableName());
- }
- }
@Test
public void testCreateBadTables() throws IOException {
@@ -409,7 +374,6 @@ public class TestAdmin2 {
/**
* For HBASE-2556
- * @throws IOException
*/
@Test
public void testGetTableRegions() throws IOException {
diff --git
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin3.java
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin3.java
new file mode 100644
index 0000000..c648db9
--- /dev/null
+++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin3.java
@@ -0,0 +1,409 @@
+/**
+ * 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.client;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.regex.Pattern;
+import org.apache.hadoop.hbase.HBaseClassTestRule;
+import org.apache.hadoop.hbase.HConstants;
+import org.apache.hadoop.hbase.HRegionLocation;
+import org.apache.hadoop.hbase.InvalidFamilyOperationException;
+import org.apache.hadoop.hbase.MetaTableAccessor;
+import org.apache.hadoop.hbase.TableName;
+import org.apache.hadoop.hbase.TableNotDisabledException;
+import org.apache.hadoop.hbase.TableNotEnabledException;
+import org.apache.hadoop.hbase.TableNotFoundException;
+import org.apache.hadoop.hbase.testclassification.ClientTests;
+import org.apache.hadoop.hbase.testclassification.LargeTests;
+import org.apache.hadoop.hbase.util.Bytes;
+import org.junit.ClassRule;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+@Category({ LargeTests.class, ClientTests.class })
+public class TestAdmin3 extends TestAdminBase {
+
+ @ClassRule
+ public static final HBaseClassTestRule CLASS_RULE =
HBaseClassTestRule.forClass(TestAdmin3.class);
+
+ private static final Logger LOG = LoggerFactory.getLogger(TestAdmin3.class);
+
+ @Test
+ public void testDisableAndEnableTable() throws IOException {
+ final byte[] row = Bytes.toBytes("row");
+ final byte[] qualifier = Bytes.toBytes("qualifier");
+ final byte[] value = Bytes.toBytes("value");
+ final TableName table = TableName.valueOf(name.getMethodName());
+ Table ht = TEST_UTIL.createTable(table, HConstants.CATALOG_FAMILY);
+ Put put = new Put(row);
+ put.addColumn(HConstants.CATALOG_FAMILY, qualifier, value);
+ ht.put(put);
+ Get get = new Get(row);
+ get.addColumn(HConstants.CATALOG_FAMILY, qualifier);
+ ht.get(get);
+
+ ADMIN.disableTable(ht.getName());
+ assertTrue("Table must be disabled.",
TEST_UTIL.getHBaseCluster().getMaster()
+ .getTableStateManager().isTableState(ht.getName(),
TableState.State.DISABLED));
+ assertEquals(TableState.State.DISABLED, getStateFromMeta(table));
+
+ // Test that table is disabled
+ get = new Get(row);
+ get.addColumn(HConstants.CATALOG_FAMILY, qualifier);
+ boolean ok = false;
+ try {
+ ht.get(get);
+ } catch (TableNotEnabledException e) {
+ ok = true;
+ }
+ ok = false;
+ // verify that scan encounters correct exception
+ Scan scan = new Scan();
+ try {
+ ResultScanner scanner = ht.getScanner(scan);
+ Result res = null;
+ do {
+ res = scanner.next();
+ } while (res != null);
+ } catch (TableNotEnabledException e) {
+ ok = true;
+ }
+ assertTrue(ok);
+ ADMIN.enableTable(table);
+ assertTrue("Table must be enabled.",
TEST_UTIL.getHBaseCluster().getMaster()
+ .getTableStateManager().isTableState(ht.getName(),
TableState.State.ENABLED));
+ assertEquals(TableState.State.ENABLED, getStateFromMeta(table));
+
+ // Test that table is enabled
+ try {
+ ht.get(get);
+ } catch (RetriesExhaustedException e) {
+ ok = false;
+ }
+ assertTrue(ok);
+ ht.close();
+ }
+
+ @Test
+ public void testDisableAndEnableTables() throws IOException {
+ final byte[] row = Bytes.toBytes("row");
+ final byte[] qualifier = Bytes.toBytes("qualifier");
+ final byte[] value = Bytes.toBytes("value");
+ final TableName table1 = TableName.valueOf(name.getMethodName() + "1");
+ final TableName table2 = TableName.valueOf(name.getMethodName() + "2");
+ Table ht1 = TEST_UTIL.createTable(table1, HConstants.CATALOG_FAMILY);
+ Table ht2 = TEST_UTIL.createTable(table2, HConstants.CATALOG_FAMILY);
+ Put put = new Put(row);
+ put.addColumn(HConstants.CATALOG_FAMILY, qualifier, value);
+ ht1.put(put);
+ ht2.put(put);
+ Get get = new Get(row);
+ get.addColumn(HConstants.CATALOG_FAMILY, qualifier);
+ ht1.get(get);
+ ht2.get(get);
+
+ TableName[] tableNames =
ADMIN.listTableNames(Pattern.compile("testDisableAndEnableTable.*"));
+ for (TableName tableName : tableNames) {
+ ADMIN.disableTable(tableName);
+ }
+
+ // Test that tables are disabled
+ get = new Get(row);
+ get.addColumn(HConstants.CATALOG_FAMILY, qualifier);
+ boolean ok = false;
+ try {
+ ht1.get(get);
+ ht2.get(get);
+ } catch (org.apache.hadoop.hbase.DoNotRetryIOException e) {
+ ok = true;
+ }
+
+ assertEquals(TableState.State.DISABLED, getStateFromMeta(table1));
+ assertEquals(TableState.State.DISABLED, getStateFromMeta(table2));
+
+ assertTrue(ok);
+ for (TableName tableName : tableNames) {
+ ADMIN.enableTable(tableName);
+ }
+
+ // Test that tables are enabled
+ try {
+ ht1.get(get);
+ } catch (IOException e) {
+ ok = false;
+ }
+ try {
+ ht2.get(get);
+ } catch (IOException e) {
+ ok = false;
+ }
+ assertTrue(ok);
+
+ ht1.close();
+ ht2.close();
+
+ assertEquals(TableState.State.ENABLED, getStateFromMeta(table1));
+ assertEquals(TableState.State.ENABLED, getStateFromMeta(table2));
+ }
+
+ /**
+ * Test retain assignment on enableTable.
+ */
+ @Test
+ public void testEnableTableRetainAssignment() throws IOException {
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ byte[][] splitKeys = { new byte[] { 1, 1, 1 }, new byte[] { 2, 2, 2 }, new
byte[] { 3, 3, 3 },
+ new byte[] { 4, 4, 4 }, new byte[] { 5, 5, 5 }, new byte[] { 6, 6, 6 },
+ new byte[] { 7, 7, 7 }, new byte[] { 8, 8, 8 }, new byte[] { 9, 9, 9 } };
+ int expectedRegions = splitKeys.length + 1;
+ TableDescriptor desc = TableDescriptorBuilder.newBuilder(tableName)
+
.setColumnFamily(ColumnFamilyDescriptorBuilder.of(HConstants.CATALOG_FAMILY)).build();
+ ADMIN.createTable(desc, splitKeys);
+
+ try (RegionLocator l =
TEST_UTIL.getConnection().getRegionLocator(tableName)) {
+ List<HRegionLocation> regions = l.getAllRegionLocations();
+
+ assertEquals(
+ "Tried to create " + expectedRegions + " regions " + "but only found "
+ regions.size(),
+ expectedRegions, regions.size());
+ // Disable table.
+ ADMIN.disableTable(tableName);
+ // Enable table, use retain assignment to assign regions.
+ ADMIN.enableTable(tableName);
+ List<HRegionLocation> regions2 = l.getAllRegionLocations();
+
+ // Check the assignment.
+ assertEquals(regions.size(), regions2.size());
+ assertTrue(regions2.containsAll(regions));
+ }
+ }
+
+ @Test
+ public void testEnableDisableAddColumnDeleteColumn() throws Exception {
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
+ while (!ADMIN.isTableEnabled(TableName.valueOf(name.getMethodName()))) {
+ Thread.sleep(10);
+ }
+ ADMIN.disableTable(tableName);
+ try {
+ TEST_UTIL.getConnection().getTable(tableName);
+ } catch (org.apache.hadoop.hbase.DoNotRetryIOException e) {
+ // expected
+ }
+
+ ADMIN.addColumnFamily(tableName, ColumnFamilyDescriptorBuilder.of("col2"));
+ ADMIN.enableTable(tableName);
+ try {
+ ADMIN.deleteColumnFamily(tableName, Bytes.toBytes("col2"));
+ } catch (TableNotDisabledException e) {
+ LOG.info(e.toString(), e);
+ }
+ ADMIN.disableTable(tableName);
+ ADMIN.deleteTable(tableName);
+ }
+
+ @Test
+ public void testGetTableDescriptor() throws IOException {
+ TableDescriptor htd =
TableDescriptorBuilder.newBuilder(TableName.valueOf(name.getMethodName()))
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of("fam1"))
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of("fam2"))
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of("fam3")).build();
+ ADMIN.createTable(htd);
+ Table table = TEST_UTIL.getConnection().getTable(htd.getTableName());
+ TableDescriptor confirmedHtd = table.getDescriptor();
+ assertEquals(0, TableDescriptor.COMPARATOR.compare(htd, confirmedHtd));
+ MetaTableAccessor.fullScanMetaAndPrint(TEST_UTIL.getConnection());
+ table.close();
+ }
+
+ /**
+ * Verify schema change for read only table
+ */
+ @Test
+ public void testReadOnlyTableModify() throws IOException,
InterruptedException {
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
+
+ // Make table read only
+ TableDescriptor htd =
+
TableDescriptorBuilder.newBuilder(ADMIN.getDescriptor(tableName)).setReadOnly(true).build();
+ ADMIN.modifyTable(htd);
+
+ // try to modify the read only table now
+ htd = TableDescriptorBuilder.newBuilder(ADMIN.getDescriptor(tableName))
+ .setCompactionEnabled(false).build();
+ ADMIN.modifyTable(htd);
+ // Delete the table
+ ADMIN.disableTable(tableName);
+ ADMIN.deleteTable(tableName);
+ assertFalse(ADMIN.tableExists(tableName));
+ }
+
+ @Test(expected = TableNotDisabledException.class)
+ public void testModifyRegionReplicasEnabledTable() throws Exception {
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
+
+ // Modify region replication count
+ TableDescriptor htd =
TableDescriptorBuilder.newBuilder(ADMIN.getDescriptor(tableName))
+ .setRegionReplication(3).build();
+ try {
+ // try to modify the region replication count without disabling the table
+ ADMIN.modifyTable(htd);
+ fail("Expected an exception");
+ } finally {
+ // Delete the table
+ ADMIN.disableTable(tableName);
+ ADMIN.deleteTable(tableName);
+ assertFalse(ADMIN.tableExists(tableName));
+ }
+ }
+
+ @Test
+ public void testDeleteLastColumnFamily() throws Exception {
+ final TableName tableName = TableName.valueOf(name.getMethodName());
+ TEST_UTIL.createTable(tableName, HConstants.CATALOG_FAMILY).close();
+ while (!ADMIN.isTableEnabled(TableName.valueOf(name.getMethodName()))) {
+ Thread.sleep(10);
+ }
+
+ // test for enabled table
+ try {
+ ADMIN.deleteColumnFamily(tableName, HConstants.CATALOG_FAMILY);
+ fail("Should have failed to delete the only column family of a table");
+ } catch (InvalidFamilyOperationException ex) {
+ // expected
+ }
+
+ // test for disabled table
+ ADMIN.disableTable(tableName);
+
+ try {
+ ADMIN.deleteColumnFamily(tableName, HConstants.CATALOG_FAMILY);
+ fail("Should have failed to delete the only column family of a table");
+ } catch (InvalidFamilyOperationException ex) {
+ // expected
+ }
+
+ ADMIN.deleteTable(tableName);
+ }
+
+ @Test
+ public void testDeleteEditUnknownColumnFamilyAndOrTable() throws IOException
{
+ // Test we get exception if we try to
+ final TableName nonexistentTable = TableName.valueOf("nonexistent");
+ final byte[] nonexistentColumn = Bytes.toBytes("nonexistent");
+ ColumnFamilyDescriptor nonexistentHcd =
ColumnFamilyDescriptorBuilder.of(nonexistentColumn);
+ Exception exception = null;
+ try {
+ ADMIN.addColumnFamily(nonexistentTable, nonexistentHcd);
+ } catch (IOException e) {
+ exception = e;
+ }
+ assertTrue(exception instanceof TableNotFoundException);
+
+ exception = null;
+ try {
+ ADMIN.deleteTable(nonexistentTable);
+ } catch (IOException e) {
+ exception = e;
+ }
+ assertTrue(exception instanceof TableNotFoundException);
+
+ exception = null;
+ try {
+ ADMIN.deleteColumnFamily(nonexistentTable, nonexistentColumn);
+ } catch (IOException e) {
+ exception = e;
+ }
+ assertTrue(exception instanceof TableNotFoundException);
+
+ exception = null;
+ try {
+ ADMIN.disableTable(nonexistentTable);
+ } catch (IOException e) {
+ exception = e;
+ }
+ assertTrue(exception instanceof TableNotFoundException);
+
+ exception = null;
+ try {
+ ADMIN.enableTable(nonexistentTable);
+ } catch (IOException e) {
+ exception = e;
+ }
+ assertTrue(exception instanceof TableNotFoundException);
+
+ exception = null;
+ try {
+ ADMIN.modifyColumnFamily(nonexistentTable, nonexistentHcd);
+ } catch (IOException e) {
+ exception = e;
+ }
+ assertTrue(exception instanceof TableNotFoundException);
+
+ exception = null;
+ try {
+ TableDescriptor htd = TableDescriptorBuilder.newBuilder(nonexistentTable)
+
.setColumnFamily(ColumnFamilyDescriptorBuilder.of(HConstants.CATALOG_FAMILY)).build();
+ ADMIN.modifyTable(htd);
+ } catch (IOException e) {
+ exception = e;
+ }
+ assertTrue(exception instanceof TableNotFoundException);
+
+ // Now make it so at least the table exists and then do tests against a
+ // nonexistent column family -- see if we get right exceptions.
+ final TableName tableName =
+ TableName.valueOf(name.getMethodName() + System.currentTimeMillis());
+ TableDescriptor htd = TableDescriptorBuilder.newBuilder(tableName)
+ .setColumnFamily(ColumnFamilyDescriptorBuilder.of("cf")).build();
+ ADMIN.createTable(htd);
+ try {
+ exception = null;
+ try {
+ ADMIN.deleteColumnFamily(htd.getTableName(), nonexistentHcd.getName());
+ } catch (IOException e) {
+ exception = e;
+ }
+ assertTrue("found=" + exception.getClass().getName(),
+ exception instanceof InvalidFamilyOperationException);
+
+ exception = null;
+ try {
+ ADMIN.modifyColumnFamily(htd.getTableName(), nonexistentHcd);
+ } catch (IOException e) {
+ exception = e;
+ }
+ assertTrue("found=" + exception.getClass().getName(),
+ exception instanceof InvalidFamilyOperationException);
+ } finally {
+ ADMIN.disableTable(tableName);
+ ADMIN.deleteTable(tableName);
+ }
+ }
+}
diff --git
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdminBase.java
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdminBase.java
new file mode 100644
index 0000000..3737101
--- /dev/null
+++
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdminBase.java
@@ -0,0 +1,70 @@
+/**
+ * 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.client;
+
+import static org.junit.Assert.assertNotNull;
+
+import java.io.IOException;
+import org.apache.hadoop.hbase.HBaseTestingUtility;
+import org.apache.hadoop.hbase.HConstants;
+import org.apache.hadoop.hbase.MetaTableAccessor;
+import org.apache.hadoop.hbase.TableName;
+import org.junit.After;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Rule;
+import org.junit.rules.TestName;
+
+public class TestAdminBase {
+
+ protected final static HBaseTestingUtility TEST_UTIL = new
HBaseTestingUtility();
+ protected static Admin ADMIN;
+
+ @Rule
+ public TestName name = new TestName();
+
+ @BeforeClass
+ public static void setUpBeforeClass() throws Exception {
+ TEST_UTIL.getConfiguration().setInt("hbase.regionserver.msginterval", 100);
+ TEST_UTIL.getConfiguration().setInt("hbase.client.pause", 250);
+ TEST_UTIL.getConfiguration().setInt("hbase.client.retries.number", 6);
+
TEST_UTIL.getConfiguration().setBoolean("hbase.master.enabletable.roundrobin",
true);
+
TEST_UTIL.getConfiguration().setInt(HConstants.REGION_SERVER_HIGH_PRIORITY_HANDLER_COUNT,
30);
+
TEST_UTIL.getConfiguration().setInt(HConstants.REGION_SERVER_HANDLER_COUNT, 30);
+ TEST_UTIL.startMiniCluster(3);
+ ADMIN = TEST_UTIL.getAdmin();
+ }
+
+ @AfterClass
+ public static void tearDownAfterClass() throws Exception {
+ TEST_UTIL.shutdownMiniCluster();
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ for (TableDescriptor htd : ADMIN.listTableDescriptors()) {
+ TEST_UTIL.deleteTable(htd.getTableName());
+ }
+ }
+
+ protected TableState.State getStateFromMeta(TableName table) throws
IOException {
+ TableState state =
MetaTableAccessor.getTableState(TEST_UTIL.getConnection(), table);
+ assertNotNull(state);
+ return state.getState();
+ }
+}