|
Akka/Scala example source code file (dispatchers.rst)
The dispatchers.rst Akka example source code.. _dispatchers-scala: Dispatchers =================== An Akka ``MessageDispatcher`` is what makes Akka Actors "tick", it is the engine of the machine so to speak. All ``MessageDispatcher`` implementations are also an ``ExecutionContext``, which means that they can be used to execute arbitrary code, for instance :ref:`futures-scala`. Default dispatcher ------------------ Every ``ActorSystem`` will have a default dispatcher that will be used in case nothing else is configured for an ``Actor``. The default dispatcher can be configured, and is by default a ``Dispatcher`` with the specified ``default-executor``. If an ActorSystem is created with an ExecutionContext passed in, this ExecutionContext will be used as the default executor for all dispatchers in this ActorSystem. If no ExecutionContext is given, it will fallback to the executor specified in ``akka.actor.default-dispatcher.default-executor.fallback``. By default this is a "fork-join-executor", which gives excellent performance in most cases. .. _dispatcher-lookup-scala: Looking up a Dispatcher ----------------------- Dispatchers implement the :class:`ExecutionContext` interface and can thus be used to run :class:`Future` invocations etc. .. includecode:: code/docs/dispatcher/DispatcherDocSpec.scala#lookup Setting the dispatcher for an Actor ----------------------------------- So in case you want to give your ``Actor`` a different dispatcher than the default, you need to do two things, of which the first is to configure the dispatcher: .. includecode:: ../scala/code/docs/dispatcher/DispatcherDocSpec.scala#my-dispatcher-config And here's another example that uses the "thread-pool-executor": .. includecode:: ../scala/code/docs/dispatcher/DispatcherDocSpec.scala#my-thread-pool-dispatcher-config For more options, see the default-dispatcher section of the :ref:`configuration`. Then you create the actor as usual and define the dispatcher in the deployment configuration. .. includecode:: ../scala/code/docs/dispatcher/DispatcherDocSpec.scala#defining-dispatcher-in-config .. includecode:: ../scala/code/docs/dispatcher/DispatcherDocSpec.scala#dispatcher-deployment-config An alternative to the deployment configuration is to define the dispatcher in code. If you define the ``dispatcher`` in the deployment configuration then this value will be used instead of programmatically provided parameter. .. includecode:: ../scala/code/docs/dispatcher/DispatcherDocSpec.scala#defining-dispatcher-in-code .. note:: The dispatcher you specify in ``withDispatcher`` and the ``dispatcher`` property in the deployment configuration is in fact a path into your configuration. So in this example it's a top-level section, but you could for instance put it as a sub-section, where you'd use periods to denote sub-sections, like this: ``"foo.bar.my-dispatcher"`` Types of dispatchers -------------------- There are 4 different types of message dispatchers: * Dispatcher - This is an event-based dispatcher that binds a set of Actors to a thread pool. It is the default dispatcher used if one is not specified. - Sharability: Unlimited - Mailboxes: Any, creates one per Actor - Use cases: Default dispatcher, Bulkheading - Driven by: ``java.util.concurrent.ExecutorService`` specify using "executor" using "fork-join-executor", "thread-pool-executor" or the FQCN of an ``akka.dispatcher.ExecutorServiceConfigurator`` * PinnedDispatcher - This dispatcher dedicates a unique thread for each actor using it; i.e. each actor will have its own thread pool with only one thread in the pool. - Sharability: None - Mailboxes: Any, creates one per Actor - Use cases: Bulkheading - Driven by: Any ``akka.dispatch.ThreadPoolExecutorConfigurator`` by default a "thread-pool-executor" * BalancingDispatcher - This is an executor based event driven dispatcher that will try to redistribute work from busy actors to idle actors. - All the actors share a single Mailbox that they get their messages from. - It is assumed that all actors using the same instance of this dispatcher can process all messages that have been sent to one of the actors; i.e. the actors belong to a pool of actors, and to the client there is no guarantee about which actor instance actually processes a given message. - Sharability: Actors of the same type only - Mailboxes: Any, creates one for all Actors - Use cases: Work-sharing - Driven by: ``java.util.concurrent.ExecutorService`` specify using "executor" using "fork-join-executor", "thread-pool-executor" or the FQCN of an ``akka.dispatcher.ExecutorServiceConfigurator`` - Note that you can **not** use a ``BalancingDispatcher`` as a **Router Dispatcher**. (You can however use it for the **Routees**) * CallingThreadDispatcher - This dispatcher runs invocations on the current thread only. This dispatcher does not create any new threads, but it can be used from different threads concurrently for the same actor. See :ref:`Scala-CallingThreadDispatcher` for details and restrictions. - Sharability: Unlimited - Mailboxes: Any, creates one per Actor per Thread (on demand) - Use cases: Testing - Driven by: The calling thread (duh) More dispatcher configuration examples ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Configuring a ``PinnedDispatcher``: .. includecode:: ../scala/code/docs/dispatcher/DispatcherDocSpec.scala#my-pinned-dispatcher-config And then using it: .. includecode:: ../scala/code/docs/dispatcher/DispatcherDocSpec.scala#defining-pinned-dispatcher Note that ``thread-pool-executor`` configuration as per the above ``my-thread-pool-dispatcher`` example is NOT applicable. This is because every actor will have its own thread pool when using ``PinnedDispatcher``, and that pool will have only one thread. Note that it's not guaranteed that the *same* thread is used over time, since the core pool timeout is used for ``PinnedDispatcher`` to keep resource usage down in case of idle actors. To use the same thread all the time you need to add ``thread-pool-executor.allow-core-timeout=off`` to the configuration of the ``PinnedDispatcher``. Other Akka source code examplesHere is a short list of links related to this Akka dispatchers.rst source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.