All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.hadoop.hive.accumulo.columns.ColumnMapper Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show 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.hadoop.hive.accumulo.columns;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import org.apache.commons.lang.StringUtils;
import org.apache.hadoop.hive.accumulo.AccumuloHiveConstants;
import org.apache.hadoop.hive.accumulo.serde.TooManyAccumuloColumnsException;
import org.apache.hadoop.hive.serde.serdeConstants;
import org.apache.hadoop.hive.serde2.typeinfo.TypeInfo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.google.common.base.Preconditions;

/**
 *
 */
public class ColumnMapper {
  private static final Logger log = LoggerFactory.getLogger(ColumnMapper.class);

  private List columnMappings;
  private int rowIdOffset;
  private HiveAccumuloRowIdColumnMapping rowIdMapping = null;
  private final ColumnEncoding defaultEncoding;

  /**
   * Create a mapping from Hive columns (rowID and column) to Accumulo columns (column family and
   * qualifier). The ordering of the {@link ColumnMapping}s is important as it aligns with the
   * ordering of the columns for the Hive table schema.
   *
   * @param serializedColumnMappings
   *          Comma-separated list of designators that map to Accumulo columns whose offsets
   *          correspond to the Hive table schema
   * @throws TooManyAccumuloColumnsException
   */
  public ColumnMapper(String serializedColumnMappings, String defaultStorageType,
      List columnNames, List columnTypes) throws TooManyAccumuloColumnsException {
    Preconditions.checkNotNull(serializedColumnMappings);

    String[] parsedColumnMappingValue = StringUtils.split(serializedColumnMappings,
        AccumuloHiveConstants.COMMA);
    columnMappings = new ArrayList(parsedColumnMappingValue.length);
    rowIdOffset = -1;

    // Determine the default encoding type (specified on the table, or the global default
    // if none was provided)
    if (null == defaultStorageType || "".equals(defaultStorageType)) {
      defaultEncoding = ColumnEncoding.getDefault();
    } else {
      defaultEncoding = ColumnEncoding.get(defaultStorageType.toLowerCase());
    }

    if (parsedColumnMappingValue.length > columnNames.size()) {
      throw new TooManyAccumuloColumnsException("Found " + parsedColumnMappingValue.length
          + " columns, but only know of " + columnNames.size() + " Hive column names");
    }

    if (parsedColumnMappingValue.length > columnTypes.size()) {
      throw new TooManyAccumuloColumnsException("Found " + parsedColumnMappingValue.length
          + " columns, but only know of " + columnNames.size() + " Hive column types");
    }

    for (int i = 0; i < parsedColumnMappingValue.length; i++) {
      String columnMappingStr = parsedColumnMappingValue[i];

      // Create the mapping for this column, with configured encoding
      ColumnMapping columnMapping = ColumnMappingFactory.get(columnMappingStr, defaultEncoding,
          columnNames.get(i), columnTypes.get(i));

      if (columnMapping instanceof HiveAccumuloRowIdColumnMapping) {
        if (-1 != rowIdOffset) {
          throw new IllegalArgumentException(
              "Column mapping should only have one definition with a value of "
                  + AccumuloHiveConstants.ROWID);
        }

        rowIdOffset = i;
        rowIdMapping = (HiveAccumuloRowIdColumnMapping) columnMapping;
      }

      columnMappings.add(columnMapping);
    }
  }

  public int size() {
    return columnMappings.size();
  }

  public ColumnMapping get(int i) {
    return columnMappings.get(i);
  }

  public List getColumnMappings() {
    return Collections.unmodifiableList(columnMappings);
  }

  public boolean hasRowIdMapping() {
    return null != rowIdMapping;
  }

  public HiveAccumuloRowIdColumnMapping getRowIdMapping() {
    return rowIdMapping;
  }

  public int getRowIdOffset() {
    return rowIdOffset;
  }

  public String getTypesString() {
    StringBuilder sb = new StringBuilder();
    for (ColumnMapping columnMapping : columnMappings) {
      if (sb.length() > 0) {
        sb.append(AccumuloHiveConstants.COLON);
      }

      if (columnMapping instanceof HiveAccumuloRowIdColumnMapping) {
        // the rowID column is a string
        sb.append(serdeConstants.STRING_TYPE_NAME);
      } else if (columnMapping instanceof HiveAccumuloColumnMapping) {
        // a normal column is also a string
        sb.append(serdeConstants.STRING_TYPE_NAME);
      } else if (columnMapping instanceof HiveAccumuloMapColumnMapping) {
        // TODO can we be more precise than string,string?
        sb.append(serdeConstants.MAP_TYPE_NAME).append("<").append(serdeConstants.STRING_TYPE_NAME)
            .append(",").append(serdeConstants.STRING_TYPE_NAME).append(">");
      } else {
        throw new IllegalArgumentException("Cannot process ColumnMapping of type "
            + columnMapping.getClass().getName());
      }
    }

    return sb.toString();
  }

  public ColumnMapping getColumnMappingForHiveColumn(List hiveColumns, String hiveColumnName) {
    Preconditions.checkNotNull(hiveColumns);
    Preconditions.checkNotNull(hiveColumnName);
    Preconditions.checkArgument(columnMappings.size() <= hiveColumns.size(),
        "Expected equal number of column mappings and Hive columns, " + columnMappings + ", "
            + hiveColumns);

    int hiveColumnOffset = 0;
    for (; hiveColumnOffset < hiveColumns.size() && hiveColumnOffset < columnMappings.size(); hiveColumnOffset++) {
      if (hiveColumns.get(hiveColumnOffset).equals(hiveColumnName)) {
        return columnMappings.get(hiveColumnOffset);
      }
    }

    log.error("Could not find offset for Hive column with name '" + hiveColumnName
        + "' with columns " + hiveColumns);
    throw new IllegalArgumentException("Could not find offset for Hive column with name "
        + hiveColumnName);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder(32);
    sb.append("[").append(this.getClass().getSimpleName()).append(" ");
    sb.append(columnMappings).append(", rowIdOffset: ").append(this.rowIdOffset)
        .append(", defaultEncoding: ");
    sb.append(this.defaultEncoding).append("]");
    return sb.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy