Return-Path: X-Original-To: apmail-apex-dev-archive@minotaur.apache.org Delivered-To: apmail-apex-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 06E87184ED for ; Tue, 22 Dec 2015 01:15:56 +0000 (UTC) Received: (qmail 85610 invoked by uid 500); 22 Dec 2015 01:15:55 -0000 Delivered-To: apmail-apex-dev-archive@apex.apache.org Received: (qmail 85543 invoked by uid 500); 22 Dec 2015 01:15:55 -0000 Mailing-List: contact dev-help@apex.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@apex.incubator.apache.org Delivered-To: mailing list dev@apex.incubator.apache.org Received: (qmail 85530 invoked by uid 99); 22 Dec 2015 01:15:55 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Dec 2015 01:15:55 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 187A01804C6 for ; Tue, 22 Dec 2015 01:15:55 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.427 X-Spam-Level: X-Spam-Status: No, score=0.427 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.554, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id dQ-jIdNppm7f for ; Tue, 22 Dec 2015 01:15:48 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with SMTP id B19E5203B7 for ; Tue, 22 Dec 2015 01:15:47 +0000 (UTC) Received: (qmail 85507 invoked by uid 99); 22 Dec 2015 01:15:46 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Dec 2015 01:15:46 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 96C9A2C14F6 for ; Tue, 22 Dec 2015 01:15:46 +0000 (UTC) Date: Tue, 22 Dec 2015 01:15:46 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: dev@apex.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (APEXCORE-60) Iterative processing support MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/APEXCORE-60?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15067387#comment-15067387 ] ASF GitHub Bot commented on APEXCORE-60: ---------------------------------------- Github user davidyan74 commented on a diff in the pull request: https://github.com/apache/incubator-apex-core/pull/185#discussion_r48212355 --- Diff: engine/src/main/java/com/datatorrent/stram/plan/logical/LogicalPlan.java --- @@ -1495,6 +1509,11 @@ private void validateThreadLocal(OperatorMeta om) { return; } + if (om.getOperator() instanceof Operator.DelayOperator) { + String msg = String.format("Locality %s invalid for delay operator %s", Locality.THREAD_LOCAL, om); + throw new ValidationException(msg); --- End diff -- This is because if there is a THREAD_LOCAL for the loop, it would end up being an infinite recursive call within the thread. However, it's technically possible to have THREAD_LOCAL for part of the cycle. I have reopened this JIRA: https://issues.apache.org/jira/browse/APEXCORE-262. We will tackle this in the future. > Iterative processing support > ---------------------------- > > Key: APEXCORE-60 > URL: https://issues.apache.org/jira/browse/APEXCORE-60 > Project: Apache Apex Core > Issue Type: New Feature > Reporter: David Yan > Assignee: David Yan > > We would like to support iterative processing by introducing cycles in the graph (known as DAG now, but no longer if we support iterative processing). > Initial idea is as follow: > {noformat} > |----| > v | > A -> B -> C -> D > ^ | > |---------| > {noformat} > C has two separate backward streams to A and B. The input ports of A and B that C connects to will have a special attribute on how many window IDs ahead the incoming windows should be treated as, and A and B will be responsible for the initial data for such input ports. > Another idea is to have C advance the window ID on its output ports and have C generate the initial data on its output ports to A and B. -- This message was sent by Atlassian JIRA (v6.3.4#6332)