From issues-return-171620-archive-asf-public=cust-asf.ponee.io@flink.apache.org Wed Jun 13 17:06:16 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id DE54D180609 for ; Wed, 13 Jun 2018 17:06:15 +0200 (CEST) Received: (qmail 48945 invoked by uid 500); 13 Jun 2018 15:06:14 -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 48936 invoked by uid 99); 13 Jun 2018 15:06:14 -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; Wed, 13 Jun 2018 15:06:14 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C7BB0DFC42; Wed, 13 Jun 2018 15:06:14 +0000 (UTC) From: twalthr To: issues@flink.apache.org Reply-To: issues@flink.apache.org Message-ID: Subject: [GitHub] flink pull request #6160: [FLINK-9578] [sql-client] Allow to define an auto ... Content-Type: text/plain Date: Wed, 13 Jun 2018 15:06:14 +0000 (UTC) GitHub user twalthr opened a pull request: https://github.com/apache/flink/pull/6160 [FLINK-9578] [sql-client] Allow to define an auto watermark interval in SQL Client ## What is the purpose of the change This PR allows for setting the auto watermark interval in a non-programatic way for the SQL Client. ## Brief change log - Introduction of a property `periodic-watermarks-interval` ## Verifying this change - Existing tests adapted and new ExecutionContextTest added ## Does this pull request potentially affect one of the following parts: - Dependencies (does it add or upgrade a dependency): no - The public API, i.e., is any changed class annotated with `@Public(Evolving)`: no - The serializers: no - The runtime per-record code paths (performance sensitive): no - Anything that affects deployment or recovery: JobManager (and its components), Checkpointing, Yarn/Mesos, ZooKeeper: no - The S3 file system connector: no ## Documentation - Does this pull request introduce a new feature? yes - If yes, how is the feature documented? docs You can merge this pull request into a Git repository by running: $ git pull https://github.com/twalthr/flink FLINK-9578 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/flink/pull/6160.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #6160 ---- commit cebfefc33b25dd090cc9bf5bd4130333f9a0ff83 Author: Timo Walther Date: 2018-06-13T14:49:00Z [FLINK-9578] [sql-client] Allow to define an auto watermark interval in SQL Client ---- ---