rollup.asciidoc 942 B

1234567891011121314151617181920212223242526
  1. [discrete]
  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. .The StartRollupJob endpoint now returns a success status if a job has already started.
  8. [%collapsible]
  9. ====
  10. *Details* +
  11. Previously, attempting to start an already-started rollup job would
  12. result in a `500 InternalServerError: Cannot start task for Rollup Job
  13. [job] because state was [STARTED]` exception.
  14. Now, attempting to start a job that is already started will just
  15. return a successful `200 OK: started` response.
  16. *Impact* +
  17. Update your workflow and applications to assume that a 200 status in response to
  18. attempting to start a rollup job means the job is in an actively started state.
  19. The request itself may have started the job, or it was previously running and so
  20. the request had no effect.
  21. ====
  22. // end::notable-breaking-changes[]