Package org.apache.flink.streaming.examples.iteration

Source Code of org.apache.flink.streaming.examples.iteration.IterateExample$MySelector

/*
* 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.flink.streaming.examples.iteration;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Random;

import org.apache.flink.api.common.functions.MapFunction;
import org.apache.flink.api.java.tuple.Tuple2;
import org.apache.flink.streaming.api.collector.OutputSelector;
import org.apache.flink.streaming.api.datastream.IterativeDataStream;
import org.apache.flink.streaming.api.datastream.SplitDataStream;
import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment;

public class IterateExample {

  public static class Step implements
      MapFunction<Tuple2<Double, Integer>, Tuple2<Double, Integer>> {

    private static final long serialVersionUID = 1L;
 
    Random rnd;

    public Step() {
      rnd = new Random();
    }

    @Override
    public Tuple2<Double, Integer> map(Tuple2<Double, Integer> value) throws Exception {

      return new Tuple2<Double, Integer>(value.f0 + rnd.nextDouble(), value.f1 + 1);
    }

  }

  public static class MySelector extends OutputSelector<Tuple2<Double, Integer>> {

    private static final long serialVersionUID = 1L;

    @Override
    public void select(Tuple2<Double, Integer> value, Collection<String> outputs) {
      if (value.f0 > 100) {
        outputs.add("output");
      } else {
        outputs.add("iterate");
      }
    }

  }
 

  public static void main(String[] args) throws Exception {

    List<Tuple2<Double, Integer>> input = new ArrayList<Tuple2<Double, Integer>>();
    for (int i = 0; i < 100; i++) {
      input.add(new Tuple2<Double, Integer>(0., 0));
    }

    StreamExecutionEnvironment env = StreamExecutionEnvironment.createLocalEnvironment(2)
        .setBufferTimeout(1);

    IterativeDataStream<Tuple2<Double, Integer>> it = env.fromCollection(input).iterate()
        .setMaxWaitTime(3000);
   
    SplitDataStream<Tuple2<Double,Integer>> step = it.map(new Step()).shuffle().setParallelism(2).split(new MySelector());
   
    it.closeWith(step.select("iterate"));
   
    step.select("output").project(1).types(Integer.class).print();

    env.execute();
  }
}
TOP

Related Classes of org.apache.flink.streaming.examples.iteration.IterateExample$MySelector

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.