Member since
07-08-2016
260
Posts
44
Kudos Received
10
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2491 | 05-02-2018 06:03 PM | |
5080 | 10-18-2017 04:02 PM | |
1618 | 08-25-2017 08:59 PM | |
2222 | 07-21-2017 08:13 PM | |
8891 | 04-06-2017 09:54 PM |
02-01-2020
08:36 AM
Hello, did you make this work? Is it possible to run the Nifi as a service on Windows in some way? Please give us more detailed information about it, if you succeeded... Can't apps like AlwaysUp or JSL work? Java Service Wrappers... Thanks.
... View more
01-23-2020
06:23 AM
@alexmc As this thread is a couple of years old, you would be better served by creating a new thread.
... View more
01-07-2020
11:56 PM
Hello @saikrishna_tara @bbende @emaxwell . Thanks for the solution and it worked well for me. I am new to Nifi and got the same problem statement as @saikrishna_tara. I am able to make it till merge content, i can see my files are in parent flow files. but in parent name of files are uuid of the flow files and not the actual name of the file which is processed. I need to put all the parent flow file's actual name via email processor to the outside world. Please let me know in case more details are required. Regards Nitin
... View more
11-20-2019
04:11 PM
How to do the file count if we are using Compress Content Processor ?
... View more
11-13-2019
11:01 AM
Hi @mburgess I tried adding attribute name “auth” in Attributes to Send property and had this “auth” as a custom property in my invokeHTTP processor with value 'Authorization: Bearer ${access_token}' where the value of variable access_token gets populated from EvaluateJsonPath processor in front of my invokeHTTP, but somehow I am still getting unauthorized as the response. Is there anything else that I’m missing for token to get passed on as a header in this call?
... View more
07-30-2018
06:26 PM
ValidateRecord is more about validating the individual records than it is about validating the entire flow file. If some records are valid and some are invalid, each type will be routed to the corresponding relationship. However, for invalid records, we can't use the same record writer as valid records, or else we know it will fail (because we know they're invalid), so there is a second RecordWriter for invalid records (you might use this to try to record the field names or something, but by the time that ValidateRecord knows the individual record is invalid, it doesn't know that it came in as Avro (for example), nor does it know that you might want it to go out as Avro. That's the flexibility and power of the Record Reader/Writer paradigm, but in this case the tradeoff is that you can't currently treat the entire flow file as valid or invalid. It may make sense to have a "Invalid Record Strategy" property, to choose between "Individual Records" using the RecordWriters (the current behavior), or "Original FlowFile" which would ignore the RecordWriters and instead transfer the entire incoming flow file as-is to the 'invalid' relationship. Please feel free to file an improvement Jira for this capability.
... View more
08-01-2018
04:46 PM
Hi , just trying to get some attention from experts.. any idea on how to decrypt PGP file using Passphrase and secrect key (Private Key). Regards, Sai
... View more
07-17-2018
06:29 PM
@Saikrishna Tarapareddy - The only NiFi configuration file you can edit that will take affect without requiring a NiFi restart is the logback.xml file. - As far as what is an acceptable search base, best to test your search base command on command line using ldapsearch. If it doesn't work there, it will not work in NiFi either. - Thank you, Matt - If you found this Answer addressed your original question, please take a moment to login and click "Accept" below the answer.
... View more
07-03-2018
09:21 PM
Jeez I would hope not, I'm not aware of any platform differences for Jayway (the underlying library used to do JSONPath stuff in NiFi)
... View more
07-02-2018
08:21 PM
1 Kudo
@Saikrishna Tarapareddy - You can increase the number of concurrent tasks on each remote port you have established a connection to: Once you have your flow established/connected to your Remote Process Group (RPG), right click on the RPG to bring up teh following context menu: Select "Manage Remote Ports" to open a new UI. You will then be able to edit each Remote Input/Output you have established connection to: You will also want to increase the number concurrent tasks on your remote ports as well. - Thanks, Matt - When an "Answer" addresses/solves your question, please select "Accept" beneath that answer. This encourages user participation in this forum.
... View more