Hi,
I am developping a Nifi WebService to export dataLake content (stored as .parquet) as .csv.
I managed to do it using HiveQL Processor but I want to do it without Hive.
What I imagined was :
- get the .parquet file with WebHDFS (invokeHTTP call from nifi)
- use a nifi processor to convert the .parquet file to .csv
Is there a nifi Processor doing that? The only option I found for now is to use a spark job, which sounds a bit complicated for this purpose.
Thanks.