What’s your take on parquet?

I’m still reading into it. Why is it closely related to apache? Does inly apache push it? Meaning, if apache drops it, there’d be no interest from others to push it further?

It’s published under apache hadoop license. It is a permissive license. Is there a drawback to the license?

Do you use it? When?

I assume for sharing small data, csv is sufficient. Also, I assume csv is more accessible than parquet.

  • kSPvhmTOlwvMd7Y7E@programming.dev
    link
    fedilink
    arrow-up
    23
    arrow-down
    1
    ·
    12 days ago

    I would not recommend using parquet instead of csv. Indeed, parquet is a type of wooden flooring, while csv is a human readable file format. As you can see, it is not wise to replace one with the other. Don’t hesitate about asking more questions regarding your home design!

  • Eager Eagle@lemmy.world
    link
    fedilink
    English
    arrow-up
    14
    ·
    13 days ago

    It’s pretty much an industry standard at this point, I wouldn’t be worried about its future. I’ve used it and still do once in a while.

    • Hawk@lemmynsfw.com
      link
      fedilink
      arrow-up
      4
      ·
      13 days ago

      Couldn’t agree more.

      Important benefits include:

      • types (eg dates)
      • easy import into duckdb

      Can be viewed with visidata

  • Jim@programming.dev
    link
    fedilink
    English
    arrow-up
    11
    ·
    13 days ago

    Do you use it? When?

    Parquet is really used for big data batch data processing. It’s columnar-based file format and is optimized for large, aggregation queries. It’s non-human readable so you need a library like apache arrow to read/write to it.

    I would use parquet in the following circumstances (or combination of circumstances):

    • The data is very large
    • I’m integrating this into an analytical query engine (Presto, etc.)
    • I’m transporting data that needs to land in an analytical data warehouse (Snowflake, BigQuery, etc.)
    • Consumed by data scientists, machine learning engineers, or other data engineers

    Since the data is columnar-based, doing queries like select sum(sales) from revenue is much cheaper and faster if the underlying data is in parquet than csv.

    The big advantage of csv is that it’s more portable. csv as a data file format has been around forever, so it is used in a lot of places where parquet can’t be used.

  • Dunstabzugshaubitze@feddit.org
    link
    fedilink
    arrow-up
    11
    ·
    13 days ago

    parquet is cloesely tied to the apache foundation, because it was designed as a storage format for hadoop.

    But many data processing libraries offer interfaces to handle parquet files so you can use it outside of the hadoop eco system.

    It’s really good for archiving data, because the format can store a lot of data with relatively low disk space, while still providing ok read performance because often times you won’t need to read the whole file due to how they are structured, where csv files would be a lot of plaintext taking up more diskspace.

  • FizzyOrange@programming.dev
    link
    fedilink
    arrow-up
    8
    ·
    12 days ago

    Yeah depends on what you’re using it for. CSV is terrible in many many ways but it is widely supported and much less complex.

    I would guess if you’re considering Parquet then your use case is probably one where you should use it.

    JSON is another option, but I would only use it if you can guarantee that you’ll never have more than like 100MB of data. Large JSON files are extremely painful.

  • The Hobbyist@lemmy.zip
    link
    fedilink
    arrow-up
    5
    ·
    13 days ago

    In the deep learning community, I know of someone using parquet for the dataset and annotations. It allows you to select which data you want to retrieve from the dataset and stream only those, and nothing else. It is a rather effective method for that if you have many different annotations for different use cases and want to be able to select only the ones you need for your application.

      • ma343@beehaw.org
        link
        fedilink
        arrow-up
        5
        ·
        12 days ago

        Graphql is a protocol for interacting with a remote system, parquet is about having a local file that you can index and retrieve data from in a more efficient way. It’s especially useful when the data has a fairly well defined structure but may be large enough that you can’t or don’t want to bring it all into memory. They’re similar concepts, but different applications

  • tiredofsametab@fedia.io
    link
    fedilink
    arrow-up
    4
    ·
    12 days ago

    I can’t address the first part, but for your last paragraph, if you’re sharing with humans, csv is fine. If you’re sharing with humans and machines, JSON or yaml or something similar is probably fine. If you’re only moving things around to give to machines, what to use depends on constraints you might have and use cases

  • houseofleft@slrpnk.net
    link
    fedilink
    English
    arrow-up
    3
    ·
    12 days ago

    I’m a data engineer, use parquet all the time and absolutely love love love it as a format!

    arrow (a data format) + parquet, is particularly powerful, and lets you:

    • Only read the columns you need (with a csv your computer has to parse all the data even if afterwards you discard all but one column)

    • Use metadata to only read relevant files. This is particularly cool abd probably needs some unpacking. Say you’re reading 10 files, but only want data where “column-a” is greater than 5. Parquet can look at file headers at run time, and figure out if a file doesn’t have any column-a values over five. And therefore, never have to read it!.

    • Have data in an unambigious format that can be read by multiple programming languages. Since CSV is text, anything reading it will look at a value like “2022-04-05” and say “oh, this text looks like dates, let’s see what happens if I read it as dates”. Parquet contains actual data type information, so it will always be read consistently.

    If you’re handling a lot of data, this kind of stuff can wind up making a huge difference.

  • mvirts@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    12 days ago

    Parquet 4 eva

    Csv is for arcane software or if you don’t know where it’s going.

    Hdf5 is for Matlab interoperability

    Otherwise I use parquet (orc could also work, but I never actually use it). Sometimes parquet has problems with Pandas or polars but I’ve always been able to fix it by using pyarrow

  • Olap@lemmy.world
    link
    fedilink
    arrow-up
    2
    arrow-down
    1
    ·
    13 days ago

    Friends don’t let friends use csv in 2024. Excel needs a good parquet importer and exporter today. Ya hearing Microsoft? Quit pissing around with recall and build something useful!

      • Olap@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        12 days ago

        Excel mostly, csv wasn’t much of a standard and thus it’s horrible to work with. We can fix that with a parquet importer and exporter!