steampipe plugin install francois2metz/ovh

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'

Schema for ovh_cloud_data_job

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
container_nametextName of the container where the code and the log of the job is.
created_attimestamp with time zoneCreation date of the job.
ended_attimestamp with time zoneEnd date of the job.
enginetextEngine of the job.
engine_versiontextVersion of the engine.
idtext=UUID of the job.
nametextname of the job.
project_idtext=Project ID.
regiontextOpenstack region of the job.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
started_attimestamp with time zoneStart date of the job.
statustextCurrent state of the job.
ttltextMaximum 'Time To Live' (in RFC3339 (duration)) of this job, after which it will be automatically terminated.