Package com.twitter.elephantbird.mapreduce.io

Examples of com.twitter.elephantbird.mapreduce.io.ThriftWritable


  @SuppressWarnings("unchecked")
  public RCFileThriftPigStorage(String thriftClassName) {
    typeRef =  ThriftUtils.getTypeRef(thriftClassName);
    pigToThrift = (PigToThrift<TBase<?, ?>>) PigToThrift.newInstance(typeRef);
    writable = new ThriftWritable(typeRef);
  }
View Full Code Here


    DeprecatedOutputFormatWrapper.setOutputFormat(LzoThriftBlockOutputFormat.class, conf);
  }

  protected ThriftWritable<M> prepareBinaryWritable() {
    TypeRef<M> typeRef = (TypeRef<M>) ThriftUtils.getTypeRef(thriftClass);
    return new ThriftWritable(typeRef);
  }
View Full Code Here

TOP

Related Classes of com.twitter.elephantbird.mapreduce.io.ThriftWritable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.