org.apache.hadoop.hive.hbase.HBaseCompositeKey Maven / Gradle / Ivy
/*
* 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.hadoop.hive.hbase;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.apache.hadoop.hive.serde2.lazy.ByteArrayRef;
import org.apache.hadoop.hive.serde2.lazy.LazyFactory;
import org.apache.hadoop.hive.serde2.lazy.LazyObject;
import org.apache.hadoop.hive.serde2.lazy.LazyStruct;
import org.apache.hadoop.hive.serde2.lazy.objectinspector.LazySimpleStructObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.StructField;
/**
* HBaseCompositeKey extension of LazyStruct. All complex composite keys should extend this class
* and override the {@link LazyStruct#getField(int)} method where fieldID corresponds to the ID of a
* key in the composite key.
*
* For example, for a composite key "/part1/part2/part3", part1 will have an id
* 0, part2 will have an id 1 and part3 will have an id 2. Custom
* implementations of getField(fieldID) should return the value corresponding to that fieldID. So,
* for the above example, the value returned for getField(0) should be part1,
* getField(1) should be part2 and getField(2) should be part3.
*
*
*
* All custom implementation are expected to have a constructor of the form:
*
*
* MyCustomCompositeKey(LazySimpleStructObjectInspector oi, Properties tbl, Configuration conf)
*
*
*
*
* */
public class HBaseCompositeKey extends LazyStruct {
public HBaseCompositeKey(LazySimpleStructObjectInspector oi) {
super(oi);
}
@Override
public ArrayList