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 370A8200B50 for ; Fri, 29 Jul 2016 18:36:44 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 35A71160A79; Fri, 29 Jul 2016 16:36:44 +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 7D7E8160A6E for ; Fri, 29 Jul 2016 18:36:43 +0200 (CEST) Received: (qmail 99347 invoked by uid 500); 29 Jul 2016 16:36:42 -0000 Mailing-List: contact dev-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 dev@flink.apache.org Received: (qmail 99336 invoked by uid 99); 29 Jul 2016 16:36:42 -0000 Received: from mail-relay.apache.org (HELO mail-relay.apache.org) (140.211.11.15) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Jul 2016 16:36:42 +0000 Received: from mail-ua0-f170.google.com (mail-ua0-f170.google.com [209.85.217.170]) by mail-relay.apache.org (ASF Mail Server at mail-relay.apache.org) with ESMTPSA id 3863B1A003E for ; Fri, 29 Jul 2016 16:36:42 +0000 (UTC) Received: by mail-ua0-f170.google.com with SMTP id l32so65609510ual.2 for ; Fri, 29 Jul 2016 09:36:42 -0700 (PDT) X-Gm-Message-State: AEkoouv+LqCSwsm3WXQC0+73n0eesnJz1mkx9gGqoyqjN8WVJ073BygTPugCbwEONa0d5VwPdQagUcFRmTH5k74l X-Received: by 10.176.64.9 with SMTP id h9mr18805311uad.94.1469810201110; Fri, 29 Jul 2016 09:36:41 -0700 (PDT) MIME-Version: 1.0 Received: by 10.159.53.15 with HTTP; Fri, 29 Jul 2016 09:36:21 -0700 (PDT) In-Reply-To: References: <3cd591b4-b7e9-60ec-65b7-4cb50cabfca1@cern.ch> From: Maximilian Michels Date: Fri, 29 Jul 2016 18:36:21 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: Discard out-of-order events To: dev@flink.apache.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable archived-at: Fri, 29 Jul 2016 16:36:44 -0000 @Gyula: This is documented in the JavaDoc of the `allowedLateness(..)` method and in the docs: https://ci.apache.org/projects/flink/flink-docs-master/apis/streaming/windo= ws.html#dealing-with-late-data @Kevin: Thanks for the explanation, I'll get back to you soon (sort of in a rush). Cheers, Max On Fri, Jul 29, 2016 at 10:57 AM, Gyula F=C3=B3ra wr= ote: > Hi Max, > > So if I understand correctly the window operators now, by default, disca= rd > late elements? > Is this documented somewhere? > > Gyula > > Maximilian Michels ezt =C3=ADrta (id=C5=91pont: 2016. j= =C3=BAl. 29., P, > 10:40): > >> Hi! >> >> I'm not sure whether I understand your question. The purpose of Event >> Time is to be able to process out-of-order events. Do you want to >> discard late elements? In the upcoming Flink 1.1.0 you can set the >> `allowedLateness` on a windowed stream. The default is 0, so late >> elements are discarded; late elements are elements which arrive after >> the Watermark has reached the operator. >> >> Cheers, >> Max >> >> On Thu, Jul 28, 2016 at 6:49 PM, Kevin Jacobs >> wrote: >> > Is it possible to discard events that are out-of-order (in terms of ev= ent >> > time)? >> > >>