Re: Converting long string to JSON format.

2019-11-06 Thread Chandrashekhar Kotekar
I would prefer to write custom processor which will first convert those key value pairs into Properties object and then map that object to POJO and use json4s to convert pojo to JSON. Sent from my iPhone > On 6 Nov 2019, at 9:13 pm, Rivasa wrote: > > Hi, so I'm having a bit of trouble

How to create custom processor which needs 2 or more NiFi bundles?

2019-09-25 Thread Chandrashekhar Kotekar
Hi, I have developed some custom processors within single Maven project (lets call this project custom-processors). These processors need Hadoop dependencies (nifi-hadoop-nar), record-serde related dependencies (nifi-record-serialization-service-api) and Kerberos dependencies apart from usual

Re: How to create custom processor which needs 2 or more NiFi bundles?

2019-09-25 Thread Chandrashekhar Kotekar
; > On Wed, Sep 25, 2019 at 2:09 PM Chandrashekhar Kotekar > wrote: >> >> Hi, >> >> I have developed some custom processors within single Maven project (lets >> call this project custom-processors). These processors need Hadoop >> dependencies (nifi

NAR has test level dependencies

2019-10-14 Thread Chandrashekhar Kotekar
Hi, We have written some custom processor and controller services and packaged them in single NAR bundle but this NAR has dependencies marked with test as well. Example of such dependencies is scalatest, junit, etc. These dependencies are not really needed to run processor in NiFi but they still

Re: NAR has test level dependencies

2019-10-14 Thread Chandrashekhar Kotekar
e nar. You > can then zero in by doing the same on the processor bundle. > > thanks > >> On Mon, Oct 14, 2019 at 7:51 AM Chandrashekhar Kotekar >> wrote: >> Hi, >> >> We have written some custom processor and controller services and packaged >&

How to resolve NiFi controller service conflicts across different processor groups?

2020-04-24 Thread Chandrashekhar Kotekar
Hi All, We have developed NiFi flow which has one custom processor (lets call it CP) which uses custom controller service (lets call it CCS) which in turn uses NiFi's KeytabCredentialsService (lets call it KCS). CP ==> CCS ==> KCS This flow is in processor group called development. We created