AWS Glue Partition Indexes https://awscli.amazonaws.com/v2/documentation/api/latest/reference/glue/create-table.html l AWS Glue Data Catalog に実装された新しい機能 l Partition Indexes を使⽤すると、パーティション情報が⾼速で検索可能となり、 不要なデータ転送・処理が減ることで、クエリ処理時間を短縮できる l インデックスに指定可能なパーティションキーの型は⽂字列、もしくは、数値 (int, bigint, long, tinyint, and smallint) l テーブル作成時に指定する create-table [--catalog-id <value>] --database-name <value> --table-input <value> [--partition-indexes <value>] [--cli-input-json | --cli-input-yaml] [--generate-cli-skeleton <value>] ※ パーティションキーを (year, month, dayofmonth) と想定 [ { "Keys": ["year","month","dayofmonth"], "IndexName": "idx01" }, { "Keys": ["year","month"], "IndexName": "idx02" }, { "Keys": ["year"], "IndexName": "idx03" } ] New 最⼤3パターン