Member since
11-17-2021
1149
Posts
258
Kudos Received
30
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 182 | 04-23-2026 02:02 PM | |
| 564 | 03-17-2026 05:26 PM | |
| 5243 | 11-05-2025 10:13 AM | |
| 877 | 10-16-2025 02:45 PM | |
| 1462 | 10-06-2025 01:01 PM |
04-01-2025
07:11 AM
Hello @Craig-C Greetings from Cloudera Community. Based on the Post, Spark UI is available for Running Jobs yet the Spark UI isn't available for Completed Jobs. Note that Spark UI for Running Jobs is Serviced via Driver yet the Spark UI for Completed Jobs is Serviced via Spark-History-Server. We have observed few Scenarios wherein Spark UI isn't available for Completed Jobs during High-Concurrency & have a Solution until a Long-Term Fix at CDE. The Solution is a bit Verbose & as such, We shall recommend your Team to file a Support Case with Cloudera Support & We shall help your Team confirming the Issue reported above while applying the Mitigation Solution until a Long-Term Fix. Regards, Smarak
... View more
03-31-2025
05:01 PM
@sathishkr @willx Hi! Do you have some insights here? Thanks!
... View more
03-26-2025
04:18 PM
@anya_sh Welcome to the Cloudera Community! To help you get the best possible solution, I have tagged our experts @Atahar @Scharan who may be able to assist you further. Please keep us updated on your post, and we hope you find a satisfactory solution to your query.
... View more
03-24-2025
09:53 PM
Thank you, @MattWho , for the additional information. I really appreciate you providing timely and clear solutions. You’re awesome!
... View more
03-19-2025
10:08 AM
@meliod Welcome to the Cloudera Community! To help you get the best possible solution, I have tagged our NiFi experts @MattWho @SAMSAL who may be able to assist you further. Please keep us updated on your post, and we hope you find a satisfactory solution to your query.
... View more
03-17-2025
11:47 AM
@Rafiy 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
03-17-2025
11:45 AM
@NaveenSagar 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
03-17-2025
06:24 AM
@BuffaloDaddy What method of user authentication is configured in your NiFi? Single-user ldap-provider Kerberos-provider etc? Thank you, Matt
... View more
03-12-2025
09:12 AM
@rosejo 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
03-11-2025
07:59 AM
Hi, I have a similar issue. When I use "Advanced" to check what output nifi would provide, I get the output there, but when I check the queue after the JoltTransformJSON has processed the output, it says null. I changed "Jolt Transform DSL" from "chain" to "default", as it eliminated the space that was there between the square brackets and the array elements in an array. This is my Jolt specification - [ { "operation": "shift", "spec": { "uid": "uid", "location_name": "name", "location_city": "city", "age_min": "age_min", "age_max": "age_max", "firstdate_begin": "begin", "lastdate_end": "end", "location_coordinates": { "lon": "location[0]", "lat": "location[1]" } } } ] and this is the expected output - { "uid": "54570223", "name": "Théâtre Plaza", "city": "Montréal", "age_min": null, "age_max": null, "begin": "2024-03-23T23:30:00+00:00", "end": "2024-03-24T01:00:00+00:00", "location": [ -73.603196, 45.536315 ] } EDIT - I edited my jolt specification, and it looks like this now- [ { "operation": "shift", "spec": { "*": { "uid": "uid", "location_name": "location_name", "location_city": "location_city", "age_min": "age_min", "age_max": "age_max", "firstdate_begin": "firstdate_begin", "lastdate_end": "lastdate_end", "location_coordinates": { "lon": "location[0]", "lat": "location[1]" } } } } ] I am getting the desired output - { "uid": "70029814", "location_name": "Sanctuaire du Saint-Sacrement", "location_city": "Montreal", "age_min": null, "age_max": null, "firstdate_begin": "2019-04-13T18:00:00+00:00", "lastdate_end": "2019-04-14T10:00:00+00:00", "location": [-73.581721, 45.525243] } But the issue now is that after processing, the output looks something like this - { "uid" : [ "54570223" ], "location_name" : [ "Théâtre Plaza" ], "location_city" : [ "Montréal" ], "age_min" : [ 16 ], "age_max" : [ 99 ], "firstdate_begin" : [ "2024-03-23T23:30:00+00:00" ], "lastdate_end" : [ "2024-03-24T01:00:00+00:00" ], "location" : [ [ -73.603196 ], [ 45.536315 ] ] } Working on keeping only the location as arrays. 😅😅😅
... View more