blob: c9a542651c9b88ee5d7518e678ddba01763aa284 [file] [log] [blame]
/*
* 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.hcatalog.mapreduce;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hive.conf.HiveConf;
import org.apache.hadoop.hive.metastore.HiveMetaStoreClient;
import org.apache.hadoop.hive.metastore.api.FieldSchema;
import org.apache.hadoop.hive.metastore.api.Partition;
import org.apache.hadoop.hive.metastore.api.StorageDescriptor;
import org.apache.hadoop.hive.metastore.api.Table;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hcatalog.common.ErrorType;
import org.apache.hcatalog.common.HCatConstants;
import org.apache.hcatalog.common.HCatException;
import org.apache.hcatalog.common.HCatUtil;
import org.apache.hcatalog.data.schema.HCatSchema;
/**
* The Class which handles querying the metadata server using the MetaStoreClient. The list of
* partitions matching the partition filter is fetched from the server and the information is
* serialized and written into the JobContext configuration. The inputInfo is also updated with
* info required in the client process context.
*/
public class InitializeInput {
private static final Log LOG = LogFactory.getLog(InitializeInput.class);
private static HiveConf hiveConf;
private static HiveMetaStoreClient createHiveMetaClient(Configuration conf) throws Exception {
hiveConf = HCatUtil.getHiveConf(conf);
return new HiveMetaStoreClient(hiveConf, null);
}
/**
* Set the input to use for the Job. This queries the metadata server with the specified partition predicates,
* gets the matching partitions, puts the information in the configuration object.
* @param job the job object
* @param inputJobInfo information on the Input to read
* @throws Exception
*/
public static void setInput(Job job, InputJobInfo inputJobInfo) throws Exception {
//* Create and initialize an InputJobInfo object
//* Serialize the InputJobInfo and save in the Job's Configuration object
job.getConfiguration().set(
HCatConstants.HCAT_KEY_JOB_INFO,
getSerializedHcatKeyJobInfo(job, inputJobInfo,null));
}
public static String getSerializedHcatKeyJobInfo(Job job, InputJobInfo inputJobInfo, String locationFilter) throws Exception {
//* Create and initialize an InputJobInfo object
HiveMetaStoreClient client = null;
try {
if (job != null){
client = createHiveMetaClient(job.getConfiguration());
} else {
hiveConf = new HiveConf(HCatInputFormat.class);
client = new HiveMetaStoreClient(hiveConf, null);
}
Table table = client.getTable(inputJobInfo.getDatabaseName(),
inputJobInfo.getTableName());
List<PartInfo> partInfoList = new ArrayList<PartInfo>();
inputJobInfo.setTableInfo(HCatTableInfo.valueOf(table));
if( table.getPartitionKeys().size() != 0 ) {
//Partitioned table
List<Partition> parts = client.listPartitionsByFilter(inputJobInfo.getDatabaseName(),
inputJobInfo.getTableName(),
inputJobInfo.getFilter(),
(short) -1);
// Default to 100,000 partitions if hive.metastore.maxpartition is not defined
int maxPart = hiveConf.getInt("hcat.metastore.maxpartitions", 100000);
if (parts != null && parts.size() > maxPart) {
throw new HCatException(ErrorType.ERROR_EXCEED_MAXPART, "total number of partitions is " + parts.size());
}
// populate partition info
for (Partition ptn : parts){
PartInfo partInfo = extractPartInfo(ptn.getSd(),ptn.getParameters(),
job.getConfiguration(),
inputJobInfo);
partInfo.setPartitionValues(createPtnKeyValueMap(table, ptn));
partInfoList.add(partInfo);
}
}else{
//Non partitioned table
PartInfo partInfo = extractPartInfo(table.getSd(),table.getParameters(),
job.getConfiguration(),
inputJobInfo);
partInfo.setPartitionValues(new HashMap<String,String>());
partInfoList.add(partInfo);
}
inputJobInfo.setPartitions(partInfoList);
return HCatUtil.serialize(inputJobInfo);
} finally {
if (client != null ) {
}
}
}
private static Map<String, String> createPtnKeyValueMap(Table table, Partition ptn) throws IOException{
List<String> values = ptn.getValues();
if( values.size() != table.getPartitionKeys().size() ) {
throw new IOException("Partition values in partition inconsistent with table definition, table "
+ table.getTableName() + " has "
+ table.getPartitionKeys().size()
+ " partition keys, partition has " + values.size() + "partition values" );
}
Map<String,String> ptnKeyValues = new HashMap<String,String>();
int i = 0;
for(FieldSchema schema : table.getPartitionKeys()) {
// CONCERN : the way this mapping goes, the order *needs* to be preserved for table.getPartitionKeys() and ptn.getValues()
ptnKeyValues.put(schema.getName().toLowerCase(), values.get(i));
i++;
}
return ptnKeyValues;
}
static PartInfo extractPartInfo(StorageDescriptor sd,
Map<String,String> parameters, Configuration conf,
InputJobInfo inputJobInfo) throws IOException{
HCatSchema schema = HCatUtil.extractSchemaFromStorageDescriptor(sd);
StorerInfo storerInfo = InternalUtil.extractStorerInfo(sd,parameters);
Properties hcatProperties = new Properties();
HCatStorageHandler storageHandler = HCatUtil.getStorageHandler(conf,
storerInfo);
// copy the properties from storageHandler to jobProperties
Map<String, String>jobProperties = HCatUtil.getInputJobProperties(
storageHandler,
inputJobInfo);
for (String key : parameters.keySet()){
hcatProperties.put(key, parameters.get(key));
}
// FIXME
// Bloating partinfo with inputJobInfo is not good
return new PartInfo(schema, storageHandler,
sd.getLocation(), hcatProperties,
jobProperties, inputJobInfo.getTableInfo());
}
}