rollup.asciidoc 939 B

12345678910111213141516171819202122232425262728
  1. [float]
  2. [[breaking_80_rollup_changes]]
  3. === Rollup changes
  4. //NOTE: The notable-breaking-changes tagged regions are re-used in the
  5. //Installation and Upgrade Guide
  6. //tag::notable-breaking-changes[]
  7. // end::notable-breaking-changes[]
  8. .The StartRollupJob endpoint now returns a success status if a job has already started.
  9. [%collapsible]
  10. ====
  11. *Details* +
  12. Previously, attempting to start an already-started rollup job would
  13. result in a `500 InternalServerError: Cannot start task for Rollup Job
  14. [job] because state was [STARTED]` exception.
  15. Now, attempting to start a job that is already started will just
  16. return a successful `200 OK: started` response.
  17. *Impact* +
  18. Update your workflow and applications to assume that a 200 status in response to
  19. attempting to start a rollup job means the job is in an actively started state.
  20. The request itself may have started the job, or it was previously running and so
  21. the request had no effect.
  22. ====