Package com.twitter.elephantbird.examples.thrift

Examples of com.twitter.elephantbird.examples.thrift.Age



  public static class LzoMapper extends Mapper<LongWritable, ThriftWritable<Age>, Text, Text> {
    @Override
    protected void map(LongWritable key, ThriftWritable<Age> value, Context context) throws IOException, InterruptedException {
      Age age = value.get();
      context.write(null, new Text(age.getName() + "\t" + age.getAge()));
    }
View Full Code Here

TOP

Related Classes of com.twitter.elephantbird.examples.thrift.Age

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.