Member since
02-01-2022
274
Posts
97
Kudos Received
60
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
402 | 05-15-2025 05:45 AM | |
3396 | 06-12-2024 06:43 AM | |
5926 | 04-12-2024 06:05 AM | |
4065 | 12-07-2023 04:50 AM | |
2183 | 12-05-2023 06:22 AM |
08-22-2022
06:38 AM
@Omarb Not sure if this is helpful, but sometimes I do something like this: Take the operational test, write the schema, then capture it from one of your tests (check attributes for the schema). Now re-use that schema object for the non-operational test instead of infer-schema. I only like to infer schema to help me write the schema, especially if complicated. Hope this helps, Steven
... View more
08-03-2022
10:32 AM
@ftrg The tar.gz was removed from 1.17.0 You can find 1.16.3 here: https://archive.apache.org/dist/nifi/1.16.3/
... View more
07-27-2022
01:46 PM
1 Kudo
@shashikumar Although I do not recommend this, due to creating confusion, you certainly can symlink the file paths on any linux system. Just be sure the permissions are correct on the final new path, then create the symlink back to the old paths.
... View more
07-22-2022
07:50 AM
In windows are you able to connect to gmail/imap using email client? Assuming nifi is on windows, that may be a test. I still think there are things needing to do on gmail side to allow. The imap port needs to be whatever port gmail provides. I assume it is 993 from above. Another port will not resolve connectivity issue, unless 993 is the wrong port alltogether.
... View more
07-22-2022
07:24 AM
@sayak17 Do you have connectivity to port 993 from nifi host to gmail host? Test this with telnet to ensure network is connecting. If not, check nifi host firewall, etc. After this if still cannot connect, there may be gmail settings you need to enable to allow connectivity.
... View more
07-22-2022
07:19 AM
1 Kudo
Check out this article: https://community.cloudera.com/t5/Community-Articles/NiFi-Sizing-Guide-Deployment-Best-Practices/ta-p/246781
... View more
07-22-2022
06:01 AM
@Nifi_Al Its hard to guess here without seeing your flow, but i think here are a few ideas to resolve: Use GenerateFlowFIle with content of the json you want to send to PutElasticsearchHttp Use AttributesToJson to write attribute to content of flowfile, then send that to PutElasticsearchHttp To test basic connectivity, i would use the first method, then build a working flow from there. I always work in small operational samples when trying to figure out how to configure a certain processor.
... View more
07-20-2022
08:23 AM
I think you will also need to do the transfer/commit in the each list logic
... View more
07-20-2022
08:22 AM
@rangareddyy You will need to add attributes to the flowfile: flowFile = session.putAttribute(flowFile, 'myAttr', 'myValue') Reference: https://community.cloudera.com/t5/Community-Articles/ExecuteScript-Cookbook-part-1/ta-p/248922
... View more
07-20-2022
08:09 AM
This is a groovy error. I would suggest having a working groovy script executeable outside of nifi before trying to modify and execute that code in the context of ExecuteScript.
... View more