Member since
07-30-2019
920
Posts
195
Kudos Received
91
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1031 | 10-05-2021 01:53 PM | |
14442 | 09-23-2019 06:03 AM | |
5592 | 05-04-2019 08:42 PM | |
1139 | 06-11-2018 12:45 PM | |
10420 | 06-04-2018 01:11 PM |
01-28-2020
05:46 AM
@mbaid You should consider opening a new thread as this one is quite old. A new thread would also allow you to provide further details that will be unique to your situation.
... View more
11-14-2019
06:52 AM
1 Kudo
With that big of a file, you are going to need to adjust settings (memory) and evaluate performance of the file repositories. I would recommend to start with small files, and work your way up. Complete a benchmark at each stage, then begin testing config changes. This should be a lengthy evaluation where in the end, you end up with a configuration capable of consuming 3 gb files.
... View more
09-23-2019
06:03 AM
@budati If you cannot get the blank space in, then just go back to the default of ; and add it between the parameters in the Command Arguments property.
... View more
10-01-2018
06:44 PM
@leah wang The NiFi java process is actually two processes. The actual NiFi java process and a bootstrap java process. The bootstrap process has a very small memory footprint, 12MB to 24MB, that looks for the NiFi java process. If it doesn't find that process it will try to start it. The NiFi java process will reserve the memory allocated, in this case 8GB, and hold it. It doesn't actually use the memory, but reserves it so it is available as NiFi needs it. There won't be any garbage clean up until the memory usage is around 80% utilization.
... View more
06-21-2019
12:11 PM
Kafka Consumer Demarcator could be one solution.Use Shift+enter and try persisting into HDFS.
... View more
05-15-2018
05:06 PM
@David Sandoval That is great to hear. Would you do me a favor and accept my answer?
... View more
04-11-2018
02:26 PM
1 Kudo
I resolved the issue by using a different browser. The version of Internet Explorer I was using did not work. I resolved the issue by allowing the 8080 port through the windows firewall and then connecting remotely using Chrome.
... View more
03-17-2018
10:08 AM
1 Kudo
@Pavan M As you are not transferring any of the flowfiles to REL_FAILURE, Transfer the else flowfiles to failure relation and auto terminate the failure relation, else:
session.transfer(flowFile, REL_FAILURE) Auto terminate failure relation (or) You can use session.remove to remove the flowfile else: session.remove(flowFile) by using any of the above ways you can achieve same result as you are expecting.
... View more