-
In the current version of [documentation about actor supervision and restarting](https://github.com/akka/akka/blob/ecc916abfd9253b42a002d345277f28366c4b8ff/akka-docs/rst/general/supervision.rst#what-r…
-
Because actors clear their queue in `on_run`, there's a race condition where if you try to start a set of actors with a `Supervisor` and post something to their queue before they get started (or post …
-
Console after running "sbt -mem:2048 run":
[info] application - [tinderbot] Received command: idle
[debug] application - [tinderbot] New task received for supervision
[debug] application - [tinderbot…
ghost updated
8 years ago
-
The existing back off supervisor (`akka.pattern.BackoffSupervisor`) requires the child to be stopped in order for the supervisor to restart the child. This seems inconsistent with the behavior of norm…
-
```
2) Celluloid::IO behaves like a Celluloid Actor detects recursion
Failure/Error:
fail Celluloid::ThreadLeak, "Aborted due to runaway threads (#{location})\n"\
"List: (#{loos…
-
We should provide a `Supervisor(strategy, childProps)` that works similar to `BackoffSupervisor` however applies the strategy right away. It is useful when you need to configure supervision, yet "some…
ktoso updated
8 years ago
-
We found an issue, that in some cases when actor throws an exception, a supervisor strategy is not applied for some reason. In the following example, once `FakeActor` receives a message and throws an …
-
Executing `bundle exec sidekiqctl stop tmp/pids/sidekiq.pid` against a running sidekiq process' pid produces the following stacktrace, while otherise appearing to exit cleanly:
``` stacktrace
Cellulo…
-
Naming and hierarchy was changed here: https://github.com/akka/akka/pull/15701
Tests were removed there, might be useful to bring them back when the proper naming and hierarch is in place.
-
(Description copied from post on akka user)
There seems to be no way for the child to tell the `BackoffSupervisor` that everything is ok again, the back-off is automatically reset based on a duration …