BigQuery에서 create model을 실행 후

This query will process 41.76 MB (ML) when run. Depending on the model type and training data size, the training job can take minutes or even hours.

이런 메시지가 하단에 출력되고는, 이 녀석이 진행중인지 도통 알수가 없는 상태가 되어, 혹시나 하고 진헹상태를 찾아볼수 있는가 싶었지만.

SELECT
  job_id,
  state,
  creation_time,
  start_time,
  end_time,
  error_result
FROM
  `region-us`.INFORMATION_SCHEMA.JOBS_BY_USER
WHERE
  job_type = 'QUERY'
  AND statement_type = 'CREATE_MODEL'
ORDER BY
  creation_time DESC
LIMIT 10;

역시나 결과가 안 나온다.

Read Count