Amazon Athenaにおいて表題の件をメモ。
■ 環境
- Amazon Athena
■ partition
パーティションの一覧の取得は下記の通り。
show partitions testtable1;
自身が使用しているAthenaのテーブルでは下記のような結果を得られた。”year“と”month“でパーティションを切っている。
year=2017/month=4
year=2017/month=8
year=2016/month=12
:
このパーティションの中で不要なものが存在したので削除を行いたい。下記のようにパーティションを削除することができる。
alter table testtable1 drop partition (year=2016, month=12)
以上。