Inspect Parquet from command line

前端 未结 9 1454
再見小時候
再見小時候 2020-12-07 20:26

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-tool         


        
9条回答
  •  醉梦人生
    2020-12-07 20:42

    On Windows 10 x64, try Parq:

    choco install parq
    

    This installs everything into the current directory. You will have to add this directory manually to the path, or run parq.exe from within this directory.

    My other answer builds parquet-reader from source. This utility looks like it does much the same job.

提交回复
热议问题