Member since
01-26-2022
82
Posts
2
Kudos Received
5
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
703 | 09-08-2022 04:02 AM | |
1665 | 07-27-2022 03:29 AM | |
1228 | 06-28-2022 09:43 PM | |
1230 | 06-27-2022 08:42 AM | |
12751 | 06-16-2022 10:29 PM |
07-12-2022
05:41 PM
I am an absolute newbie and was following other tutorials. 😂 I thought it was necessary to convert it to JSON to store the data into Postgresql. Thanks a lot for the help !
... View more
07-12-2022
10:03 AM
Thanks Mr @MattWho . In addition to your solution, i looked into Network Attached Storage & NFS. So i configured nfs server on the source, then configured nfs client on the destination. And lastly mount the source folder to the destination folder on restart. Thank you all.
... View more
06-29-2022
01:22 PM
Thank you Sir for the reply. Yes i have looked into them. The issue i have is that my query statement has multiple join conditions. And also the table is incremental. So, someone proposed i should convert the query to a database table view, then i can now supply the view name to any of the processors you mentioned above. Please, do you have a better approach. Thank you sir.
... View more
06-29-2022
11:28 AM
Thank you so much Mr @MattWho for comprehensive explanation on what Mr @SAMSAL earlier proposed. I really learn alot & appreciate.
... View more
06-29-2022
04:58 AM
Congratulations on resolving your issue and thank you for sharing so it may be of assistance to others.
... View more
06-28-2022
06:47 AM
Thanks. I think your approach is better to push all overheads to the Oracle Db rather than NIFI. 👍
... View more
06-27-2022
08:42 AM
Thanks to everyone for your kind help. Eventually, i got to know that the problem is with the access policy. I got the clue from here: https://bryanbende.com/development/2016/08/30/apache-nifi-1.0.0-secure-site-to-site Thank you all.
... View more
06-16-2022
10:29 PM
Thanks to everyone especially @SAMSAL. I got to know it is the firewall that was blocking the communications among the ports. I tried to add those ports to firewall but no much success. When i tried to reach NIFI GUI, i ran into this error: java.net.NoRouteToHostException: No route to host (Host unreachable). So i disable the firewall & everything worked perfectly. FIRST METHOD: NO SUCCESS firewall-cmd --zone=public --permanent --add-port 9991/tcp firewall-cmd --zone=public --permanent --add-port 2888/tcp firewall-cmd --zone=public --permanent --add-port 3888/tcp firewall-cmd --zone=public --permanent --add-port 2181/tcp firewall-cmd --reload SECOND METHOD: SUCCESS systemctl stop firewalld
... View more