0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

BigQueryの使用スロット数と処理時間を求めるクエリ

Posted at
SELECT
  job_id,
  SAFE_DIVIDE(total_slot_ms, TIMESTAMP_DIFF(end_time,start_time,MILLISECOND)) AS num_slot,
  TIMESTAMP_DIFF(end_time, start_time, SECOND) AS elapsed_time
FROM
  `region-asia-northeast1.INFORMATION_SCHEMA.JOBS`
WHERE
  job_id = "foobar"
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?