Return-Path: X-Original-To: apmail-nifi-commits-archive@minotaur.apache.org Delivered-To: apmail-nifi-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0F91B10C33 for ; Tue, 13 Jan 2015 16:14:57 +0000 (UTC) Received: (qmail 41364 invoked by uid 500); 13 Jan 2015 16:14:58 -0000 Delivered-To: apmail-nifi-commits-archive@nifi.apache.org Received: (qmail 41326 invoked by uid 500); 13 Jan 2015 16:14:58 -0000 Mailing-List: contact commits-help@nifi.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@nifi.incubator.apache.org Delivered-To: mailing list commits@nifi.incubator.apache.org Received: (qmail 41317 invoked by uid 99); 13 Jan 2015 16:14:58 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jan 2015 16:14:58 +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, 13 Jan 2015 16:14:37 +0000 Received: (qmail 39704 invoked by uid 99); 13 Jan 2015 16:14:34 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jan 2015 16:14:34 +0000 Date: Tue, 13 Jan 2015 16:14:34 +0000 (UTC) From: "Mark Payne (JIRA)" To: commits@nifi.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (NIFI-241) Framework FingerprintFactory begins processor life cycle but does not finish MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/NIFI-241?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14275468#comment-14275468 ] Mark Payne commented on NIFI-241: --------------------------------- Mike, You can definitely use the @OnAdded, @OnRemoved, @OnShutdown annotations, but their uses should be quite rare. @OnAdded is used when the Processor is added to the graph and never again, including on restart of NiFi, so establishing a connection pool should not be done in @OnAdded. @OnRemoved is a good time to remove a state file, for example. @OnShutdown is used only in order to be a good steward and clean up open connections, etc., as it is not guaranteed to be called on shutdown (kill -9 for instance doesn't allow this to happen). > Framework FingerprintFactory begins processor life cycle but does not finish > ---------------------------------------------------------------------------- > > Key: NIFI-241 > URL: https://issues.apache.org/jira/browse/NIFI-241 > Project: Apache NiFi > Issue Type: Bug > Components: Core Framework > Reporter: Michael Moser > Assignee: Mark Payne > Fix For: 0.0.1 > > > The FingerprintFactory will create Processor objects and invoke their initialize() and @OnAdded methods. If a Processor uses system resources, these methods are where those resources are allocated. But, those processors are never disposed by calling their @OnRemoved or @OnShutdown methods. This may result in system resource leaks, depending on how processors are implemented. > To reproduce, add a processor to the NiFi graph and restart NiFi. Note that initialize() and @OnAdded is called at least twice (I observed 3 times) as NiFi starts. The getIdentifier() is different for each invocation. Shutdown NiFi and observe that @OnShutdown is called once. -- This message was sent by Atlassian JIRA (v6.3.4#6332)