Clean up of persistence and cluster docs (#27451)
* Moves generic sections to main index rather than classic * A few renames from persistence to event sourced actors Refs #27223
This commit is contained in:
parent
473d4f71d7
commit
d41622296e
8 changed files with 15 additions and 14 deletions
|
|
@ -32,11 +32,7 @@ To use Classic Akka Actors, you must add the following dependency in your projec
|
|||
* [routing](routing.md)
|
||||
* [fsm](fsm.md)
|
||||
* [persistence](persistence.md)
|
||||
* [persistence-schema-evolution](persistence-schema-evolution.md)
|
||||
* [persistence-query](persistence-query.md)
|
||||
* [persistence-query-leveldb](persistence-query-leveldb.md)
|
||||
* [persistence-fsm](persistence-fsm.md)
|
||||
* [persistence-journals](persistence-journals.md)
|
||||
* [testing](testing.md)
|
||||
|
||||
@@@
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ For the new API see @ref[Cluster](typed/index-cluster.md).
|
|||
|
||||
@@@ index
|
||||
|
||||
* [common/cluster](common/cluster.md)
|
||||
* [cluster-usage](cluster-usage.md)
|
||||
* [cluster-routing](cluster-routing.md)
|
||||
* [cluster-singleton](cluster-singleton.md)
|
||||
|
|
@ -24,5 +23,6 @@ For the new API see @ref[Cluster](typed/index-cluster.md).
|
|||
* [cluster-sharding](cluster-sharding.md)
|
||||
* [cluster-metrics](cluster-metrics.md)
|
||||
* [distributed-data](distributed-data.md)
|
||||
* [coordination](coordination.md)
|
||||
|
||||
@@@
|
||||
|
|
|
|||
|
|
@ -8,11 +8,10 @@
|
|||
* [guide/index](typed/guide/index.md)
|
||||
* [general/index](general/index.md)
|
||||
* [index-actors](typed/index.md)
|
||||
* [persistence](typed/persistence.md)
|
||||
* [index-cluster](typed/index-cluster.md)
|
||||
* [persistence](typed/persistence.md)
|
||||
* [stream/index](stream/index.md)
|
||||
* [discovery](discovery/index.md)
|
||||
* [coordination](coordination.md)
|
||||
* [index-utilities](index-utilities.md)
|
||||
* [common/other-modules](common/other-modules.md)
|
||||
* [additional/deploy](additional/deploy.md)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Persistence - Schema Evolution
|
||||
# Schema Evolution for Event Sourced Actors
|
||||
|
||||
## Dependency
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
@@@ index
|
||||
|
||||
* [cluster-specification](../common/cluster.md)
|
||||
* [cluster](cluster.md)
|
||||
* [distributed-data](distributed-data.md)
|
||||
* [cluster-singleton](cluster-singleton.md)
|
||||
|
|
@ -15,5 +16,6 @@
|
|||
* [cluster-dc](../cluster-dc.md)
|
||||
* [remoting-artery](../remoting-artery.md)
|
||||
* [remoting](../remoting.md)
|
||||
* [coordination](../coordination.md)
|
||||
|
||||
@@@
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
# Persistence - snapshotting
|
||||
# Snapshotting
|
||||
|
||||
## Snapshots
|
||||
|
||||
As you model your domain using @ref:[persistent actors](persistence.md), you may notice that some actors may be
|
||||
As you model your domain using @ref:[EventSourced actors](persistence.md), you may notice that some actors may be
|
||||
prone to accumulating extremely long event logs and experiencing long recovery times. Sometimes, the right approach
|
||||
may be to split out into a set of shorter lived actors. However, when this is not an option, you can use snapshots
|
||||
to reduce recovery times drastically.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
# Persistence - coding style
|
||||
# Style Guide
|
||||
|
||||
## Event handlers in the state
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,13 @@
|
|||
# Persistence
|
||||
# Event Sourcing
|
||||
|
||||
@@@ index
|
||||
|
||||
* [Persistence - coding style](persistence-style.md)
|
||||
* [Persistence - snapshotting](persistence-snapshot.md)
|
||||
* [Persistence coding style](persistence-style.md)
|
||||
* [Persistence snapshotting](persistence-snapshot.md)
|
||||
* [Persistence schema evolution](../persistence-schema-evolution.md)
|
||||
* [Persistence query](../persistence-query.md)
|
||||
* [Persistence query LevelDB](../persistence-query-leveldb.md)
|
||||
* [Persistence Journals](../persistence-journals.md)
|
||||
|
||||
@@@
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue