Re: Need help with Controller Service implementation

2018-10-22 Thread Sivaprasanna
Thanks Bryan, Mike, Matt. I had both the things wrong. Now I have fixed it. Thanks once again. :) - Sivaprasanna On Mon, Oct 22, 2018 at 6:34 PM Bryan Bende wrote: > Usually this is due to a missing NAR dependency somewhere, > double-check the dependencies between the processors NAR and service

Re: Need help with Controller Service implementation

2018-10-22 Thread Bryan Bende
Usually this is due to a missing NAR dependency somewhere, double-check the dependencies between the processors NAR and service API NAR, and between the service impl NAR and service API NAR. https://cwiki.apache.org/confluence/display/NIFI/Maven+Projects+for+Extensions#MavenProjectsforExtensions-L

Re: Need help with Controller Service implementation

2018-10-22 Thread Mike Thomsen
What Matt said. META-INF.services might be how the IDE shows it (it does that for docs in IntelliJ), but it is really META-INF/services on the disk. On Sun, Oct 21, 2018 at 2:16 PM Matt Burgess wrote: > I’m not at my computer but I think your ControllerService file (for > ServiceLoader) might ne

Re: Need help with Controller Service implementation

2018-10-21 Thread Matt Burgess
I’m not at my computer but I think your ControllerService file (for ServiceLoader) might need to be in META-INF/services instead of META-INF.services? Sent from my iPhone > On Oct 21, 2018, at 1:56 PM, Sivaprasanna wrote: > > Team, > > I'm working on a controller service implementation (NIFI

Need help with Controller Service implementation

2018-10-21 Thread Sivaprasanna
Team, I'm working on a controller service implementation (NIFI-5621) and I have added new PropertyDescriptor to all the processors that would use this CS. This is the first time I'm writing a CS implementation so I went through the dev guide and implementation of other CS's across the NiFi project