Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 219B1200BC3 for ; Fri, 4 Nov 2016 06:52:20 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 20259160B0B; Fri, 4 Nov 2016 05:52:20 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3F78E160AFF for ; Fri, 4 Nov 2016 06:52:19 +0100 (CET) Received: (qmail 51100 invoked by uid 500); 4 Nov 2016 05:52:18 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 51091 invoked by uid 99); 4 Nov 2016 05:52:18 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Nov 2016 05:52:18 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id DA25FC2567 for ; Fri, 4 Nov 2016 05:52:17 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -7.019 X-Spam-Level: X-Spam-Status: No, score=-7.019 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id f8gH2dS9MifU for ; Fri, 4 Nov 2016 05:52:16 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 213635F5A1 for ; Fri, 4 Nov 2016 05:52:15 +0000 (UTC) Received: (qmail 51051 invoked by uid 99); 4 Nov 2016 05:52:15 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Nov 2016 05:52:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 34633E03D1; Fri, 4 Nov 2016 05:52:15 +0000 (UTC) From: bjlovegithub To: issues@flink.incubator.apache.org Reply-To: issues@flink.incubator.apache.org References: In-Reply-To: Subject: [GitHub] flink pull request #2629: [FLINK-4391] Provide support for asynchronous oper... Content-Type: text/plain Message-Id: <20161104055215.34633E03D1@git1-us-west.apache.org> Date: Fri, 4 Nov 2016 05:52:15 +0000 (UTC) archived-at: Fri, 04 Nov 2016 05:52:20 -0000 Github user bjlovegithub commented on a diff in the pull request: https://github.com/apache/flink/pull/2629#discussion_r86492216 --- Diff: flink-examples/flink-examples-streaming/src/main/java/org/apache/flink/streaming/examples/async/AsyncIOExample.java --- @@ -0,0 +1,194 @@ +/* + * 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.async; + +import org.apache.flink.api.common.functions.FlatMapFunction; +import org.apache.flink.api.java.tuple.Tuple2; +import org.apache.flink.configuration.Configuration; +import org.apache.flink.runtime.state.filesystem.FsStateBackend; +import org.apache.flink.streaming.api.CheckpointingMode; +import org.apache.flink.streaming.api.TimeCharacteristic; +import org.apache.flink.streaming.api.checkpoint.Checkpointed; +import org.apache.flink.streaming.api.datastream.AsyncDataStream; +import org.apache.flink.streaming.api.datastream.DataStream; +import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment; +import org.apache.flink.streaming.api.functions.async.AsyncFunction; +import org.apache.flink.streaming.api.functions.async.RichAsyncFunction; +import org.apache.flink.streaming.api.functions.source.SourceFunction; +import org.apache.flink.streaming.api.operators.async.AsyncCollector; +import org.apache.flink.util.Collector; + +import java.util.ArrayList; +import java.util.List; +import java.util.Random; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.TimeUnit; + +/** + * Example to illustrates how to use {@link org.apache.flink.streaming.api.functions.async.AsyncFunction} + */ +public class AsyncIOExample { + + /** + * A checkpointed source. + */ + private static class SimpleSource implements SourceFunction, Checkpointed { + private static final long serialVersionUID = 1L; + + private volatile boolean isRunning = true; + private int counter = 0; + private int start = 0; + + @Override + public void restoreState(Integer state) throws Exception { + this.start = state; + } + + @Override + public Integer snapshotState(long checkpointId, long checkpointTimestamp) throws Exception { + return start; + } + + public SimpleSource(int maxNum) { + this.counter = maxNum; + } + + @Override + public void run(SourceContext ctx) throws Exception { + while (start < counter && isRunning) { + synchronized (ctx.getCheckpointLock()) { + ctx.collect(start); + ++start; + } + Thread.sleep(10); + } + } + + @Override + public void cancel() { + isRunning = false; + } + } + + + public static void main(String[] args) throws Exception { + + // obtain execution environment and set setBufferTimeout to 1 to enable + // continuous flushing of the output buffers (lowest latency) + StreamExecutionEnvironment env = StreamExecutionEnvironment.getExecutionEnvironment() + .setBufferTimeout(1); + + // configurations for the job + String statePath = args[0]; + String cpMode = args[1]; + int maxCount = Integer.valueOf(args[2]); + final int sleepFactor = Integer.valueOf(args[3]); + final float failRatio = Float.valueOf(args[4]); + String mode = args[5]; + int taskNum = Integer.valueOf(args[6]); + String timeType = args[7]; + + // setup state and checkpoint mode + env.setStateBackend(new FsStateBackend(statePath)); + if (cpMode.equals("exactly_once")) { + env.enableCheckpointing(1000, CheckpointingMode.EXACTLY_ONCE); + } + else { + env.enableCheckpointing(1000, CheckpointingMode.AT_LEAST_ONCE); + env.disableOperatorChaining(); + } + + // enable watermark or not + if (timeType.equals("EventTime")) { + env.setStreamTimeCharacteristic(TimeCharacteristic.EventTime); + } + else if (timeType.equals("IngestionTime")) { + env.setStreamTimeCharacteristic(TimeCharacteristic.IngestionTime); + } + + // create input stream of integer pairs + DataStream inputStream = env.addSource(new SimpleSource(maxCount)); + + // create async function, which will *wait* for a while to simulate the process of async i/o + AsyncFunction function = new RichAsyncFunction() { + transient ExecutorService executorService; + + @Override + public void open(Configuration parameters) throws Exception { + super.open(parameters); + executorService = Executors.newFixedThreadPool(30); + } + + @Override + public void close() throws Exception { + super.close(); + executorService.shutdown(); + executorService.awaitTermination(sleepFactor*20, TimeUnit.MILLISECONDS); + } + + @Override + public void asyncInvoke(final Integer input, final AsyncCollector collector) throws Exception { + this.executorService.submit(new Runnable() { + @Override + public void run() { + // wait for while to simulate async operation here + int sleep = (int) (new Random().nextFloat() * sleepFactor); --- End diff -- fixed --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---