Member since
06-26-2015
515
Posts
140
Kudos Received
114
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2586 | 09-20-2022 03:33 PM | |
| 6988 | 09-19-2022 04:47 PM | |
| 3691 | 09-11-2022 05:01 PM | |
| 4304 | 09-06-2022 02:23 PM | |
| 6817 | 09-06-2022 04:30 AM |
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-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
04-21-2022
02:04 AM
You can copy and paste the content into a Word file (.docx) and attach it to the post.
... View more
04-21-2022
01:26 AM
@J0sh , Can you provide me with the entire contents of your flow file? Cheers, André
... View more
04-21-2022
12:44 AM
@ken_zz , Please run the following command to list the principals contained in your keytab: klist -kt <keytab_file> The full principal name is the long form: either username@REALM or username/fqdn@REALM. Try specifying the full principal name when starting impala-shell. Cheers, André
... View more
04-21-2022
12:41 AM
@sahil0915 , Please try the JoltTransformJSON processor with the following Chain specification: [
{
"operation": "default",
"spec": {
"json_data": {
"items[]": {
"*": {
"quality": "good"
}
}
}
}
}
] Cheers, André
... View more
04-21-2022
12:20 AM
1 Kudo
@r_rachuri , Your expression works for me on NiFi 1.15.2. It's too complicated, though, and it still leaves a pair of curly brackets behind. Try using this one instead: \{[ \n]*\}[ \n]*,?[ \n]* Cheers, André
... View more
04-20-2022
11:56 PM
@J0sh You can use a ReplaceText processor with the following properties: Search Value: (?s)^.*?(\{".*\}).*$
Replacement Value: $1 Cheers, André
... View more