Package eu.stratosphere.test.recordJobs.util

Examples of eu.stratosphere.test.recordJobs.util.Tuple.project()


    @Override
    public void map(Record record, Collector<Record> out) throws Exception
    {
      Tuple t = record.getField(1, this.tuple);
      if (t.getStringValueAt(8).equals("R")) {
        t.project(0x60); // l_extendedprice, l_discount
        record.setField(1, t);
        out.collect(record);
      }
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.