Member since
08-08-2024
103
Posts
27
Kudos Received
10
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 334 | 04-15-2026 11:56 AM | |
| 784 | 04-07-2026 02:00 PM | |
| 348 | 03-12-2026 09:53 AM | |
| 371 | 03-04-2026 03:07 PM | |
| 516 | 02-10-2026 07:31 PM |
12-10-2025
10:52 AM
Hi again @spartakus, Adding more information, as mentioned, natively, it looks like it's not supported. But here there is a Jira that explains the behavior and some steps they made: https://issues.apache.org/jira/browse/NIFI-6152
... View more
12-08-2025
08:48 AM
Hello @Isuri, Glad to have you on the community and to hear you're pursuing those certifications. Congrats on CAISP completion. That looks like an issue with the platform itself. What I would recommend you is to reach our Certification team via email: certification@cloudera.com They should be able to help you more on that question.
... View more
12-03-2025
04:28 AM
2 Kudos
Thank you @vafs ! Yes, that made the trick. Thanks; -karsten
... View more
12-02-2025
07:27 AM
Hello @zzzz77, Did the answers help you here? If so, please consider marking the comment that help you as the solution.
... View more
12-01-2025
06:23 PM
Hi @yoonli As per my knowledge Cloudera will not support Standalone setup and supported types are YARN and Kubernetes. For your error, you need to check kerberos setup for standalone cluster and try to run simple examples like SparkPi and see whether it is working or not.
... View more
11-28-2025
02:00 AM
@vafsThank you for the detailed information, this fully clarifies the deprecation rationale, possible workarounds, and alternative approaches for gRPC integration in NiFi 2.x!
... View more
11-19-2025
11:28 PM
Generally, I agree with the comments and JOLT is not so flexible for this purpose. In my case I did it with multiple matches for various responses, but still format is needed. I will close the ticket, thank you Andrés @vafs
... View more
11-19-2025
02:59 PM
@Navaneeth 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
11-13-2025
07:25 AM
Hello @Samya, Thanks for joining our community. That issue is happening because JSON_STORE format is VARCHAR(2), not VARIANT as required. Something you can try is to add a ConvertRecord processor before the PutDatabaseRecord. There, you can use a JsonTreeReader → JsonRecordSetWriter to reformat the content. In that way, the JSON_STORE field becomes a proper JSON object. Something like this👆
... View more
11-04-2025
08:29 AM
Hello @enguias, Sometimes this error could be for an old algorithm such as SHA-1. And most possible if using Java 11 that is more strict with the policies. One option is to use connection without TLS, if possible and acceptable in your environment: jdbc:sqlserver://<host>:<port>;databaseName=<DB>;encrypt=disable Or, update the certificate to SHA-256 with TLS 1.2. This is the best option if you prefer to maintain the encryption. Maybe this documentation from SQL can help too: https://learn.microsoft.com/en-us/sql/database-engine/configure-windows/configure-sql-server-encryption?view=sql-server-ver17
... View more