org.apache.gobblin.data.management.conversion.hive.entities.QueryBasedHiveConversionEntity.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.gobblin.data.management.conversion.hive.entities.QueryBasedHiveConversionEntity.java

Source

/*
 * 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.gobblin.data.management.conversion.hive.entities;

import java.util.List;

import org.apache.gobblin.converter.Converter;
import org.apache.gobblin.data.management.conversion.hive.converter.AbstractAvroToOrcConverter;
import org.apache.gobblin.data.management.conversion.hive.dataset.ConvertibleHiveDataset;
import org.apache.gobblin.data.management.conversion.hive.extractor.HiveConvertExtractor;
import org.apache.gobblin.data.management.conversion.hive.writer.HiveQueryExecutionWriter;
import org.apache.gobblin.hive.HivePartition;
import org.apache.gobblin.hive.HiveRegistrationUnit;
import org.apache.gobblin.hive.HiveTable;
import org.apache.gobblin.source.extractor.Extractor;

import org.apache.hadoop.hive.ql.metadata.Partition;

import com.google.common.base.Optional;
import com.google.common.collect.Lists;

import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;

/**
 * Represents a gobblin Record in the Hive avro to orc conversion flow.
 * The {@link HiveConvertExtractor} extracts exactly one {@link QueryBasedHiveConversionEntity}.
 * This class is a container for all metadata about a {@link HiveTable} or a {@link HivePartition} needed to build
 * the hive conversion query.The gobblin task constructs can mutate this object as it get passed from
 * {@link Extractor} to {@link Converter}s.
 *
 * <ul>
 *  <li> The {@link HiveConvertExtractor} creates {@link QueryBasedHiveConversionEntity} using the {@link HiveRegistrationUnit}
 *  in the workunit
 *  <li> The {@link AbstractAvroToOrcConverter} builds the {@link QueryBasedHiveConversionEntity#query} using
 *  {@link QueryBasedHiveConversionEntity#hiveUnitSchema}.
 *  <li> The {@link HiveQueryExecutionWriter} executes the hive query at {@link QueryBasedHiveConversionEntity#getConversionQuery()}
 * </ul>
 */
@ToString
@EqualsAndHashCode
@Getter
public class QueryBasedHiveConversionEntity extends HiveProcessingEntity {

    private final ConvertibleHiveDataset convertibleHiveDataset;
    private final SchemaAwareHiveTable hiveTable;
    private final Optional<SchemaAwareHivePartition> hivePartition;

    /**
     * A {@link StringBuilder} for the hive conversion query
     */
    private final List<String> queries;

    public QueryBasedHiveConversionEntity(ConvertibleHiveDataset convertibleHiveDataset,
            SchemaAwareHiveTable hiveTable) {
        this(convertibleHiveDataset, hiveTable, Optional.<SchemaAwareHivePartition>absent());
    }

    public QueryBasedHiveConversionEntity(ConvertibleHiveDataset convertibleHiveDataset,
            SchemaAwareHiveTable hiveTable, Optional<SchemaAwareHivePartition> hivePartition) {
        super(convertibleHiveDataset, hiveTable, Optional.fromNullable(hivePartition.orNull()));
        this.convertibleHiveDataset = convertibleHiveDataset;
        this.hiveTable = hiveTable;
        this.hivePartition = hivePartition;
        this.queries = Lists.newArrayList();
    }

}