Code Monkey home page Code Monkey logo

Comments (4)

gaohongkui avatar gaohongkui commented on June 16, 2024

same problem

from parquet4s.

conderls avatar conderls commented on June 16, 2024

I found out the issue is caused by ParquetIterable[T].toSeq not triggering loading full data and I close the data stream.

using ParquetIterable[T].toArray solving this issue.

from parquet4s.

mjakubowski84 avatar mjakubowski84 commented on June 16, 2024

Oh! That is something interesting. I wonder why Scala's toSeq doesn't iterate over the whole iterable, but toArray does it...

from parquet4s.

conderls avatar conderls commented on June 16, 2024

Oh! That is something interesting. I wonder why Scala's toSeq doesn't iterate over the whole iterable, but toArray does it...

The code snippet I used is

val data = ParquetReader.as[T].read(Path(_path))
try {
  //  `.toSeq`:
  //       failed if there are multi row-groups in the parquet file.
  //       java.io.IOException: Stream is closed!
  data.toArray
} finally {
  data.close()
}

we can create multi row-groups parquet file with pandas

In [1]: df = pd.DataFrame([[1,"a"], [2, "b"]], columns=["foo", "bar"])
   ...: df.to_parquet("test.parquet", row_group_size=1)

In [2]: import pyarrow as pa

In [3]: pa.parquet.read_metadata("test.parquet")
Out[3]:
<pyarrow._parquet.FileMetaData object at 0x7fc8c43bf040>
  created_by: parquet-cpp-arrow version 13.0.0
  num_columns: 2
  num_rows: 2
  num_row_groups: 2  # <<<<<<<<<< 2 row groups
  format_version: 2.6
  serialized_size: 2007

The main reason for .toSeq failed here is because the lazy implementation under the hood

As with toIterable, it's lazy in this default implementation, as this TraversableOnce may be lazy and unevaluated.

from parquet4s.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.