/** * 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.hive.metastore.hbase; import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.SortedMap; import java.util.TreeMap; import org.apache.hadoop.hbase.Cell; import org.apache.hadoop.hbase.client.HTableInterface; import org.apache.hadoop.hive.conf.HiveConf; import org.apache.hadoop.hive.metastore.api.BooleanColumnStatsData; import org.apache.hadoop.hive.metastore.api.ColumnStatistics; import org.apache.hadoop.hive.metastore.api.ColumnStatisticsData; import org.apache.hadoop.hive.metastore.api.ColumnStatisticsDesc; import org.apache.hadoop.hive.metastore.api.ColumnStatisticsObj; import org.apache.hadoop.hive.metastore.api.FieldSchema; import org.apache.hadoop.hive.metastore.api.NoSuchObjectException; import org.apache.hadoop.hive.metastore.api.Partition; import org.apache.hadoop.hive.metastore.api.SerDeInfo; import org.apache.hadoop.hive.metastore.api.StorageDescriptor; import org.apache.hadoop.hive.metastore.api.Table; import org.junit.Assert; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * */ public class TestHBaseStoreCached { private static final Logger LOG = LoggerFactory.getLogger(TestHBaseStoreCached.class.getName()); static Map<String, String> emptyParameters = new HashMap<String, String>(); @Rule public ExpectedException thrown = ExpectedException.none(); @Mock HTableInterface htable; SortedMap<String, Cell> rows = new TreeMap<String, Cell>(); HBaseStore store; @Before public void init() throws IOException { MockitoAnnotations.initMocks(this); HiveConf conf = new HiveConf(); store = MockUtils.init(conf, htable, rows); } @Test public void createTable() throws Exception { String tableName = "mytable"; int startTime = (int)(System.currentTimeMillis() / 1000); List<FieldSchema> cols = new ArrayList<FieldSchema>(); cols.add(new FieldSchema("col1", "int", "nocomment")); SerDeInfo serde = new SerDeInfo("serde", "seriallib", null); StorageDescriptor sd = new StorageDescriptor(cols, "file:/tmp", "input", "output", false, 0, serde, null, null, emptyParameters); Table table = new Table(tableName, "default", "me", startTime, startTime, 0, sd, null, emptyParameters, null, null, null); store.createTable(table); Table t = store.getTable("default", tableName); Assert.assertEquals(1, t.getSd().getColsSize()); Assert.assertEquals("col1", t.getSd().getCols().get(0).getName()); Assert.assertEquals("int", t.getSd().getCols().get(0).getType()); Assert.assertEquals("nocomment", t.getSd().getCols().get(0).getComment()); Assert.assertEquals("serde", t.getSd().getSerdeInfo().getName()); Assert.assertEquals("seriallib", t.getSd().getSerdeInfo().getSerializationLib()); Assert.assertEquals("file:/tmp", t.getSd().getLocation()); Assert.assertEquals("input", t.getSd().getInputFormat()); Assert.assertEquals("output", t.getSd().getOutputFormat()); Assert.assertEquals("me", t.getOwner()); Assert.assertEquals("default", t.getDbName()); Assert.assertEquals(tableName, t.getTableName()); } @Test public void alterTable() throws Exception { String tableName = "alttable"; int startTime = (int)(System.currentTimeMillis() / 1000); List<FieldSchema> cols = new ArrayList<FieldSchema>(); cols.add(new FieldSchema("col1", "int", "nocomment")); SerDeInfo serde = new SerDeInfo("serde", "seriallib", null); StorageDescriptor sd = new StorageDescriptor(cols, "file:/tmp", "input", "output", false, 0, serde, null, null, emptyParameters); Table table = new Table(tableName, "default", "me", startTime, startTime, 0, sd, null, emptyParameters, null, null, null); store.createTable(table); startTime += 10; table.setLastAccessTime(startTime); store.alterTable("default", tableName, table); Table t = store.getTable("default", tableName); Assert.assertEquals(1, t.getSd().getColsSize()); Assert.assertEquals("col1", t.getSd().getCols().get(0).getName()); Assert.assertEquals("int", t.getSd().getCols().get(0).getType()); Assert.assertEquals("nocomment", t.getSd().getCols().get(0).getComment()); Assert.assertEquals("serde", t.getSd().getSerdeInfo().getName()); Assert.assertEquals("seriallib", t.getSd().getSerdeInfo().getSerializationLib()); Assert.assertEquals("file:/tmp", t.getSd().getLocation()); Assert.assertEquals("input", t.getSd().getInputFormat()); Assert.assertEquals("output", t.getSd().getOutputFormat()); Assert.assertEquals("me", t.getOwner()); Assert.assertEquals("default", t.getDbName()); Assert.assertEquals(tableName, t.getTableName()); Assert.assertEquals(startTime, t.getLastAccessTime()); } @Test public void dropTable() throws Exception { String tableName = "dtable"; int startTime = (int)(System.currentTimeMillis() / 1000); List<FieldSchema> cols = new ArrayList<FieldSchema>(); cols.add(new FieldSchema("col1", "int", "nocomment")); SerDeInfo serde = new SerDeInfo("serde", "seriallib", null); StorageDescriptor sd = new StorageDescriptor(cols, "file:/tmp", "input", "output", false, 0, serde, null, null, emptyParameters); Table table = new Table(tableName, "default", "me", startTime, startTime, 0, sd, null, emptyParameters, null, null, null); store.createTable(table); Table t = store.getTable("default", tableName); Assert.assertNotNull(t); store.dropTable("default", tableName); Assert.assertNull(store.getTable("default", tableName)); } @Test public void createPartition() throws Exception { String dbName = "default"; String tableName = "myparttable"; int startTime = (int)(System.currentTimeMillis() / 1000); List<FieldSchema> cols = new ArrayList<FieldSchema>(); cols.add(new FieldSchema("col1", "int", "nocomment")); SerDeInfo serde = new SerDeInfo("serde", "seriallib", null); StorageDescriptor sd = new StorageDescriptor(cols, "file:/tmp", "input", "output", false, 0, serde, null, null, emptyParameters); List<FieldSchema> partCols = new ArrayList<FieldSchema>(); partCols.add(new FieldSchema("pc", "string", "")); Table table = new Table(tableName, dbName, "me", startTime, startTime, 0, sd, partCols, emptyParameters, null, null, null); store.createTable(table); List<String> vals = Arrays.asList("fred"); StorageDescriptor psd = new StorageDescriptor(sd); psd.setLocation("file:/tmp/pc=fred"); Partition part = new Partition(vals, dbName, tableName, startTime, startTime, psd, emptyParameters); store.addPartition(part); Partition p = store.getPartition(dbName, tableName, vals); Assert.assertEquals(1, p.getSd().getColsSize()); Assert.assertEquals("col1", p.getSd().getCols().get(0).getName()); Assert.assertEquals("int", p.getSd().getCols().get(0).getType()); Assert.assertEquals("nocomment", p.getSd().getCols().get(0).getComment()); Assert.assertEquals("serde", p.getSd().getSerdeInfo().getName()); Assert.assertEquals("seriallib", p.getSd().getSerdeInfo().getSerializationLib()); Assert.assertEquals("file:/tmp/pc=fred", p.getSd().getLocation()); Assert.assertEquals("input", p.getSd().getInputFormat()); Assert.assertEquals("output", p.getSd().getOutputFormat()); Assert.assertEquals(dbName, p.getDbName()); Assert.assertEquals(tableName, p.getTableName()); Assert.assertEquals(1, p.getValuesSize()); Assert.assertEquals("fred", p.getValues().get(0)); } @Test public void getPartitions() throws Exception { String dbName = "default"; String tableName = "manyParts"; int startTime = (int)(System.currentTimeMillis() / 1000); List<FieldSchema> cols = new ArrayList<FieldSchema>(); cols.add(new FieldSchema("col1", "int", "nocomment")); SerDeInfo serde = new SerDeInfo("serde", "seriallib", null); StorageDescriptor sd = new StorageDescriptor(cols, "file:/tmp", "input", "output", false, 0, serde, null, null, emptyParameters); List<FieldSchema> partCols = new ArrayList<FieldSchema>(); partCols.add(new FieldSchema("pc", "string", "")); Table table = new Table(tableName, dbName, "me", startTime, startTime, 0, sd, partCols, emptyParameters, null, null, null); store.createTable(table); List<String> partVals = Arrays.asList("alan", "bob", "carl", "doug", "ethan"); for (String val : partVals) { List<String> vals = new ArrayList<String>(); vals.add(val); StorageDescriptor psd = new StorageDescriptor(sd); psd.setLocation("file:/tmp/pc=" + val); Partition part = new Partition(vals, dbName, tableName, startTime, startTime, psd, emptyParameters); store.addPartition(part); Partition p = store.getPartition(dbName, tableName, vals); Assert.assertEquals("file:/tmp/pc=" + val, p.getSd().getLocation()); } List<Partition> parts = store.getPartitions(dbName, tableName, -1); Assert.assertEquals(5, parts.size()); String[] pv = new String[5]; for (int i = 0; i < 5; i++) pv[i] = parts.get(i).getValues().get(0); Arrays.sort(pv); Assert.assertArrayEquals(pv, partVals.toArray(new String[5])); } @Test public void listGetDropPartitionNames() throws Exception { String dbName = "default"; String tableName = "listParts"; int startTime = (int)(System.currentTimeMillis() / 1000); List<FieldSchema> cols = new ArrayList<FieldSchema>(); cols.add(new FieldSchema("col1", "int", "nocomment")); SerDeInfo serde = new SerDeInfo("serde", "seriallib", null); StorageDescriptor sd = new StorageDescriptor(cols, "file:/tmp", "input", "output", false, 0, serde, null, null, emptyParameters); List<FieldSchema> partCols = new ArrayList<FieldSchema>(); partCols.add(new FieldSchema("pc", "string", "")); partCols.add(new FieldSchema("region", "string", "")); Table table = new Table(tableName, dbName, "me", startTime, startTime, 0, sd, partCols, emptyParameters, null, null, null); store.createTable(table); String[][] partVals = new String[][]{{"today", "north america"}, {"tomorrow", "europe"}}; for (String[] pv : partVals) { List<String> vals = new ArrayList<String>(); for (String v : pv) vals.add(v); StorageDescriptor psd = new StorageDescriptor(sd); psd.setLocation("file:/tmp/pc=" + pv[0] + "/region=" + pv[1]); Partition part = new Partition(vals, dbName, tableName, startTime, startTime, psd, emptyParameters); store.addPartition(part); } List<String> names = store.listPartitionNames(dbName, tableName, (short) -1); Assert.assertEquals(2, names.size()); String[] resultNames = names.toArray(new String[names.size()]); Arrays.sort(resultNames); Assert.assertArrayEquals(resultNames, new String[]{"pc=today/region=north america", "pc=tomorrow/region=europe"}); List<Partition> parts = store.getPartitionsByNames(dbName, tableName, names); Assert.assertArrayEquals(partVals[0], parts.get(0).getValues().toArray(new String[2])); Assert.assertArrayEquals(partVals[1], parts.get(1).getValues().toArray(new String[2])); store.dropPartitions(dbName, tableName, names); List<Partition> afterDropParts = store.getPartitions(dbName, tableName, -1); Assert.assertEquals(0, afterDropParts.size()); } @Test public void dropPartition() throws Exception { String dbName = "default"; String tableName = "myparttable2"; int startTime = (int)(System.currentTimeMillis() / 1000); List<FieldSchema> cols = new ArrayList<FieldSchema>(); cols.add(new FieldSchema("col1", "int", "nocomment")); SerDeInfo serde = new SerDeInfo("serde", "seriallib", null); StorageDescriptor sd = new StorageDescriptor(cols, "file:/tmp", "input", "output", false, 0, serde, null, null, emptyParameters); List<FieldSchema> partCols = new ArrayList<FieldSchema>(); partCols.add(new FieldSchema("pc", "string", "")); Table table = new Table(tableName, dbName, "me", startTime, startTime, 0, sd, partCols, emptyParameters, null, null, null); store.createTable(table); List<String> vals = Arrays.asList("fred"); StorageDescriptor psd = new StorageDescriptor(sd); psd.setLocation("file:/tmp/pc=fred"); Partition part = new Partition(vals, dbName, tableName, startTime, startTime, psd, emptyParameters); store.addPartition(part); Assert.assertNotNull(store.getPartition(dbName, tableName, vals)); store.dropPartition(dbName, tableName, vals); thrown.expect(NoSuchObjectException.class); store.getPartition(dbName, tableName, vals); } // Due to the way our mock stuff works, we can only insert one column at a time, so we'll test // each stat type separately. We'll test them together in hte integration tests. @Test public void booleanTableStatistics() throws Exception { long now = System.currentTimeMillis(); String dbname = "default"; String tableName = "statstable"; String boolcol = "boolcol"; int startTime = (int)(System.currentTimeMillis() / 1000); List<FieldSchema> cols = new ArrayList<FieldSchema>(); cols.add(new FieldSchema(boolcol, "boolean", "nocomment")); SerDeInfo serde = new SerDeInfo("serde", "seriallib", null); StorageDescriptor sd = new StorageDescriptor(cols, "file:/tmp", "input", "output", false, 0, serde, null, null, emptyParameters); Table table = new Table(tableName, dbname, "me", startTime, startTime, 0, sd, null, emptyParameters, null, null, null); store.createTable(table); long trues = 37; long falses = 12; long booleanNulls = 2; ColumnStatistics stats = new ColumnStatistics(); ColumnStatisticsDesc desc = new ColumnStatisticsDesc(); desc.setLastAnalyzed(now); desc.setDbName(dbname); desc.setTableName(tableName); desc.setIsTblLevel(true); stats.setStatsDesc(desc); ColumnStatisticsObj obj = new ColumnStatisticsObj(); obj.setColName(boolcol); obj.setColType("boolean"); ColumnStatisticsData data = new ColumnStatisticsData(); BooleanColumnStatsData boolData = new BooleanColumnStatsData(); boolData.setNumTrues(trues); boolData.setNumFalses(falses); boolData.setNumNulls(booleanNulls); data.setBooleanStats(boolData); obj.setStatsData(data); stats.addToStatsObj(obj); store.updateTableColumnStatistics(stats); stats = store.getTableColumnStatistics(dbname, tableName, Arrays.asList(boolcol)); Assert.assertEquals(now, stats.getStatsDesc().getLastAnalyzed()); Assert.assertEquals(dbname, stats.getStatsDesc().getDbName()); Assert.assertEquals(tableName, stats.getStatsDesc().getTableName()); Assert.assertTrue(stats.getStatsDesc().isIsTblLevel()); Assert.assertEquals(1, stats.getStatsObjSize()); ColumnStatisticsData colData = obj.getStatsData(); Assert.assertEquals(ColumnStatisticsData._Fields.BOOLEAN_STATS, colData.getSetField()); boolData = colData.getBooleanStats(); Assert.assertEquals(trues, boolData.getNumTrues()); Assert.assertEquals(falses, boolData.getNumFalses()); Assert.assertEquals(booleanNulls, boolData.getNumNulls()); } }