mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-30 18:33:26 -04:00
Changes instances of `[float]` in our docs for `[discrete]`. Asciidoctor prefers the `[discrete]` tag for floating headings: https://asciidoctor.org/docs/asciidoc-asciidoctor-diffs/#blocks
28 lines
No EOL
942 B
Text
28 lines
No EOL
942 B
Text
[discrete]
|
|
[[breaking_80_rollup_changes]]
|
|
=== Rollup changes
|
|
|
|
//NOTE: The notable-breaking-changes tagged regions are re-used in the
|
|
//Installation and Upgrade Guide
|
|
|
|
//tag::notable-breaking-changes[]
|
|
|
|
// end::notable-breaking-changes[]
|
|
|
|
.The StartRollupJob endpoint now returns a success status if a job has already started.
|
|
[%collapsible]
|
|
====
|
|
*Details* +
|
|
Previously, attempting to start an already-started rollup job would
|
|
result in a `500 InternalServerError: Cannot start task for Rollup Job
|
|
[job] because state was [STARTED]` exception.
|
|
|
|
Now, attempting to start a job that is already started will just
|
|
return a successful `200 OK: started` response.
|
|
|
|
*Impact* +
|
|
Update your workflow and applications to assume that a 200 status in response to
|
|
attempting to start a rollup job means the job is in an actively started state.
|
|
The request itself may have started the job, or it was previously running and so
|
|
the request had no effect.
|
|
==== |