Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id EF7E2200BC5 for ; Tue, 8 Nov 2016 01:54:59 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id EE0B6160AF9; Tue, 8 Nov 2016 00:54:59 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 418AD160AEC for ; Tue, 8 Nov 2016 01:54:59 +0100 (CET) Received: (qmail 86282 invoked by uid 500); 8 Nov 2016 00:54:58 -0000 Mailing-List: contact commits-help@nifi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@nifi.apache.org Delivered-To: mailing list commits@nifi.apache.org Received: (qmail 86269 invoked by uid 99); 8 Nov 2016 00:54:58 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Nov 2016 00:54:58 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 59B562C0087 for ; Tue, 8 Nov 2016 00:54:58 +0000 (UTC) Date: Tue, 8 Nov 2016 00:54:58 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: commits@nifi.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (MINIFI-107) Support for Process Groups MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 08 Nov 2016 00:55:00 -0000 [ https://issues.apache.org/jira/browse/MINIFI-107?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15646015#comment-15646015 ] ASF GitHub Bot commented on MINIFI-107: --------------------------------------- Github user JPercivall commented on a diff in the pull request: https://github.com/apache/nifi-minifi/pull/50#discussion_r86903300 --- Diff: minifi-docs/src/main/markdown/System_Admin_Guide.md --- @@ -391,6 +391,39 @@ Within the Processor Configuration section, there is the `Properties` subsection State File: ./conf/state/tail-file Initial Start Position: Beginning of File +## Process Groups + +Process groups can be nested from the top level. They can contain other process groups as well and can be used to logically group related operations. + +*Property* | *Description* +----------------------------------- | ------------- +name | The name of what this process group will do. +id | The id of this process group. This needs to be set to a unique filesystem-friendly value (regex: [A-Za-z0-9_-]+) +Processors | The processors contained in this Process Group. (Defined above) +Remote Processing Groups | The remote processing groups contained in this Process Group. (Defined below) +Connections | The connections contained in this Process Group. (Defined below) +Input Ports | The input ports contained in this Process Group. (Defined below) +Output Ports | The output ports contained in this Process Group. (Defined below) +Process Groups | The child Process Groups contained in this Process Group. + +## Input Ports --- End diff -- Similar to what we had with PGs, during validation we should check if the root PG has input/output ports (and fail if so) > Support for Process Groups > -------------------------- > > Key: MINIFI-107 > URL: https://issues.apache.org/jira/browse/MINIFI-107 > Project: Apache NiFi MiNiFi > Issue Type: Improvement > Reporter: Bryan Rosander > Assignee: Bryan Rosander > > Process groups are a good way to simplify the design part of development in NiFi. MiNiFi Java currently doesn't support them but should in order to make designing templates compatible with MiNiFi a better experience. -- This message was sent by Atlassian JIRA (v6.3.4#6332)