Return-Path: X-Original-To: apmail-flink-dev-archive@www.apache.org Delivered-To: apmail-flink-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7BC011895A for ; Tue, 5 Jan 2016 11:18:41 +0000 (UTC) Received: (qmail 70429 invoked by uid 500); 5 Jan 2016 11:18:40 -0000 Delivered-To: apmail-flink-dev-archive@flink.apache.org Received: (qmail 70194 invoked by uid 500); 5 Jan 2016 11:18:40 -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 70170 invoked by uid 99); 5 Jan 2016 11:18:40 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Jan 2016 11:18:40 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 3848D2C1F68 for ; Tue, 5 Jan 2016 11:18:40 +0000 (UTC) Date: Tue, 5 Jan 2016 11:18:40 +0000 (UTC) From: "Aljoscha Krettek (JIRA)" To: dev@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (FLINK-3200) Use Partitioned State Abstraction in WindowOperator MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Aljoscha Krettek created FLINK-3200: --------------------------------------- Summary: Use Partitioned State Abstraction in WindowOperator Key: FLINK-3200 URL: https://issues.apache.org/jira/browse/FLINK-3200 Project: Flink Issue Type: Improvement Components: Streaming Affects Versions: 1.0.0 Reporter: Aljoscha Krettek Assignee: Aljoscha Krettek Right now, the WindowOperator uses snapshotState and restoreState to do custom serialization/deserialization of the windowing state. Moving this to partitioned state would allow us to re-scale in the future. Also, once the partitioned state has support to run on ManagedMemory/Out-of-core state the WindowOperator would also automatically benefit from this, allowing very large windows and large window state. The necessary steps are these: - Enhance state interface with new primitive states: ReducableState, ListState, etc.. Also make state scoped to a namespace. Namespaces are necessary because we need state that is scoped by key and by window (window would be the namespace in this case) - Enhance timer interface to also make timers scoped to a key/namespace - Change WindowOperator to use these new interfaces -- This message was sent by Atlassian JIRA (v6.3.4#6332)