-- step1) run hdfs dfs -ls to determine the location and name for a parquet file
hdfs dfs -ls /yourTableLocationPath
-- step2) parquet-tools really only works locally right now so you will need to copy the file to a local directory
hdfs dfs -get /yourTableLocationPath/yourFileName /yourLocalPath
-- step3) run parquet-tools meta command
parquet-tools meta /yourLocalPath/yourFileName
1条答案
按热度按时间kq0g1dla1#
到目前为止,在impala中还没有命令可以告诉您存储为parquet的表中使用的压缩类型,但是有一个解决方法。您可以查看表中的一个Parquet文件,然后使用parquet tools meta命令查看正在使用的压缩。
parquet tools meta命令的输出将显示行组输出下使用的压缩类型。