[Core] Actor Retries Out of Order Tasks on Restart (#12338)

This commit is contained in:
Simon Mo
2020-12-01 09:35:54 -08:00
committed by GitHub
parent f6f3cc9af1
commit f596113fc7
8 changed files with 257 additions and 44 deletions
+6
View File
@@ -163,6 +163,12 @@ semantics. If the actors exact state at the time of failure is needed, the
application is responsible for resubmitting all tasks since the last
checkpoint.
.. note::
For :ref:`async or threaded actors <async-actors>`, the tasks might
be completed out of order. Upon actor restart, the system will only retry
*incomplete* task, in their initial submission order. Previously completed
tasks will not be re-executed.
.. _object-reconstruction:
Objects