get_dataset_events
Retrieve dataset events in Apache Airflow by specifying filters like dataset ID, DAG, task, or run details. Supports pagination and sorting for efficient data extraction.
Instructions
Get dataset events
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset_id | No | ||
limit | No | ||
offset | No | ||
order_by | No | ||
source_dag_id | No | ||
source_map_index | No | ||
source_run_id | No | ||
source_task_id | No |
Input Schema (JSON Schema)
{
"properties": {
"dataset_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Dataset Id"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Offset"
},
"order_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Order By"
},
"source_dag_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Dag Id"
},
"source_map_index": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Map Index"
},
"source_run_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Run Id"
},
"source_task_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Task Id"
}
},
"title": "get_dataset_eventsArguments",
"type": "object"
}