Download OpenAPI specification:Download
This page describe tha API exposed by ODM Platform's DevOps Service
The DevOps Module of the Open Data Mesh platform manages the data product's lifecycle. Specifically, it handles the necessary activities to execute transitions between different stages within the lifecycle. The possible stages and the activities to be performed are described in the 'lifecycle' block of the data product descriptor. To perform a stage transition, it's required to create a new activity
, specifying the version of the data product on which it should be executed and the target stage.
The DevOps Module then reads the definition of the data product version from the Registry Module, verifies that the target stage exists among those defined in the lifecycle
block, and finally creates a plan of tasks
to be executed to bring the data product to the desired stage. The activity and its associated tasks are created with a default state of PLANNED
.
When the activity is initiated, the DevOps Module reads the next task to be executed in the execution plan and submits it to the execution service adapter specified in the data product descriptor, passing the template
and configurations
as input. When the adapter completes the task execution, it notifies the DevOps Module of the completion and the status, which then proceeds with executing the next task if available, or terminates the activity.
The Schema Registry REST server uses content types for both requests and responses to indicate the serialization format of the data as well as the version of the API being used. Currently, the only serialization format supported is JSON and the only version of the API is v1
. However, to remain compatible with future versions, you should specify preferred content types in requests and check the content types of responses.
The preferred format for content types is application/vnd.odmp.v1+json
, where v1
is the API version and json is the serialization format. However, other less specific content types are permitted, including application/vnd.odmp+json
to indicate no specific API version should be used (the most recent stable version will be used), application/json
, and application/octet-stream
. The latter two are only supported for compatibility and ease of use.
Your requests should specify the most specific format and version information possible via the HTTP Accept
header:
Accept: application/vnd.odmp.v1+json
The server does not supports at the moment content negotiation.
All API endpoints use a standard error message format for any requests that return an HTTP status indicating an error (any 400 or 500 statuses). For example, a request entity that omits a required field may generate the following response:
HTTP/1.1 422 Unprocessable Entity
Content-Type: application/vnd.schemaregistry.v1+json
{
"status": 404,
"code": 40401,
"description": "Activity not found"
"message": "Activity with id equals to [5] does not exist"
"path": "/api/v1/pp/devops/activities/5"
}
Although it is good practice to check the status code, you may safely parse the response of any non-DELETE API calls and check for the presence of a code
field to detect errors.
For each endpoints all possible error codes, grouped by http response status, are listed and described with the exception of the following ones that are always possible:
40000
(Request body is not readable): this error is returned when41501
(Request media type not supported): : this error is returned when40601
(Request accepted media types not supported): : this error is returned whenStop the task identified by the input id
if it has not been stoped yet
id required | integer <int64> Identifier of the task |
action required | string Add |
updateVariables | boolean Add |
A TaskResult object
status | string Enum: "PROCESSED" "FAILED" Status of the Task |
object Optional JSON results of the Task execution returned from the executor | |
errors | string Optional textual set of errors of the Task execution returned from the executor |
Example for a succeeded task
"{\n \"status\": \"PROCESSED\",\n \"results\": {\n \"message\": \"Task executed successfully\"\n \"param\": \"param_value\"\n }\n}"
{- "status": "PLANNED"
}
Get all tasks
activityId | integer <int64> Add |
executor | string Add |
status | string Enum: "PLANNED" "ABORTED" "PROCESSING" "PROCESSED" "FAILED" Add |
[- {
- "id": 0,
- "activityId": "string",
- "executorRef": "azure-devops",
- "template": "string",
- "configurations": "string",
- "status": "PLANNED",
- "results": "string",
- "errors": "string",
- "createdAt": "2019-08-24T14:15:22Z",
- "startedAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
]
Get the task identified by the input id
id required | integer <int64> Identifier of the task |
{- "id": 0,
- "activityId": "string",
- "executorRef": "azure-devops",
- "template": "string",
- "configurations": "string",
- "status": "PLANNED",
- "results": "string",
- "errors": "string",
- "createdAt": "2019-08-24T14:15:22Z",
- "startedAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
Get all the created activities
dataProductId | string Add |
dataProductVersion | string Add |
stage | string Add |
status | string Enum: "PLANNED" "PROCESSING" "PROCESSED" "FAILED" Add |
[- {
- "id": 0,
- "dataProductId": "string",
- "dataProductVersion": "string",
- "stage": "string",
- "status": "PLANNED",
- "results": "string",
- "errors": "string",
- "createdAt": "2019-08-24T14:15:22Z",
- "startedAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
]
Create new activity of the given type and all its associated tasks on the specified data product. By default the activity and all it's tasks after creation are in PLANNED
state. To start the activity after creation pass also the parameter startAfterCreation
set to true
or call the proper endpoint (see below)
startAfterCreation | boolean Pass true to start the activity after creation |
An activity object
id | integer <int64> Auto generated Activity ID |
dataProductId required | string ID of the Data Product subject of the Activity |
dataProductVersion required | string Version of the Data Product subject of the Activity |
stage required | string Goal stage of the Activity |
status | string Enum: "PLANNED" "PROCESSING" "PROCESSED" "FAILED" Auto updated Activity status |
results | string Auto updated Activity execution results |
errors | string Auto updated Activity execution errors |
createdAt | string <date-time> Activity creation timestamp |
startedAt | string <date-time> Timestamp of the Activity execution start |
finishedAt | string <date-time> Timestamp of the Activity execution end |
description of example one
{- "dataProductId": "c18b07ba-bb01-3d55-a5bf-feb517a8d901",
- "dataProductVersion": "1.0.0",
- "stage": "prod"
}
one
{- "dataProductId": "c18b07ba-bb01-3d55-a5bf-feb517a8d901",
- "dataProductVersion": "1.0.0",
- "stage": "prod"
}
Start the activity identified by the input id
if it has not been started yet
id required | integer <int64> Identifier of the activity |
action required | string Add |
{- "status": "PLANNED"
}
Get the activity identified by the input id
id required | integer <int64> Identifier of the activity |
{- "id": 0,
- "dataProductId": "string",
- "dataProductVersion": "string",
- "stage": "string",
- "status": "PLANNED",
- "results": "string",
- "errors": "string",
- "createdAt": "2019-08-24T14:15:22Z",
- "startedAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
Get all the lifecycles associated to the input dataProductId
dataProductId required | string Identifier of the data product |
[- {
- "id": 0,
- "dataProductId": "string",
- "dataProductVersion": "string",
- "stage": "string",
- "results": "string",
- "startedAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
]
Get the lifecycles identified by the input dataProductId
and versionNumber
dataProductId required | string Identifier of the data product |
versionNumber required | string Version number of the data product |
[- {
- "id": 0,
- "dataProductId": "string",
- "dataProductVersion": "string",
- "stage": "string",
- "results": "string",
- "startedAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}
]
Get the current lifecycle identified by the input dataProductId
and versionNumber
dataProductId required | string Identifier of the data product |
versionNumber required | string Version number of the data product |
{- "id": 0,
- "dataProductId": "string",
- "dataProductVersion": "string",
- "stage": "string",
- "results": "string",
- "startedAt": "2019-08-24T14:15:22Z",
- "finishedAt": "2019-08-24T14:15:22Z"
}