As per the link, i'm able to pass parquet file from my local folder and able to convert the data into json format. Below is sample code
MemoryStream jsonMs = new MemoryStream();
using (var r = new ChoParquetReader(FILE_NAME))
{
using (var w = new ChoJSONWriter(jsonMs))
w.Write(r);
}
Could any one help me out on how to pass file path which is present in Azure blob? Thanks in advance.
As
ChoParquetReaderaccepts any memorystream as input, just open Azure blob for read and pass it to reader.for your reference, this sample may helps
PS: code is not tested.