Member since
07-30-2019
944
Posts
197
Kudos Received
91
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1506 | 10-05-2021 01:53 PM | |
| 16325 | 09-23-2019 06:03 AM | |
| 6817 | 05-04-2019 08:42 PM | |
| 1502 | 06-11-2018 12:45 PM | |
| 12625 | 06-04-2018 01:11 PM |
06-14-2017
05:39 PM
@mayki wogno
Was does the configuration of the GetFTP processor look like?
... View more
06-14-2017
02:20 PM
@Kiem Nguyen The configuration is to have the same number of concurrent tasks and partitions. So, with 4 partitions on the topics, you want 4 concurrent tasks. Since you have a 3 node cluster, configure your PublishKafka and Consume_Kafka processors with 2 concurrent tasks and you should be good. For an ideal situation, it would be better if they matched exactly. So, if possible, I would configure the Kafka topics with 6 partitions, or some multiple of three.
... View more
06-13-2017
12:53 PM
1 Kudo
@Kiem Nguyen
On the Consumer_Kafka_0_10 processors, configure them with 2 concurrent tasks, and see if that resolves the issue.
... View more
06-09-2017
12:35 PM
@Kiem Nguyen How many partitions are on the Kafka topic?
... View more
06-05-2017
01:03 PM
2 Kudos
@rian amrodin
If I understand your question, you want to route files larger than 4MB down a different path from the files smaller than 4MB. In the RouteOnAttribute processor, add a property like: Files greater than 4MB will be routed out the gt4mb realtionship and the files that are smaller than 4MB will go out the unmatched relationship.
... View more
05-24-2017
12:01 PM
2 Kudos
@Tinkle Mahendru Have you tried using the MergeContent processor?
... View more
05-22-2017
03:01 PM
@Thierry Vernhet Try putting a larger range between the minimum and maximum group size, like 25 MB and 50 MB. How much memory have you allocated to the NiFi JVM? The default is 512MB, it is set in the bootsrrap.conf file. # JVM memory settings java.arg.2=-Xms512m, change to 2g or 4g if you have the memory available on your system java.arg.3=-Xmx512m, change to 2g or 4g if you have the memory available on your system Since you are dealing with 1.3 GB in the MergeContent processor, make sure to at least allocate double that for the NiFi JVM, because the MergeContent processor uses the JVM memory to build it merged flow files. In addition I would set the number of Concurrent Tasks to 3.
... View more
05-22-2017
11:53 AM
@Thierry Vernhet How are the properties set in the MergeContent processor?
... View more
05-19-2017
06:14 PM
@Prakash Ravi There are only three processors which require a Distributed map Cache server: DetectDuplicate, FetchDistributedMapCache and PutDistributedMapCache. The rest will use zookeeper were applicable. To clear the state of a processor, just do the following steps Right click on a processor, select View state from the menu Then just click Clear state and the files will be listed again.
... View more
05-19-2017
05:56 PM
@Thierry Vernhet So, you are saying it works with Batch Size set, but it does not matter what you set the value to?
... View more