Promote Distributed Data, #22201
This commit is contained in:
parent
d1ba2c1aae
commit
f409c06c78
7 changed files with 19 additions and 22 deletions
|
|
@ -211,7 +211,7 @@ The settings for Distributed Data is configured in the the section
|
|||
``akka.cluster.sharding.distributed-data``. It's not possible to have different
|
||||
``distributed-data`` settings for different sharding entity types.
|
||||
|
||||
You must explicitly add the ``akka-distributed-data-experimental`` dependency to your build if
|
||||
You must explicitly add the ``akka-distributed-data`` dependency to your build if
|
||||
you use this mode. It is possible to remove ``akka-persistence`` dependency from a project if it
|
||||
is not used in user code.
|
||||
|
||||
|
|
|
|||
|
|
@ -24,12 +24,6 @@ It is eventually consistent and geared toward providing high read and write avai
|
|||
(partition tolerance), with low latency. Note that in an eventually consistent system a read may return an
|
||||
out-of-date value.
|
||||
|
||||
.. warning::
|
||||
|
||||
This module is marked as **“experimental”** as of its introduction in Akka 2.4.0. We will continue to
|
||||
improve this API based on our users’ feedback, which implies that while we try to keep incompatible
|
||||
changes to a minimum the binary compatibility guarantee for maintenance releases does not apply to the
|
||||
contents of the ``akka.persistence`` package.
|
||||
|
||||
Using the Replicator
|
||||
====================
|
||||
|
|
@ -600,13 +594,13 @@ To use Distributed Data you must add the following dependency in your project.
|
|||
|
||||
sbt::
|
||||
|
||||
"com.typesafe.akka" %% "akka-distributed-data-experimental" % "@version@" @crossString@
|
||||
"com.typesafe.akka" %% "akka-distributed-data" % "@version@" @crossString@
|
||||
|
||||
maven::
|
||||
|
||||
<dependency>
|
||||
<groupId>com.typesafe.akka</groupId>
|
||||
<artifactId>akka-distributed-data-experimental_@binVersion@</artifactId>
|
||||
<artifactId>akka-distributed-data_@binVersion@</artifactId>
|
||||
<version>@version@</version>
|
||||
</dependency>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue