Schedule a transform to start now Added in 8.7.0
Instantly runs a transform to process data.
If you _schedule_now a transform, it will process the new data instantly, without waiting for the configured frequency interval. After _schedule_now API is called, the transform will be processed again at now + frequency unless _schedule_now API is called again in the meantime.
Path parameters
-
Identifier for the transform.
Query parameters
-
timeout string
Controls the time to wait for the scheduling to take place
POST /_transform/{transform_id}/_schedule_now
curl \
-X POST http://api.example.com/_transform/{transform_id}/_schedule_now
Response examples (200)
{
"acknowledged": true
}