Created 12-13-2017 02:55 PM
Created 12-13-2017 03:05 PM
As of NiFi 1.2.0 (via NIFI-3658), you can use ConvertRecord to achieve this. You would configure a CSVReader to match your CSV format (comma-delimited, possibly other config options around header line, quotes, etc.) and a JSONRecordSetWriter to output JSON.
Prior to NiFi 1.2.0, you could use ConvertCSVToAvro -> ConvertAvroToJSON.
Created 12-13-2017 03:05 PM
As of NiFi 1.2.0 (via NIFI-3658), you can use ConvertRecord to achieve this. You would configure a CSVReader to match your CSV format (comma-delimited, possibly other config options around header line, quotes, etc.) and a JSONRecordSetWriter to output JSON.
Prior to NiFi 1.2.0, you could use ConvertCSVToAvro -> ConvertAvroToJSON.
Created 12-14-2017 04:41 PM
Thanks @Matt Burgess