SYS_AUTO_TABLE_OPTIMIZATION
自動最適化用に定義されたテーブルに Amazon Redshift によって実行された自動アクションを記録します。
SYS_AUTO_TABLE_OPTIMIZATION は、スーパーユーザーにのみ表示されます。詳細については、「システムテーブルとビューのデータの可視性」を参照してください。
テーブルの列
列名 | データ型 | 説明 |
---|---|---|
transaction_id | long | トランザクション識別子。 |
session_id | int | alter コマンドを実行したプロセスのセッション識別子。 |
table_id | int | テーブル識別子。 |
alter_table_type | character(32) | レコメンデーションのタイプ。指定できる値は distkey 、sortkey 、および encode です。 |
ステータス | character(128) | レコメンデーションの完了ステータス。使用できる値は、Start 、Complete 、Skipped 、Abort 、Checkpoint 、および Failed です。 |
event_time | timestamp | ステータス列のタイムスタンプ。 |
alter_from | character(200) | レコメンデーションを適用する前に、テーブルの以前のディストリビューションスタイルとソートキー。この値は 200 文字刻みの増分に切り捨てられます。 |
サンプルクエリ
次の例では、結果の行に Amazon Redshift が実行したアクションが表示されます。
SELECT table_id, alter_table_type, status, event_time, alter_from FROM SYS_AUTO_TABLE_OPTIMIZATION;
table_id | alter_table_type | status | event_time | alter_from ----------+---------------------+------------------------------------------------------+-----------------------------+----------------- 118082 | sortkey | Start | 2020-08-22 19:42:20.727049 | 118078 | sortkey | Start | 2020-08-22 19:43:54.728819 | 118082 | sortkey | Start | 2020-08-22 19:42:52.690264 | 118072 | sortkey | Start | 2020-08-22 19:44:14.793572 | 118082 | sortkey | Failed | 2020-08-22 19:42:20.728917 | 118078 | sortkey | Complete | 2020-08-22 19:43:54.792705 | SORTKEY: None; 118086 | sortkey | Complete | 2020-08-22 19:42:00.72635 | SORTKEY: None; 118082 | sortkey | Complete | 2020-08-22 19:43:34.728144 | SORTKEY: None; 118072 | sortkey | Skipped:Retry exceeds the maximum limit for a table. | 2020-08-22 19:44:46.706155 | 118086 | sortkey | Start | 2020-08-22 19:42:00.685255 | 118082 | sortkey | Start | 2020-08-22 19:43:34.69531 | 118072 | sortkey | Start | 2020-08-22 19:44:46.703331 | 118082 | sortkey | Checkpoint: progress 14.755079% | 2020-08-22 19:42:52.692828 | 118072 | sortkey | Failed | 2020-08-22 19:44:14.796071 | 116723 | sortkey | Abort:This table is not AUTO. | 2020-10-28 05:12:58.479233 | 110203 | distkey | Abort:This table is not AUTO. | 2020-10-28 05:45:54.67259 |