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

org.apache.parquet.hadoop.thrift.ThriftWriteSupport Maven / Gradle / Ivy

There is a newer version: 1.14.2
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.parquet.hadoop.thrift;

import org.apache.hadoop.conf.Configuration;
import org.apache.parquet.conf.ParquetConfiguration;
import org.apache.parquet.hadoop.api.WriteSupport;
import org.apache.parquet.io.api.RecordConsumer;
import org.apache.thrift.TBase;

/**
 * @deprecated This class is replaced by TBaseWriteSupport.
 */
@Deprecated
public class ThriftWriteSupport> extends WriteSupport {
  public static final String PARQUET_THRIFT_CLASS = AbstractThriftWriteSupport.PARQUET_THRIFT_CLASS;

  public static > void setThriftClass(Configuration configuration, Class thriftClass) {
    TBaseWriteSupport.setThriftClass(configuration, thriftClass);
  }

  public static Class> getThriftClass(Configuration configuration) {
    return TBaseWriteSupport.getThriftClass(configuration);
  }

  private TBaseWriteSupport writeSupport;

  /**
   * used from hadoop
   * the configuration must contain a thriftClass setting
   *
   * @see ThriftWriteSupport#setThriftClass(Configuration, Class)
   */
  public ThriftWriteSupport() {
    this.writeSupport = new TBaseWriteSupport();
  }

  /**
   * @param thriftClass the thrift class used for writing values
   */
  public ThriftWriteSupport(Class thriftClass) {
    this.writeSupport = new TBaseWriteSupport(thriftClass);
  }

  @Override
  public String getName() {
    return writeSupport.getName();
  }

  @Override
  public WriteContext init(Configuration configuration) {
    return this.writeSupport.init(configuration);
  }

  @Override
  public WriteContext init(ParquetConfiguration configuration) {
    return this.writeSupport.init(configuration);
  }

  @Override
  public void prepareForWrite(RecordConsumer recordConsumer) {
    this.writeSupport.prepareForWrite(recordConsumer);
  }

  @Override
  public void write(T record) {
    this.writeSupport.write(record);
  }
}