Member since
07-30-2019
944
Posts
197
Kudos Received
91
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1440 | 10-05-2021 01:53 PM | |
16083 | 09-23-2019 06:03 AM | |
6647 | 05-04-2019 08:42 PM | |
1453 | 06-11-2018 12:45 PM | |
12328 | 06-04-2018 01:11 PM |
02-06-2019
05:36 PM
Not sure, if this was resolved. I am facing the same issue in 1.8. I have set invokeHTTP timeout to 15 minutes. But still, it is failing with timeout.
... View more
08-25-2017
07:24 AM
I had the same problem with PublishKafka_0_10 processor and I found that there is an open issue in JIRA https://issues.apache.org/jira/browse/NIFI-3957 Meanwhile I solved the problem controlling the size of the FlowFile before with RouteOnAttribute
... View more
08-18-2017
12:04 PM
@sally sally If the answer helped, please accept it. Thanks
... View more
08-25-2017
08:59 PM
Hi @Wynner, i am running on 1.1 and i fixed these 2 issues.. fixed the Kerberos error by using only one Kerberos principal across many connections, earlier i used some connections as NiFi and some as my id..i think it was getting confused some where and throwing errors..once i changed all to use nifi id it is working fine. Only way i could clear hung processes are changing a setting in Ambari to not to pick the files when nifi restarts and restarting NiFi. i couldn't find anyother way.. Regards, Sai
... View more
08-01-2017
12:00 PM
@Wynner
This will work, thank you! I've linked all TailFile inputs to a single UpdateAttribute. Using the Advanced option I've created per TailFile a rule. For TailFileSuricata: Conditions ${tailfile.original.path:find('/var/log/suricata/.*')}
Action
Attribute: log.source Value: suricata
... View more
09-19-2017
08:34 AM
Yes, thx. I allredy did get it to work.
... View more
09-30-2017
02:55 PM
Yes. It resolved. I've deleted processor and addition a New one.
... View more
07-27-2017
09:09 PM
@Bilel Boubakri I am assuming you know how many subdirectories there are in this solution. ListFTP - scanning the main directory with all the subdirectories EexcutScript - running a groovy script waiting for all of the flag.ok files to be in the subdirectories FetchFTP - configured to pull the wanted files Here is a snapshot of the simple flow: Here is the sample groovy script for the ExecuteScript processor, configured for this example to wait for 5 files: def flowFiles = session.get(5)
if(!flowFiles || flowFiles.size() < 5) {
session.rollback()
} else {
session.transfer(flowFiles, REL_SUCCESS)
}
waiting-for-5-files-before-ftping-the-files.xml Here is a template of the sample flow
... View more
07-26-2017
02:35 PM
Thanks @Matt Clarke
... View more