You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 23, 2023. It is now read-only.
I am trying to read a parquet file buffer from a React application, using this code:
constfileDataBuffer=Buffer.from(fileData);letreader=awaitParquetReader.openBuffer(fileDataBuffer);// create a new cursorletcursor=reader.getCursor();// read all records from the file and print themletrecord=null;while(record=awaitcursor.next()){console.log(record);}
However, when the code is executing this: record = await cursor.next(), I am getting the following error:
I am trying to read a parquet file buffer from a React application, using this code:
However, when the code is executing this:
record = await cursor.next(), I am getting the following error:Could someone help me understand the issue here and how can I fix it? Appreciate it.