/* * Licensed 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 com.facebook.presto.accumulo; import com.facebook.presto.accumulo.conf.AccumuloConfig; import com.facebook.presto.accumulo.conf.AccumuloTableProperties; import com.facebook.presto.accumulo.index.ColumnCardinalityCache; import com.facebook.presto.accumulo.index.IndexLookup; import com.facebook.presto.accumulo.metadata.AccumuloTable; import com.facebook.presto.accumulo.metadata.ZooKeeperMetadataManager; import com.facebook.presto.spi.ColumnMetadata; import com.facebook.presto.spi.ConnectorTableMetadata; import com.facebook.presto.spi.SchemaTableName; import com.facebook.presto.type.TypeRegistry; import com.google.common.collect.ImmutableList; import org.apache.accumulo.core.client.Connector; import org.testng.annotations.Test; import java.util.HashMap; import java.util.List; import java.util.Map; import static com.facebook.presto.spi.type.BigintType.BIGINT; import static org.testng.Assert.assertNotNull; public class TestAccumuloClient { private final AccumuloClient client; private final ZooKeeperMetadataManager zooKeeperMetadataManager; public TestAccumuloClient() throws Exception { AccumuloConfig config = new AccumuloConfig() .setUsername("root") .setPassword("secret"); Connector connector = AccumuloQueryRunner.getAccumuloConnector(); config.setZooKeepers(connector.getInstance().getZooKeepers()); zooKeeperMetadataManager = new ZooKeeperMetadataManager(config, new TypeRegistry()); client = new AccumuloClient(connector, config, zooKeeperMetadataManager, new AccumuloTableManager(connector), new IndexLookup(connector, new ColumnCardinalityCache(connector, config))); } @Test public void testCreateTableEmptyAccumuloColumn() throws Exception { SchemaTableName tableName = new SchemaTableName("default", "test_create_table_empty_accumulo_column"); try { List<ColumnMetadata> columns = ImmutableList.of( new ColumnMetadata("id", BIGINT), new ColumnMetadata("a", BIGINT), new ColumnMetadata("b", BIGINT), new ColumnMetadata("c", BIGINT), new ColumnMetadata("d", BIGINT)); Map<String, Object> properties = new HashMap<>(); new AccumuloTableProperties().getTableProperties().forEach(meta -> properties.put(meta.getName(), meta.getDefaultValue())); properties.put("external", true); properties.put("column_mapping", "a:a:a,b::b,c:c:,d::"); client.createTable(new ConnectorTableMetadata(tableName, columns, properties)); assertNotNull(client.getTable(tableName)); } finally { AccumuloTable table = zooKeeperMetadataManager.getTable(tableName); if (table != null) { client.dropTable(table); } } } }