/** * 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.falcon.catalog; import org.apache.falcon.FalconException; import java.util.List; import java.util.Map; /** * Interface definition for a catalog registry service * such as Hive or HCatalog. */ public abstract class AbstractCatalogService { /** * This method checks if the catalog service is alive. * * @param catalogUrl url for the catalog service * @param metaStorePrincipal kerberos principal for hive metastore as this is executed in falcon on behalf of user * @return if the service was reachable * @throws FalconException exception */ public abstract boolean isAlive(String catalogUrl, String metaStorePrincipal) throws FalconException; /** * This method checks if the given table exists in the catalog. * * @param catalogUrl url for the catalog service * @param database database the table belongs to * @param tableName tableName to check if it exists * @param metaStorePrincipal kerberos principal for hive metastore as this is executed in falcon on behalf of user * @return if the table exists * @throws FalconException exception */ public abstract boolean tableExists(String catalogUrl, String database, String tableName, String metaStorePrincipal) throws FalconException; /** * Returns if the table is external or not. Executed in the workflow engine. * * @param catalogUrl url for the catalog service * @param database database the table belongs to * @param tableName tableName to check if it exists * @return true if external else false * @throws FalconException */ public abstract boolean isTableExternal(String catalogUrl, String database, String tableName) throws FalconException; /** * List partitions by filter. Executed in the workflow engine. * * @param catalogUrl url for the catalog service * @param database database the table belongs to * @param tableName tableName to check if it exists * @param filter The filter string, * for example "part1 = \"p1_abc\" and part2 <= "\p2_test\"". Filtering can * be done only on string partition keys. * @return list of partitions * @throws FalconException */ public abstract List<CatalogPartition> listPartitionsByFilter(String catalogUrl, String database, String tableName, String filter) throws FalconException; /** * List partitions by filter. Executed in the workflow engine. * * @param catalogUrl url for the catalog service * @param database database the table belongs to * @param tableName tableName to check if it exists * @param partitionSpec partition specification * @return list of partitions * @throws FalconException */ public abstract List<CatalogPartition> listPartitionsByFilter(String catalogUrl, String database, String tableName, Map<String, String> partitionSpec) throws FalconException; /** * Drops a given partition. Executed in the workflow engine. * * @param catalogUrl url for the catalog service * @param database database the table belongs to * @param tableName tableName to check if it exists * @param partitions list of partitions as Key=Value pairs * @return if the partition was dropped * @throws FalconException */ public abstract boolean dropPartitions(String catalogUrl, String database, String tableName, Map<String, String> partitions) throws FalconException; /** * Gets the partition. Executed in the workflow engine. * * @param catalogUrl url for the catalog service * @param database database the table belongs to * @param tableName tableName to check if it exists * @param partitionSpec The partition specification, {[col_name,value],[col_name2,value2]}. * All partition-key-values must be specified. * @return An instance of CatalogPartition. * @throws FalconException */ public abstract CatalogPartition getPartition(String catalogUrl, String database, String tableName, Map<String, String> partitionSpec) throws FalconException; /** * @param catalogUrl url for the catalog service * @param database database the table belongs to * @param tableName table name * @return list of partition column names of the table * @throws FalconException */ public abstract List<String> getTablePartitionCols(String catalogUrl, String database, String tableName) throws FalconException; }