有没有办法在 NIFI 中将 JSON 转换为 Protobuf?
Is there a way to convert JSON to Protobuf in NIFI?
我正在尝试实施 MQTT 数据流,该数据流需要使用 sparkplug 规范发送最终交付。
但是,我找不到将流文件的内容转换为 protobuf 格式的方法
有没有办法进行这种转换?
您有两个选择:
使用 ExecuteScript processor (using your preferred language groovy for e.g) and implementing something equivalent to that
的“肮脏方式”
最干净的方法是实现您自己的自定义处理器,您可以先使用这个 https://github.com/whiver/nifi-protobuf-processor 看看它是否符合您的需要。
我正在尝试实施 MQTT 数据流,该数据流需要使用 sparkplug 规范发送最终交付。
但是,我找不到将流文件的内容转换为 protobuf 格式的方法
有没有办法进行这种转换?
您有两个选择:
使用 ExecuteScript processor (using your preferred language groovy for e.g) and implementing something equivalent to that
的“肮脏方式”最干净的方法是实现您自己的自定义处理器,您可以先使用这个 https://github.com/whiver/nifi-protobuf-processor 看看它是否符合您的需要。