Re: Extending ListenHTTP

2017-06-01 Thread Vincent Russell
nd modifying it. > > Hope that helps. > > -Bryan > > > On Wed, May 31, 2017 at 11:55 AM, Vincent Russell > <vincent.russ...@gmail.com> wrote: > > All, > > > > I'm using nifi version 0.7.1. > > > > Hello I have extended the Liste

Extending ListenHTTP

2017-05-31 Thread Vincent Russell
All, I'm using nifi version 0.7.1. Hello I have extended the ListenHTTP processor so that I can have a custom servlet that grabs the issuerDN from the cert that posting to the endpoint. However when jetty attempts to start I get a "javax.servlet.UnavailableException" It appears that this is

RE: CRON driven scheduling in NiFi

2016-07-04 Thread Vincent Russell
It would be a nice addition to the UI to add a textual representation of the cron expression as a popup after entering or changing the value and maybe on hover as well. On Jul 4, 2016 6:27 AM, "Gadiputi, Sravani" wrote: > Thanks Lee, now it is working fine as per

Controller service reference another service

2016-04-11 Thread Vincent Russell
Is it possible to user one controller service inside of another service? Can it be brought in from the ControllerServiceInitializationContext? If so, how is this done? Thank you, Vincent

Re: Having on processor block while another one is running

2016-03-29 Thread Vincent Russell
> Oleg > > On Mar 28, 2016, at 6:45 PM, Vincent Russell <vincent.russ...@gmail.com> > wrote: > > I have two processors (that aren't part of the same flow) that write to > the same resource (a mongo collection) via a map reduce job. > > I don't want both to run at

Re: Having on processor block while another one is running

2016-03-28 Thread Vincent Russell
ly and that would largely be by design. Can you describe the > use case more so we can suggest alternatives or perhaps understand the > motivation better? > > Thanks > Joe > > On Mon, Mar 28, 2016 at 4:00 PM, Vincent Russell > <vincent.russ...@gmail.com> wrote: > >

Having on processor block while another one is running

2016-03-28 Thread Vincent Russell
Is it possible to have one processor block while another specified processor is running (within the onTrigger method). I can do this on a non-clustered nifi with a synchronized block I guess, but i wanted to know if there was a more idiomatic way of doing this. Thanks, Vincent

Re: Version Control on NiFi flow.xml

2016-02-17 Thread Vincent Russell
My team has played around with versioning control with the nifi in the following way (we have yet to use this for deployments yet though): - We version control the flow.xml file and all of the config files that need to be changed - We build a distribution of nifi, gziping the flow.xml

Re: Testing a nifi flow via junit

2016-01-05 Thread Vincent Russell
> [5] > https://cwiki.apache.org/confluence/display/NIFI/Configuration+Management+of+Flows > > > On Mon, Jan 4, 2016 at 1:37 PM, Vincent Russell <vincent.russ...@gmail.com > > wrote: > >> All, >> >> I see that there is a way to test a single processor w

Re: Testing a nifi flow via junit

2016-01-05 Thread Vincent Russell
essor B in the > mock framework, but that does not by any means guarantee that it will also > perform better in a live > environment. > > Thanks > -Mark > > On Jan 5, 2016, at 5:17 PM, Vincent Russell <vincent.russ...@gmail.com> > wrote: > > Hello Aldrin, >

Testing a nifi flow via junit

2016-01-04 Thread Vincent Russell
All, I see that there is a way to test a single processor with the TestRunner (StandardProcessorTestRunner) class, but is there a way to set up an integration test to test a complete flow or a subset of a flow? Thank you, Vincent