Member since
06-26-2015
515
Posts
140
Kudos Received
114
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2588 | 09-20-2022 03:33 PM | |
| 6999 | 09-19-2022 04:47 PM | |
| 3693 | 09-11-2022 05:01 PM | |
| 4309 | 09-06-2022 02:23 PM | |
| 6825 | 09-06-2022 04:30 AM |
06-10-2022
12:17 AM
2 Kudos
Follow the steps to install, lack _psycopg psycopg2 package. Py files The solution 1:wget https://github.com/psycopg/psycopg2/archive/refs/tags/2_8_5.tar.gz 2:tar -xf 2_8_5.tar.gz 3:python setup.py build python setup.py install 4:cp psycopg2-2.8.5-py3.7-linux-x86_64.egg/psycopg2 /usr/share/python3
... View more
05-23-2022
09:03 AM
@VinayKumar Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks!
... View more
05-19-2022
07:19 PM
1 Kudo
Okay, only Oozie also needed the change but now everything is working! Will have to figure out longer term plan, but first things first.
... View more
05-18-2022
08:59 PM
@rafy , This is tricky and whatever solution we come up with here cannot be guaranteed to always work. It will always depend on the content that comes in the responseMessage field. For the particular example that you shared above, this works: The settings are: Search Value: (?s)(.*\"responseMessage\"\s*:\s*\"[^\"]*|\G[^\"]*)\"(?!,)
Replacement Value: $1\\"
Evaluation Mode: Entire text You can check it out here: https://regex101.com/r/paPPhK/1 Cheers, André
... View more
05-17-2022
11:50 PM
1 Kudo
@kotopes Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future.
... View more
05-17-2022
05:36 PM
1 Kudo
@Threepwood , What you're proposing here is something called Stateless NiFi execution. In a normal NiFi flow data is always shared in the form of flowfiles and there's no way to work around that. I/O is a tax that NiFi pays to make it more flexible. It's know to be I/O heavy but it still performs very well and can handle huge volumes of data if you follow the best practices when building your flows. Stateless NiFi execution can be used for a subset of NiFi flows that don't need to store state. In a NiFi Stateless execution, nothing is written to disk. Data is sent from one processor to another through function calls. It can achieve much faster performance this way, but it's limited to stateless flows. Mark Payne has another video where he talks about this and how to use it to achieve Exactly-Once delivery from Kafka to Kafka: https://www.youtube.com/watch?v=VyzoD8eh-t0 Cheers, André
... View more
05-16-2022
03:47 PM
@TrinoHelp , Double-quotes in SQL are used to specify column names. Try using single-quotes instead. Cheers, André
... View more
04-25-2022
07:59 AM
@roshanbi Have you tried specifying the krav path as shown below instead? keyTab="D:/services.kerberos.keytab" Please use a forward slash instead of a backslash. Cheers Andre
... View more
04-25-2022
05:39 AM
Appreciate the help and confirmation, I came to the same conclusion separately as well.
... View more