From issues-return-177031-archive-asf-public=cust-asf.ponee.io@flink.apache.org Thu Jul 12 15:48:17 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 C5FAB180654 for ; Thu, 12 Jul 2018 15:48:16 +0200 (CEST) Received: (qmail 17196 invoked by uid 500); 12 Jul 2018 13:48:15 -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 17187 invoked by uid 99); 12 Jul 2018 13:48: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; Thu, 12 Jul 2018 13:48:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B9B24DFA59; Thu, 12 Jul 2018 13:48:15 +0000 (UTC) From: azagrebin To: issues@flink.apache.org Reply-To: issues@flink.apache.org References: In-Reply-To: Subject: [GitHub] flink pull request #6313: [FLINK-9701] Add TTL in state descriptors Content-Type: text/plain Message-Id: <20180712134815.B9B24DFA59@git1-us-west.apache.org> Date: Thu, 12 Jul 2018 13:48:15 +0000 (UTC) Github user azagrebin commented on a diff in the pull request: https://github.com/apache/flink/pull/6313#discussion_r202040710 --- Diff: flink-core/src/main/java/org/apache/flink/api/common/state/StateDescriptor.java --- @@ -92,6 +93,10 @@ @Nullable private String queryableStateName; + /** Name for queries against state created from this StateDescriptor. */ + @Nullable + private StateTtlConfiguration ttlConfig; --- End diff -- 👍 will roll it back ---