Re: Update to nifi-nar-maven-plugin

2015-08-17 Thread Matt Gilman
Awhile back I proposed a new maven plugin that would allow a processor developer to easily see the provided dependencies their NAR would be inheriting. This can become unclear if the processors depend on a Controller Service API NAR (either directly or transitively through another Controller

Re: Lots o branches in git

2015-08-17 Thread Dan Bress
My stale branches have been deleted. Dan Bress Software Engineer ONYX Consulting Services From: Mike Drob mad...@cloudera.com Sent: Monday, August 17, 2015 10:07 AM To: dev@nifi.apache.org Subject: Re: Lots o branches in git Also useful is git remote

Re: Problems w/ Unsubscribe

2015-08-17 Thread Joe Witt
Hello, Sending an email to 'dev-unsubscr...@nifi.apache.org' should do the trick provided you do so from the address that you've subscribed with. I'll send the command to manually remove it. Good luck Thanks Joe On Mon, Aug 17, 2015 at 10:07 AM, Adams, Jeremiah jeremiah.ad...@pearson.com

Re: Process to create multiple files

2015-08-17 Thread Dan Bress
plj, I would not recommend having this processor create multiple thumbnails. What I would recommend is the following: Create a new processor called CreateThumbnail or RescaleImage Then have a configuration on the processor that says what size the output image should be(e.g. 128x128,

Re: Process to create multiple files

2015-08-17 Thread Joe Percivall
For a very simple example you could check out the DuplicateFlowFile standard processor.  Joe- - - - - - Joseph Percivalllinkedin.com/in/Percivall c: (410) 693-8032e: joeperciv...@yahoo.com On Monday, August 17, 2015 2:36 PM, plj p...@mitre.org wrote: Ok that makes sense. What

Re: AMQP Processor Github link

2015-08-17 Thread Joe Witt
https://github.com/helicopterman22/nifi_amqp_processors Thanks Joe On Mon, Aug 17, 2015 at 2:23 PM, DAVID SMITH davidrsm...@btinternet.com wrote: Please find below a link to my nifi-amqp-processor project, I would welcome any feedback and also any help with creating Junit tests, particularly

RE: Process to create multiple files

2015-08-17 Thread plj
Ok that makes sense. What processor would I extend/implement to allow me to send out multiple files from the process that unpacks the NITF bundle? Any examples? Thank, Pat From: Joe Witt [via Apache NiFi (incubating) Developer List] [mailto:ml-node+s39713n2513...@n7.nabble.com] Sent:

Re: Process to create multiple files

2015-08-17 Thread Bryan Bende
Pat, You don't need to extend anything special to produce multiple files. You can create as many FlowFiles as you want and transfer them to a relationship, such as... FlowFile childFlowFile = session.create(original); // create more ListFlowFile flowFiles = new ArrayListFlowFile();