Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 638 Bytes

ovh_cloud_data_job.md

File metadata and controls

34 lines (27 loc) · 638 Bytes

Table: ovh_cloud_data_job

A data job is processed by OVH by Apache Spark.

The ovh_cloud_data_job table can be used to query information about your jobs and you must specify which cloud project in the where or join clause (where project_id=, join ovh_cloud_project on id=).

Examples

List data job of a cloud project

select
  id,
  name,
  status
from
  ovh_cloud_data_job
where
  project_id='27c5a6d3dfez87893jfd88fdsfmvnqb8'

List completed data job

select
  id,
  name,
  status
from
  ovh_cloud_data_job
where
  project_id='27c5a6d3dfez87893jfd88fdsfmvnqb8'
  and status = 'COMPLETED'