Redshift でクエリの実行時間を計測したいときは,psql の機能で \timing
というオプションがあるので,それで計測できる.便利!
postgresql - Postgres Query execution time - Stack Overflow
my_redshift=> \timing
タイミングは on です。
my_redshift=> SELECT COUNT(*) FROM xxx; count ---------- 10000000 (1 行) 時間: 10.000 ms