Git Product home page Git Product logo

Comments (6)

mjakubowski84 avatar mjakubowski84 commented on May 29, 2024

Hi Alex!

First I would like to thank you for interest in this library and for your wish to contribute!

I think that what you want to add is valuable.
Unfortunately, when designing the writer I didn't think of state. I would even tell I wanted to avoid it. You are right, introducing it would break current API - and we cannot do it just like that, because the library is already in use by many people. I would like to do the release with breaking changes in 1.0.0 version when all features are already there and library ends his child age.

The only idea I have at this moment is just to add a separate trait for a new solution. We can use also Java's Closeable trait, eg.:

object IncrementalParquetWriter {

  def apply[T: ParquetRecordEncoder : ParquetSchemaResolver](path: String, options: ParquetWriter.Options): IncrementalParquetWriter[T] =
    new IncrementalParquetWriter[T] {
      private val writer = internalWriter(new Path(path), ParquetSchemaResolver.resolveSchema[T], options)
      private val valueCodecConfiguration = options.toValueCodecConfiguration

      override def write(data: Iterable[T]): Unit =
        data.foreach { elem =>
          writer.write(ParquetRecordEncoder.encode[T](elem, valueCodecConfiguration))
        }
      override def close(): Unit = writer.close()
    }

}

trait IncrementalParquetWriter[T] extends Closeable {

  def write(data: Iterable[T])

}

I would not modify existing IT tests but add a simple separate one that just checks if new incremental writer works as intended (including edge cases).

from parquet4s.

alexklibisz avatar alexklibisz commented on May 29, 2024

I see. Thanks, I'll take another pass at that here in a minute. What edge cases do you have in mind here?

from parquet4s.

mjakubowski84 avatar mjakubowski84 commented on May 29, 2024

Cool!
Regarding edge cases I mean:

  • Writing with closed reader
  • Closing writer without writing anything with it.
  • Whatever else you come up with :)

from parquet4s.

alexklibisz avatar alexklibisz commented on May 29, 2024

Sounds good. I opened a new PR with this implementation. It's similar to my second PR but doesn't mess with all the type parameters.

from parquet4s.

mjakubowski84 avatar mjakubowski84 commented on May 29, 2024

I am merging your PR but let me do some changes to it before release. I would like to replace isClosed var to something more thread-safe. [EDIT] Just noticed that you used synchronised :)

from parquet4s.

alexklibisz avatar alexklibisz commented on May 29, 2024

Great! Looking forward to the release. Closing this issue. thanks for the quick review and merge.

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.