=cdd #17851 Mark distributed data as experimental
This commit is contained in:
parent
83e931ea7e
commit
ee9137db4d
4 changed files with 23 additions and 5 deletions
|
|
@ -3,6 +3,8 @@ import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
AkkaBuild.defaultSettings
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
AkkaBuild.experimentalSettings
|
||||||
|
|
||||||
Formatting.formatSettings
|
Formatting.formatSettings
|
||||||
|
|
||||||
OSGi.distributedData
|
OSGi.distributedData
|
||||||
|
|
@ -12,3 +14,5 @@ Dependencies.distributedData
|
||||||
//MimaKeys.previousArtifact := akkaPreviousArtifact("akka-distributed-data").value
|
//MimaKeys.previousArtifact := akkaPreviousArtifact("akka-distributed-data").value
|
||||||
|
|
||||||
enablePlugins(MultiNodeScalaTest)
|
enablePlugins(MultiNodeScalaTest)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,13 @@ 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
|
(partition tolerance), with low latency. Note that in an eventually consistent system a read may return an
|
||||||
out-of-date value.
|
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
|
Using the Replicator
|
||||||
====================
|
====================
|
||||||
|
|
||||||
|
|
@ -502,13 +509,13 @@ To use Distributed Data you must add the following dependency in your project.
|
||||||
|
|
||||||
sbt::
|
sbt::
|
||||||
|
|
||||||
"com.typesafe.akka" %% "akka-distributed-data" % "@version@" @crossString@
|
"com.typesafe.akka" %% "akka-distributed-data-experimental" % "@version@" @crossString@
|
||||||
|
|
||||||
maven::
|
maven::
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.typesafe.akka</groupId>
|
<groupId>com.typesafe.akka</groupId>
|
||||||
<artifactId>akka-distributed-data_@binVersion@</artifactId>
|
<artifactId>akka-distributed-data-experimental_@binVersion@</artifactId>
|
||||||
<version>@version@</version>
|
<version>@version@</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,13 @@ 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
|
(partition tolerance), with low latency. Note that in an eventually consistent system a read may return an
|
||||||
out-of-date value.
|
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
|
Using the Replicator
|
||||||
====================
|
====================
|
||||||
|
|
||||||
|
|
@ -490,13 +497,13 @@ To use Distributed Data you must add the following dependency in your project.
|
||||||
|
|
||||||
sbt::
|
sbt::
|
||||||
|
|
||||||
"com.typesafe.akka" %% "akka-distributed-data" % "@version@" @crossString@
|
"com.typesafe.akka" %% "akka-distributed-data-experimental" % "@version@" @crossString@
|
||||||
|
|
||||||
maven::
|
maven::
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.typesafe.akka</groupId>
|
<groupId>com.typesafe.akka</groupId>
|
||||||
<artifactId>akka-distributed-data_@binVersion@</artifactId>
|
<artifactId>akka-distributed-data-experimental_@binVersion@</artifactId>
|
||||||
<version>@version@</version>
|
<version>@version@</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -139,7 +139,7 @@ object AkkaBuild extends Build {
|
||||||
) configs (MultiJvm)
|
) configs (MultiJvm)
|
||||||
|
|
||||||
lazy val distributedData = Project(
|
lazy val distributedData = Project(
|
||||||
id = "akka-distributed-data",
|
id = "akka-distributed-data-experimental",
|
||||||
base = file("akka-distributed-data"),
|
base = file("akka-distributed-data"),
|
||||||
dependencies = Seq(cluster % "compile->compile;test->test;multi-jvm->multi-jvm")
|
dependencies = Seq(cluster % "compile->compile;test->test;multi-jvm->multi-jvm")
|
||||||
) configs (MultiJvm)
|
) configs (MultiJvm)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue