/** * 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.lens.cube.metadata; import java.util.List; import org.apache.hadoop.hive.ql.metadata.HiveException; import org.apache.hadoop.hive.ql.metadata.Partition; public interface PartitionMetahook { /** * Called before calling add partition(s) * * @param storagePartitionDesc * @throws HiveException */ void preAddPartitions(List<StoragePartitionDesc> storagePartitionDesc) throws HiveException; /** * Called after successfully adding the partition(s) * * @param storagePartitionDesc * @throws HiveException */ void commitAddPartitions(List<StoragePartitionDesc> storagePartitionDesc) throws HiveException; /** * Called if add partition fails. * * @param storagePartitionDesc * @throws HiveException */ void rollbackAddPartitions(List<StoragePartitionDesc> storagePartitionDesc) throws HiveException; /** * Called before calling update partition(s) * * @param partitions * @throws HiveException */ void preUpdatePartition(List<Partition> partitions) throws HiveException; /** * Called after successfully updating partition(s) * * @param partitions * @throws HiveException */ void commitUpdatePartition(List<Partition> partitions) throws HiveException; /** * Called after failed updating partition(s) * * @param partitions * @throws HiveException */ void rollbackUpdatePartition(List<Partition> partitions) throws HiveException; /** * Called before calling drop partition * * @param storageTableName * @param partVals * @throws HiveException */ void preDropPartition(String storageTableName, List<String> partVals) throws HiveException; /** * Called after successfully droping the partition * * @param storageTableName * @param partVals * @throws HiveException */ void commitDropPartition(String storageTableName, List<String> partVals) throws HiveException; /** * Called if drop partition fails. * * @param storageTableName * @param partVals */ void rollbackDropPartition(String storageTableName, List<String> partVals) throws HiveException; }