Redshiftクラスタ 停止、起動、状態確認のCLI操作
停止
aws redshift pause-cluster --cluster-identifier redshift-ra3
起動(再開)
aws redshift resume-cluster --cluster-identifier redshift-ra3
状態確認
aws redshift describe-clusters --cluster-identifier redshift-ra3
describe-clusters
で必要な情報だけ取得する
[ec2-user@bastin ~]$ aws redshift describe-clusters --cluster-identifier redshift-ra3 | jq -r '.Clusters[] | [ .ClusterIdentifier, .NodeType, .ClusterStatus] | @csv'
"redshift-ra3","ra3.4xlarge","paused"
関連しているかもしれない記事
- Redshift RA3 と Spectrumの使い分け
- Redshiftのdecimalの数値計算時の注意点
- Redshiftのskew tableを確認する
- Redshiftのサンプルデータベース(TICKIT)を作る
- RedshiftのS3へのデータアンロード