Member since
06-26-2015
515
Posts
138
Kudos Received
114
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2271 | 09-20-2022 03:33 PM | |
| 6048 | 09-19-2022 04:47 PM | |
| 3259 | 09-11-2022 05:01 PM | |
| 3734 | 09-06-2022 02:23 PM | |
| 5820 | 09-06-2022 04:30 AM |
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
05-16-2022
03:39 PM
@robnew , It would be easier if you could provide an example of what you're trying to explain. 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-22-2022
03:52 AM
I got that. What I want to know is what you expect to have in the incoming flowfile and how the processor will use this value.
... View more
04-22-2022
01:33 AM
@Chhavi , Could you explain what you want to achieve? Cheers, André
... View more
04-21-2022
09:20 PM
@J0sh , You can add a ReplaceText doing a literal translation of 0000-00-00 00:00:00 with a valid date/time (e.g. 1970-01-01 00:00:00) Cheers, André
... View more
04-21-2022
02:51 PM
@Tra , This is a problem with your version of Java, which is very old. You must either upgrade Java to the Java 11 (or at least to the latest Java 😎 or install the JCE extension for your current JDK. Please see details in here: https://community.cloudera.com/t5/Support-Questions/Nifi-starts-without-error-but-cannot-connect/m-p/338254/highlight/true#M232781 Cheers, André
... View more
04-21-2022
02:46 PM
1 Kudo
@J0sh , If you use a ReplaceText with the following settings it will clean up the garbage in your flowfiles: Search Value: (?s)(^|(\})<br>).*?(\n).*?(<br>(\{)|$)
Replacement Value: $2$3$5 This file, though, has not 1 JSON, but 8 different JSON fragments. So the resulting flowfile will still have 8 lines, each with a valid JSON. You must use a SplitText process to separate those into 8 different flowfiles before applying the EvaluateJSONPath. Cheers, André
... View more