Data Jobs Deployment
Get Data Job deployments. | (Stable)
<i>(Introduced in v1.0)</i>
get/data-jobs/for-team/{team_name}/jobs/{job_name}/deployments
Query parameters
deployment_idstring
Get the Deployment with this id (e.g production, staging, dev)
mode'testing' | 'release'
The execution mode that the data job is deployed in. Data Jobs used for development or testing purposes are marked as testing. This is used by Operations team on platform rollout and infrastructure changes adoption. For example, rollout and validation of testing jobs first, then proceeding with release data jobs. Also, testing and release jobs may have different limits and SLA targets.
Example:release
Get Deployments only for this mode.
Response
A list of data job deployments
Example response
[
{
"job_version": "11a403ba",
"python_version": "3.9",
"mode": "release",
"id": "release",
"contacts": {
"notified_on_job_failure_user_error": [
"auserov@example.mail.com"
],
"notified_on_job_failure_platform_error": [
"auserov@example.mail.com"
],
"notified_on_job_success": [
"auserov@example.mail.com"
],
"notified_on_job_deploy": [
"auserov@example.mail.com"
]
},
"schedule": {
"schedule_cron": "0 0 13 * 5"
},
"resources": {
"cpu_request": 10,
"cpu_limit": 20,
"memory_request": 1024,
"memory_limit": 2048
},
"last_deployed_date": "2021-02-02T10:50:40.034Z",
"last_deployed_by": "jdoe"
}
]