org.apache.kylin.source.hive.HiveTableReader Maven / Gradle / Ivy
The newest version!
/*
* 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.kylin.source.hive;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import org.apache.hadoop.hive.conf.HiveConf;
import org.apache.hive.hcatalog.common.HCatException;
import org.apache.hive.hcatalog.data.HCatRecord;
import org.apache.hive.hcatalog.data.transfer.DataTransferFactory;
import org.apache.hive.hcatalog.data.transfer.HCatReader;
import org.apache.hive.hcatalog.data.transfer.ReadEntity;
import org.apache.hive.hcatalog.data.transfer.ReaderContext;
import org.apache.kylin.source.IReadableTable.TableReader;
/**
* An implementation of TableReader with HCatalog for Hive table.
*/
public class HiveTableReader implements TableReader {
private String dbName;
private String tableName;
private int currentSplit = -1;
private ReaderContext readCntxt = null;
private Iterator currentHCatRecordItr = null;
private HCatRecord currentHCatRecord;
private int numberOfSplits = 0;
private Map partitionKV = null;
/**
* Constructor for reading whole hive table
* @param dbName
* @param tableName
* @throws IOException
*/
public HiveTableReader(String dbName, String tableName) throws IOException {
this(dbName, tableName, null);
}
/**
* Constructor for reading a partition of the hive table
* @param dbName
* @param tableName
* @param partitionKV key-value pairs condition on the partition
* @throws IOException
*/
public HiveTableReader(String dbName, String tableName, Map partitionKV) throws IOException {
this.dbName = dbName;
this.tableName = tableName;
this.partitionKV = partitionKV;
initialize();
}
public static List getRowAsList(HCatRecord record, List rowValues) {
List