Member since
07-30-2019
944
Posts
197
Kudos Received
91
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1458 | 10-05-2021 01:53 PM | |
16163 | 09-23-2019 06:03 AM | |
6703 | 05-04-2019 08:42 PM | |
1474 | 06-11-2018 12:45 PM | |
12432 | 06-04-2018 01:11 PM |
10-24-2017
08:33 PM
@Karl Fredrickson The normal behavior of the ListSFTP processor is the first listing, meaning it has no state yet, will get a listing of all current files in the remote directory. The subsequent listings will get all new files, written since the last time stamp listed in the processor, except for the last one or two files. These one or two files will be listed in the next listing the processor creates and any additional new files based on the updated state for the processor, except for again the latest one or two files and so on as the processor runs. The ListSFTP processor doesn't use the file name in anyway. If you want files to be listed closer to the time they are being written to the directory, then set the processor to run more often than every 10 minutes.
... View more
10-24-2017
02:51 PM
@Narasimma varman If you change your regex to this ".*app_2017.*\.log" it should match only the nifi-app_2017 log files.
... View more
10-23-2017
01:49 PM
@Diego A Labrador You are running into https://issues.apache.org/jira/browse/NIFI-4187 There currently is no HDF release that includes this fix. What is happening is something is causing the NIFi process to die. The NiFi bootstrap detects that the NiFi process has hung or died and tries to restart it where it runs in to the above BUG. I would search you NiFi logs for perhaps some OOM error that may have have caused the NiFi process to die.
... View more
10-19-2017
08:26 PM
@dhieru singh Is every node configured the same way? There is an inconsistency in what the UI shows and what the snapshot of the disk partition. Will you post a snapshot of the actual nifi.properties files? Did you change the configuration in the nifi.properties file after initial setup? If so, you will have to restart NiFi for the change to take affect. FYI, what I do see is that NiFi thinks your content and flow file repos are on the root partition which is full and that is very bad.
... View more
10-19-2017
02:52 PM
@xav webmaster Have you looked at using the ScanContent processor for this use case?
... View more
10-19-2017
02:41 PM
@dhieru singh
Please post a snapshot of the section covering content repository configuration in the nifi.properties file. Specifically these properties # Content Repository nifi.content.repository.implementation=org.apache.nifi.controller.repository.FileSystemRepository
nifi.content.claim.max.appendable.size=10 MB nifi.content.claim.max.flow.files=100 nifi.content.repository.directory.default=./content_repository nifi.content.repository.archive.max.retention.period=12 hours nifi.content.repository.archive.max.usage.percentage=50% nifi.content.repository.archive.enabled=true
nifi.content.repository.always.sync=false nifi.content.viewer.url=/nifi-content-viewer/
... View more
10-19-2017
02:37 PM
@dhieru singh That message obviously means that you don't have the disk space to run the flow as it is currently configured. The answer to the other questions are covered by the other post you made.
... View more
10-19-2017
12:41 PM
@dhieru singh What are the average sizes of the flow files coming out of the ListenUDP processor?
... View more