Package eu.stratosphere.test.recordJobs.util

Examples of eu.stratosphere.test.recordJobs.util.Tuple


    private final DoubleValue d = new DoubleValue();
   
    @Override
    public void join(Record custRecord, Record olRecord, Collector<Record> out) throws Exception
    {
      final Tuple t = olRecord.getField(1, Tuple.class);
      final double extPrice = Double.parseDouble(t.getStringValueAt(0));
      final double discount = Double.parseDouble(t.getStringValueAt(1));
     
      this.d.setValue(extPrice * (1 - discount));
      custRecord.setField(2, this.d);
      out.collect(custRecord);
    }
View Full Code Here

TOP

Related Classes of eu.stratosphere.test.recordJobs.util.Tuple

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.