org.apache.hadoop.hive.accumulo.columns.HiveAccumuloColumnMapping 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.accumulo.columns;
import org.apache.hadoop.hive.accumulo.AccumuloHiveConstants;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.base.Charsets;
/**
* A Hive column which maps to a column family and column qualifier pair in Accumulo
*/
public class HiveAccumuloColumnMapping extends ColumnMapping {
@SuppressWarnings("unused")
private static final Logger log = LoggerFactory.getLogger(HiveAccumuloColumnMapping.class);
protected String columnFamily, columnQualifier;
protected byte[] columnFamilyBytes, columnQualifierBytes;
public HiveAccumuloColumnMapping(String cf, String cq, ColumnEncoding encoding,
String columnName, String columnType) {
super(cf + AccumuloHiveConstants.COLON + cq, encoding, columnName, columnType);
columnFamily = cf;
columnQualifier = cq;
}
public String getColumnFamily() {
return this.columnFamily;
}
/**
* Cached bytes for the columnFamily. Modifications to the bytes will affect those stored in this
* ColumnMapping -- such modifications are highly recommended against.
*
* @return UTF8 formatted bytes
*/
public byte[] getColumnFamilyBytes() {
if (null == columnFamilyBytes) {
columnFamilyBytes = columnFamily.getBytes(Charsets.UTF_8);
}
return columnFamilyBytes;
}
public String getColumnQualifier() {
return this.columnQualifier;
}
/**
* Cached bytes for the columnQualifier. Modifications to the bytes will affect those stored in
* this ColumnMapping -- such modifications are highly recommended against.
*
* @return UTF8 formatted bytes
*/
public byte[] getColumnQualifierBytes() {
if (null == columnQualifierBytes) {
columnQualifierBytes = columnQualifier.getBytes(Charsets.UTF_8);
}
return columnQualifierBytes;
}
public String serialize() {
StringBuilder sb = new StringBuilder(16);
sb.append(columnFamily).append(AccumuloHiveConstants.COLON);
if (null != columnQualifier) {
sb.append(columnQualifier);
}
return sb.toString();
}
@Override
public String toString() {
return "[" + this.getClass().getSimpleName() + ": " + columnFamily + ":" + columnQualifier
+ ", encoding " + encoding + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy