Member since
05-23-2023
6
Posts
2
Kudos Received
0
Solutions
08-28-2024
06:21 PM
1 Kudo
Hi, I'm currently having the exact same issues. Did you already solve this problem? If you did, could you help me and tell me how to resolved it? Cause it's affecting my deployment process in the production environment Regards, Muhammad Dharmawan
... View more
08-05-2024
12:00 AM
Hi, I have a json data as follow. INPUT : { "vlineid" : "9PIA", "type" : "M", "catg" : "C", "nhhigh" : 100.0, "nhigh" : 50.0, "nlow" : null, "nllow" : null, "uom" : "sec", "vsectionid" : "PEPO60", "vparamdesc" : "CYCLE TIME", "vpartid" : "-", "vflgipc" : "IPC02", "vwctid" : "P9PIA0", "vmachineid" : "IMM04", "vparam" : "CYCLE-TIME", "nvalue" : 0.0, "t" : 1722833150160, "vcrea" : "NIFI", "vmodi" : "NIFI", "dmodi" : "2024-08-05 11:49:17", "dcrea" : "2024-08-05 11:49:17", "t_epoch" : 1 } I tried to remove the null field with this JOLT Specification JOLT : [ { "operation": "shift", "spec": { "*": "temp.&" } }, { "operation": "modify-overwrite-beta", "spec": { "*": "=recursivelySquashNulls" } }, { "operation": "shift", "spec": { "temp": "" } }, { "operation": "remove", "spec": { "temp": "" } } ] OUTPUT : { "vlineid" : "9PIA", "type" : "M", "catg" : "C", "nhhigh" : 100.0, "nhigh" : 50.0, "uom" : "sec", "vsectionid" : "PEPO60", "vparamdesc" : "CYCLE TIME", "vpartid" : "-", "vwctid" : "P9PIA0", "vmachineid" : "IMM04", "vparam" : "CYCLE-TIME", "nvalue" : 0.0, "t" : 1722833150160, "vcrea" : "NIFI", "vmodi" : "NIFI", "dmodi" : "2024-08-05 11:49:17", "dcrea" : "2024-08-05 11:49:17", "t_epoch" : 1 } The JOLT did remove the nlow and nllow field, but also removed the vflgipc when the vflgipc value is not null, and sometimes even the nlow or nllow field was not removed, even though it has a null value. I'm new with JOLT and Record Processing, can someone help me? Thank You, Regards, Muhammad Adhitya Dharamawan
... View more
Labels:
- Labels:
-
Apache NiFi
03-31-2024
07:53 PM
1 Kudo
Hello, I have a Controller Service for DistributedMapCacheServer, when i tried to disable it so i can change it's properties, it shows an error of a missing referencing component. Why does my controller service still detects a component that is already deleted and how do i solve this so i can change my controller service properties? Thanks, Regards, Adhitya
... View more
Labels:
- Labels:
-
Apache NiFi
01-15-2024
06:54 PM
Hi, I'm having the same problem for my project. Have you found a solution for this? If you have, could you kindly let me know the solution? It would help me a lot for my project. Thanks in advance!
... View more
05-23-2023
11:51 PM
Thank you for your response cotopaul. In MQTT 5 there is a feature for Request-Response, in that feature there is a field setting to determine the response topic (different from the actual topic). The response topic field represents the topics on which the responses from the receivers of the message are expected. I was wondering if maybe NiFi could get the response topic field value from the MQTT as an attribute
... View more
05-23-2023
09:26 PM
Does Apache NiFi supports MQTT 5? If it does, how do i get the Response Topic?
... View more
Labels:
- Labels:
-
Apache NiFi