ablog

不器用で落着きのない技術者のメモ

parquet tools ビルド時に "thrift failed error: /bin/sh: thrift: command not found" で失敗する

手順

  • parquet tools をビルドする。
$ brew  install maven32
$ git clone https://github.com/Parquet/parquet-mr.git 
$ cd parquet-mr/parquet-tools/ 
$ mvn clean package -Plocal 

エラー内容

Downloaded: https://repo.maven.apache.org/maven2/com/google/collections/google-collections/0.8/google-collections-0.8.jar (473 KB at 307.4 KB/sec)
[ERROR] thrift failed output:
[ERROR] thrift failed error: /bin/sh: thrift: command not found

対応

  • thrift をインストールする
brew install thrift

環境