Does anyone know how row based read access to a parquet file using ParquetSharp
is performed? This is where I have got to but the inputStream
throws an cannot convert to string error.
using (var buffer = new ResizableBuffer())
{
using (var reader = new ParquetFileReader(@"C:\Users\X\Documents\X.parquet"))
{
using (var inputStream = new BufferReader(buffer))
{
using (var readerRow = ParquetFile.CreateRowReader<Tuple>(inputStream))
{
}
}
}
}
Also ParquetSharp
uses TTuple
but I cannot find any definition for it anywhere.
I know parquet is column based so this is not the most efficient method to read but it is convenient for my work.
Regards