Return-Path: X-Original-To: apmail-flink-issues-archive@minotaur.apache.org Delivered-To: apmail-flink-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 00757179E2 for ; Tue, 17 Mar 2015 18:58:53 +0000 (UTC) Received: (qmail 14691 invoked by uid 500); 17 Mar 2015 18:58:52 -0000 Delivered-To: apmail-flink-issues-archive@flink.apache.org Received: (qmail 14653 invoked by uid 500); 17 Mar 2015 18:58:52 -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 14644 invoked by uid 99); 17 Mar 2015 18:58:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Mar 2015 18:58:52 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 17 Mar 2015 18:58:51 +0000 Received: (qmail 14363 invoked by uid 99); 17 Mar 2015 18:58:31 -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; Tue, 17 Mar 2015 18:58:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 18FC5E1175; Tue, 17 Mar 2015 18:58:31 +0000 (UTC) From: StephanEwen To: issues@flink.incubator.apache.org Reply-To: issues@flink.incubator.apache.org Message-ID: Subject: [GitHub] flink pull request: [FLINK-441] Rename Pact* and Nephele* classes ... Content-Type: text/plain Date: Tue, 17 Mar 2015 18:58:31 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org GitHub user StephanEwen opened a pull request: https://github.com/apache/flink/pull/492 [FLINK-441] Rename Pact* and Nephele* classes in the optimizer Renames the package `org.apache.flink.compiler` to `org.apache.fink.optimizer` Renames `PactCompiler` to `Optimizer` Renames `NepheleJobGraphGenerator` to `JobGraphGenerator` Renames `PactConnection` to `DagConnection` (since the enclosing data structure is the Optimizer DAG). Renames instances of internal variables and methods that referred to `PactContract` to refer to `Operator` instead. Removes the unnecessary context checker. Was only ever valuable in the deprecated record API. Makes the various graph traversals (previously inner classes of the Optimizer) standalone classes, which makes the Optimizer class more graspable. Migrates some changes from the deprecated Record API to the Java API. You can merge this pull request into a Git repository by running: $ git pull https://github.com/StephanEwen/incubator-flink optimizer_rename Alternatively you can review and apply these changes as the patch at: https://github.com/apache/flink/pull/492.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 #492 ---- commit c3868feb6e9618aeb8bdcd500f5f0380abc587f8 Author: Stephan Ewen Date: 2015-03-17T09:53:35Z [FLINK-441] [optimizer] Rename "o.a.flink.compiler" to "o.a.flink.optimizer" commit 86f15955a025da5dbf52b243c7340b2d94341c36 Author: Stephan Ewen Date: 2015-03-17T09:57:08Z [FLINK-441] [optimizer] Removed obsolete plan validator commit 5c44709642d1442d7bf9a59746a217f37167fec6 Author: Stephan Ewen Date: 2015-03-17T10:02:33Z [FLINK-441] [optimizer] Remove obsolete and unused utility classes commit 40ef1b93aa5261b05bfee7d9ff8cf67554f80122 Author: Stephan Ewen Date: 2015-03-17T10:24:35Z [FLINK-441] [optimizer] Rename Pact* and Nephele* classes Also clean up and improve various comments and method names. commit 211f2742d40240f3820c43aef80108849b4808ff Author: Stephan Ewen Date: 2015-03-17T15:14:50Z [optimizer] Migrate first set of tests (branching plans) to new API commit 3f67a33d84d011942ea4e21f266914a3e53dda72 Author: Stephan Ewen Date: 2015-03-17T15:43:28Z [optimizer] Moved optimizer graph traversals to dedicated classes to simplify Optimizer class. ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---