§Coordinated Shutdown
Play 2.6 incorporated the use of Akka’s Coordinated Shutdown but still didn’t rely on it completely. Since Play 2.7, Coordinated Shutdown is responsible for the complete shutdown of Play. In production, the trigger to invoke the clean shutdown could be a SIGTERM
or, if your Play process is part of an Akka Cluster, a Downing
event.
Note: If you are using Play embedded or if you manually handle
Application
’s andServer
’s on your tests, the migration to Coordinated Shutdown inside Play can affect your shutdown process since using Coordinated Shutdown introduces small changes on the dependent lifecycles of theApplication
and theServer
: 1) invokingServer#stop
MUST stop theServer
and MUST also stop theApplication
running on thatServer
; and 2) invokingApplication#stop
MUST stop theApplication
and MAY also stop theServer
where the application is running.
§How does it compare to ApplicationLifecycle
?
Coordinated Shutdown offers several phases where you may register tasks as opposed to ApplicationLifecycle
only offering a single way to register stop hooks. The traditional ApplicationLifecycle
stop hooks were a sequence of operations Play would decide the order they were run on. Coordinated Shutdown uses a collection of phases organised in a directed acyclic graph (DAG) where all tasks in a single phase run in parallel. This means that if you moved your cleanup code from ApplicationLifecycle
to Coordinated Suhtdown you will now have to also specify on what phase should the code run. You could use Coordinated Shutdown over ApplicationLifecycle
if you want fine-grained control over the order in which seemingly unrelated parts of the application should shutdown. For example, if you wanted to signal over the open websockets that the application is going down, you can register a task on the phase named before-service-unbind
and make that task push a signal message to the websocket clients. before-service-unbind
is granted to happen before service-unbind
which is the phase in which, you guessed it, the server connections are unbound. Unbinding the connections will still allow in-flight requests to complete though.
Play’s DI exposes an instance of CoordinatedShutdown
. If you want to migrate from ApplicationLifecycle
to Coordinated Shutdown, wherever you requested an instance of ApplicationLifecycle
to be injected you may now request an instance of CoordinatedShutdown
.
A CoordinatedShutdown
instance is bound to an ActorSystem
instance. In those environments where the Server
and the Application
share the ActorSystem
both Server
and Application
will be stopped when either one is stopped. You can find more details on the new section on Coordinated Shutdown on the Play manual or you can have a look at Akka’s reference docs on Coordinated Shutdown.
§Shutdown sequence
Coordinated Shutdown is released with a set of default phases organised as a directed acyclic graph (DAG). You can create new phases and overwrite the default values so existing phases depend on yours. Here’s a list of the most relevant phases shipped in Akka and used by Play by default:
before-service-unbind
service-unbind
service-requests-done
service-stop
// few cluster-related phases only meant for internal use
before-actor-system-terminate
actor-system-terminate
The list above mentions the relevant phases in the order they’ll run by default. Follow the Akka docs to change this behavior.
Note the ApplicationLifecycle#stopHooks
that you don’t migrate to Coordinated Shutdown tasks will still run in reverse order of creation and they will run inside CoordinatedShutdown
during the service-stop
phase. That is, Coordinated Shutdown considers all ApplicationLifecycle#stopHooks
like a single task. Coordinated Shutdown gives you the flexibility of running a shutdown task on a different phase. Your current code using ApplicationLifecycle#stopHooks
should be fine but consider reviewing how and when it’s invoked. If, for example, you have an actor which periodically does some database operation then the actor needs a database connection. Depending on how the two are created it’s possible your database connection pool is closed in an ApplicationLifecycle#stopHook
which happens in the service-stop
phase but your actor might now be closed on the actor-system-terminate
phase which happens later.
Continue using ApplicationLifecycle#stopHooks
if running your cleanup code in the service-stop
phase is coherent with your usage.
To opt-in to using Coordinated Shutdown tasks you need to inject a CoordinatedShutdown
instance and use addTask
as the example below:
- Scala
-
class ResourceAllocatingScalaClass @Inject() (cs: CoordinatedShutdown) { // Some resource allocation happens here: A connection // pool is created, some client library is started, ... val resources = Resources.allocate() // Register a shutdown task as soon as possible. cs.addTask( CoordinatedShutdown.PhaseServiceUnbind, "free-some-resource"){ () => resources.release() } // ... some more code }
- Java
-
public class ResourceAllocatingJavaClass { private final Resources resources; @Inject public ResourceAllocatingJavaClass(CoordinatedShutdown cs) { // Some resource allocation happens here: A connection // pool is created, some client library is started, ... resources = Resources.allocate(); // Register a shutdown task as soon as possible. cs.addTask( CoordinatedShutdown.PhaseServiceUnbind(), "free-some-resource", () -> resources.release() ); } // ... some more code }
Next: Contributing to Play