alentred 9 hours ago

Very nice that it can show the metadata. If you rather focus on the data itself, a Swiss army knife in the terminal is VisiData [1] . It works with many formats from CSV to Parquet. You'd need to install Pyarrow I think to read Parquet files. VisiData is great to not only peek into the file but filter it, sort, compute simple metrics and even can plot a histogram or scatterplot for ex. I avoided a lot of Jupyter notebooks by using VisiData :)

[1] https://www.visidata.org/

bigshik 12 hours ago

Nice work—this hits a real pain point with Parquet. My main use case is debugging partitioned datasets on S3 with schema drift and skew, where I care about: which files/partitions have schema mismatches, weird row-group stats (all-null, out-of-range, huge skew), and doing that via metadata only.

Right now parqeye looks mainly single-file focused. Do you have plans for a “dataset mode” that takes a dir/S3 prefix and surfaces per-file/row-group summaries (row counts, min/max, null %, schema diffs vs a reference file) using just Parquet stats so it scales to tens of GB? Or do you see parqeye intentionally staying a single-file inspector?

jasonjmcghee 11 hours ago

Yours looks much better for your use case, but fwiw you can do it in a single command with duckdb too (but not interactive etc.):

    duckdb -c "from 'foo.parquet'"

but maybe still useful for other formats or multi-file or remote situations
MayeulC 6 hours ago

This looks very handy, thank you for working on this and making it open source.

I did submit a feature request for vi keybindings; though I could look into contributing this myself if I find a bit of spare time.

The other thing that surprised me was the size of the binaries: 90MB for a TUI tool (x64 Linux)? I wonder what the bulk of that is? Is there an issue with LTO? An other commenter noticed as well.

It also looks like you are building against a relatively recent glibc (2.34), which limits compatibility with older systems. Building against an older glibc can be hard to do, so I am not faulting you here, and you do provide a musl fallback, which is appreciated (mandatory notice that the musl allocator can dramatically degrade the performance of rust programs, just in case you were not aware of this).

A few more ideas for improvements (you probably already have your own laundry list):

- Mouse support?

- Seeing that you do have graphs, it would be fun to see a scatter plot as well as a distribution plot under statistics in the "Row Groups" tab (though you probably pull these from the metadata, so that would require further processing, which may be out of scope).

amelius 2 hours ago

Isn't this what we have spreadsheets for?

Also allows you to do computations on the data in place.

hilti 8 hours ago

Similar tool for JSONL files: I built JSONL Viewer Pro after repeatedly crashing VS Code trying to inspect multi-GB training datasets and IoT device logs with nested objects.

Native Mac/Windows app with multi-threaded parsing (simdjson), automatic nested object flattening, and handles 10M+ rows instantly.

For HN: Use code HN100 for free access

https://iotdatasystems.gumroad.com/

Built with C++ for native performance (~6MB app, not Electron).

Would love feedback from folks working with large JSONL files.

  • tomtom1337 6 hours ago

    Super quick feedback - opening that link on my phone shows me two options next to each other, seemingly with the same name / description (followed by …) and same pricetag. I had to turn my phone sideways to see that there is a windows and a Mac version.

    I think you can afford the extra characters to show the whole page in portrait mode. (iPhone 16 pro Safari)

    https://imgur.com/a/aTxO3sp

    • hilti 5 hours ago

      I will change the description. Thank you!

  • hilti 5 hours ago

    Quick update: Mac ZIP had a corruption issue that's now fixed. Anyone who downloaded in the last few hours - please re-download!

    Also just added a Data Plot feature for visualizing numeric columns.

    Thanks to everyone who reported the issue!

el_oni 8 hours ago

Beautiful, I'm currently deep into getting our data into iceberg from firehose and I'm really curious what metadata is written, are bloomfilters being written for the columns i want? Has my compaction and sort jobs helped min-max statistics on those columns?

Will take a look when i get to my laptop!

pratio 4 hours ago

This looks beautiful but we're heavily invested in s3 so I'll wait for remote support

papers1010 15 hours ago

It’s crazy how long we’ve gone without a tool like this. This is huge. Thank you for finally building this!

  • 0cf8612b2e1e 13 hours ago

    It is really incredible how poor the parquet tooling has been for years. The cornerstone of data engineering, yet just inspecting a file is needlessly clunky.

lolive 14 hours ago

Can DuckDB be included in the tool, so you can run queries directly from the UI? [that would avoid opening DBeaver whenever you need that kind of feature]

joelthelion 9 hours ago

What is really missing for parquet's wide adoption is support in Excel.

mgaunard 5 hours ago

what was wrong with using a python repl with pyarrow/polars/duckdb for this?

banga 14 hours ago

Looks like a nice tool, but failed for me when reading a geoparquet file created using duckdb.

lolive 14 hours ago

Apart from some visual glitches, this is an INSTANT BUY !

Note: must the Windows binary really be 78MB ?

  • ch2026 13 hours ago

    CLIs are bulky

WorldPeas 16 hours ago

thank you so much! this was an annoyance of mine for so long. edit: any chance you make a brew package? if you'd like I'd be happy to PR it in.

  • kaushiksrini 16 hours ago

    yep! it’s available as a homebrew tap — you can install it with: `brew install kaushiksrini/parqeye/parqeye`

    • dacox 11 hours ago

      awesome! i was just looking at a bucket full of parquet files from last year trying to recall some things about them.

      i tried to install with brew, but it told me my cli tools were "too out of date". Never seen that before! and also just upgraded.

      Will try again tomorrow

jspanos2 12 hours ago

This is very impressive. Look forward to using this

swety101 11 hours ago

Such a cool idea!! So helpful

dionian 11 hours ago

tried it out. love it.