About 50 results
Open links in new tab
  1. How to view Apache Parquet file in Windows? - Stack Overflow

    Jun 19, 2018 · I couldn't find any plain English explanations regarding Apache Parquet files. Such as: What are they? Do I need Hadoop or HDFS to view/create/store them? How can I create parquet …

  2. How to read a Parquet file into Pandas DataFrame?

    193 How to read a modestly sized Parquet data-set into an in-memory Pandas DataFrame without setting up a cluster computing infrastructure such as Hadoop or Spark? This is only a moderate …

  3. python - How to read a list of parquet files from S3 as a pandas ...

    Indeed, when the partitioned parquet files are stored to S3, they are usually first written to "_temporary" directory. If this directory not empty then it is a clear sign, that S3-location contains incomplete …

  4. pandas - Read a parquet bytes object in Python - Stack Overflow

    Sep 23, 2019 · TypeError: not a path-like object Note, the solution to How to read a Parquet file into Pandas DataFrame?. i.e pd.read_parquet(var_1, engine='fastparquet') results in TypeError: a bytes …

  5. Read first 100 rows from Parquet file in C# - Stack Overflow

    Oct 4, 2021 · I have these huge parquet files, stored in a blob, with more than 600k rows and I'd like to retrieve the first 100 so I can send them to my client app. This is the code I use now for this functiona...

  6. Is it possible to read parquet files in chunks? - Stack Overflow

    Nov 29, 2019 · If your parquet file was not created with row groups, the read_row_group method doesn't seem to work (there is only one group!). However if your parquet file is partitioned as a directory of …

  7. file - Python - read parquet data from a variable - Stack Overflow

    Mar 10, 2019 · You can read a file from a variable also using pandas.read_parquet using the following code. I tested this with the pyarrow backend but this should also work for the fastparquet backend.

  8. How to read and write Parquet files efficiently? - Stack Overflow

    Jul 13, 2018 · 3 I am working on a utility which reads multiple parquet files at a time and writing them into one single output file. the implementation is very straightforward. This utility reads parquet files …

  9. Inspect Parquet from command line - Stack Overflow

    How do I inspect the content of a Parquet file from the command line? The only option I see now is $ hadoop fs -get my-path local-file $ parquet-tools head local-file | less I would like to avoid

  10. How do I read a Parquet in R and convert it to an R DataFrame?

    recently I published an R package to read parquet and delta files. it is basically using arrow package in it, however it deals with delta files in local & cloud.