Member since
03-11-2022
30
Posts
11
Kudos Received
3
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
833 | 03-26-2024 07:33 AM | |
10770 | 01-22-2024 06:12 AM | |
823 | 01-12-2024 08:59 AM |
08-05-2024
05:31 AM
HI Matt, thanks for your reply and info shared. We did some changes, so now signing then encrypting the files: signing encrypting When our next system tries to decrypt the file we get this error: gpg: encrypted with unknown algorithm 183 gpg: decryption failed: Invalid cipher algorithm Googling on this, encrypted with unknown algorithm 183, doesn't really give anything usefull. So were trying to figure out, if the issues we're facing is nifi related or on the decrypting side. Any idea's would help. Thank you.
... View more
07-01-2024
02:55 PM
1 Kudo
@Dave0x1 Typically MergeContent processor will utilize a lot of heap when the number of FlowFiles being merged in a single execution is very high and/or the size of the FlowFile's attributes are very large. While FlowFiles queued in a connection will have the FlowFile attributes/metadata held in NiFi heap, there is a swap threshold at which time NiFi swaps FlowFile attributes to disk. When it comes to MergeContent, FlowFile are allocated to bins (will still show in inbound connection count). FlowFiles allocated to bin(s) can not be swapped. So if you set min/max num flowfiles or min/max size to a large value, it would result in large amounts of heap usage. Note: FlowFile content is not held in heap by mergeContent. So the way to create very large merged files while keeping heap usage lower is by chaining multiple mergeContent processor together in series. So you merge a batch of FlowFiles in first MergeContent and then merge those into larger merged FlowFile in a second MergeContent. Also be mindful of extracting content to FlowFile attributes or generating FlowFile attributes with large values to help minimize heap usage. Please help our community thrive. If you found any of the suggestions/solutions provided helped you with solving your issue or answering your question, please take a moment to login and click "Accept as Solution" on one or more of them that helped. Thank you, Matt
... View more
03-26-2024
07:33 AM
hi @hegde , thank you for your fast reply. This would have worked indeed. Fortunately, we found the culprit on our matter. Someone made manual changes to the nifi github repo which was used by the nifi-registry. We reverted the changes in github and now the registry seems to work again 🙂
... View more
03-20-2024
08:17 AM
Hi there @mburgess thank you for your reply. Let play around with your solution and see if i can get it working and write the output to a flowfile 🤓
... View more
03-13-2024
05:57 AM
1 Kudo
Hi Diana, good idea. I'll create a new thread. Thank you.
... View more
02-23-2024
06:46 AM
Hi there, Maybe someone can shed a light on a question I have regarding the costs difference between GetSQS and ListS3. Both polls a certain target and from this action costs are made. At least this is the idea i get when looking at the properties (run schedule setting under scheduling tab). Or does the GetSQS works differently? Setup i'm thinking about is: AWS(S3 --> SNS --> SQS) --> Nifi (GetSQS --> FetchS3) insead of AWS (S3) --> Nifi (ListS3 --> FetchS3) I'm leaning towards the eventdriven solution, but think that polling costs would be the same for both. Hope you can share some info on this and clear things up. Thank you in advanced. Greets, Dave
... View more
Labels:
- Labels:
-
Apache NiFi
01-22-2024
08:42 PM
@Dave0x1, I'm happy to see that you resolved your issue. Can you kindly mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future?
... View more
01-17-2024
01:15 AM
Hi Matt, good explanation here. Just a quick follow up, is there a way to force sync between the nodes in the cluster. Let's say from the primary node? Thanks in advanced. Greetz, Dave
... View more
01-12-2024
08:59 AM
Issue is solved: In our Dockerfile we added some jar file which was causing conflicts. After commenting these out. The migration went well 🤓 #ADD https://repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/6.1/logstash-logback-encoder-6.1.jar ${NIFI_HOME}/lib #ADD https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.9/jackson-annotations-2.9.9.jar ${NIFI_HOME}/lib #ADD https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.9/jackson-core-2.9.9.jar ${NIFI_HOME}/lib #ADD https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar ${NIFI_HOME}/lib #ADD https://repo1.maven.org/maven2/net/logstash/logback/logstash-logback-encoder/6.1/logstash-logback-encoder-6.1.jar ${NIFI_HOME}/lib/bootstrap #ADD https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.9/jackson-annotations-2.9.9.jar ${NIFI_HOME}/lib/bootstrap #ADD https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.9/jackson-core-2.9.9.jar ${NIFI_HOME}/lib/bootstrap #ADD https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.9/jackson-databind-2.9.9.jar ${NIFI_HOME}/lib/bootstrap
... View more
05-05-2023
05:30 AM
Hi there, Maybe someone can help out/explain the following. We just moved our NiFi dev clusters from docker image 1.13 to 1.19 and noticed that when setting environment variables in the docker run, variables with a hyphen "-" doesn't get set. After we login on the docker container, we don't see these variables when doing a printenv. Sample below doesn't get set NIFIFLOW_server-1_cluster=http://someurl But this does NIFIFLOW_server_1_cluster=http://someurl Is this due to the eclipse-temurin base image? Any help is much appreciated. Thank you, regards, Dave
... View more
Labels:
- Labels:
-
Apache NiFi