Member since
03-10-2017
155
Posts
79
Kudos Received
32
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
283 | 08-12-2024 08:42 AM | |
742 | 05-30-2024 04:11 AM | |
1227 | 05-29-2024 06:58 AM | |
720 | 05-16-2024 05:05 AM | |
587 | 04-23-2024 01:46 AM |
07-26-2022
05:44 AM
This is related to Jira https://issues.apache.org/jira/browse/NIFI-9993 , fixed in the latest release 1.16.3 If you found this response assisted with your issue, please take a moment to login and click on "Accept as Solution" below this post. Thank you, Chandan
... View more
07-25-2022
05:49 AM
I mean you can have as many CaptureChangeMySQL for a number of different MySQL DB's , Yes your design is alinged with what I have updated before. If you found this response assisted with your issue, please take a moment and click on "Accept as Solution" below this post. Thank you
... View more
07-25-2022
03:45 AM
Answer to your queries : 1. You have to use the two CaptureChangeMySQL Processors if you wish to connect two different MySQL database services. 2. Since you can get the change records from two CaptureChangeMySQL processors for two different source MySQL DB's then you can insert those records into another MySQL DB using PutSQL processor. Thank you
... View more
07-25-2022
03:22 AM
2 Kudos
In nifi there is no provision to restrict resources based upon process groups or processors, so the same goes for threads. but what you can do with your current request on limiting threads, you can run the processors which are part of one process group with default concurrent task 1 settings if not already done. Thank You.
... View more
07-14-2022
05:09 AM
1 Kudo
ExtractText processor can help you grab needed information from json content and store in the flow file attribute for reuse after InvokeHTTP. Thank You
... View more
06-21-2022
08:22 AM
There is no inbuilt one but you can please refer suggestion posted by one of NiFi Engineers about running Stored procedure at https://stackoverflow.com/questions/36306764/how-to-use-procedure-call-in-apache-nifi-executesql-processor-with-both-in-and If you found this response assisted with your issue, please take a moment to login and click on "Accept as Solution" below this post. Thank you, Chandan
... View more
06-21-2022
08:01 AM
1 Kudo
DBCPConnectionPool provides Database Connection Pooling Service. Connections can be asked from pool and returned after usage by SQL processor which are responsible to run the SQL queries . You can useListDatabaseTables processor along withDBCPConnectionPool controller to get the table metadata If you found this response assisted with your issue, please take a moment to login and click on "Accept as Solution" below this post. Thank you, Chandan
... View more
06-21-2022
07:51 AM
I would check Hive metastore logs to get more details on aborted transactions with respect to transaction ids since transactions are aborted at the Hive end and not the NiFi end.
... View more
06-16-2022
06:51 AM
I suggest you have a technical support case opened with the Cloudera Technical Support team so we can dive further. Thank You.
... View more
06-14-2022
05:21 AM
So java.net.BindException: Cannot assign requested address is an error occurred while attempting to bind a socket to provided hostname and port. Typically, the port is in use, or the requested hostname could not be assigned, Are you sure port is free and no issues with the hostname you are using ?
... View more