From 6541d3d19e105d4dce1f40be7412613eae4e78f1 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Thu, 14 Dec 2017 11:33:41 +0100 Subject: [PATCH] Split up 'Networking' docs in 'Networking' and 'Clustering' (#24142) We also probably want to add some more wording explaining you probably don't want to use remoting directly, but either use a 'proper' protocol like akka-http to loosely couple or akka-cluster for more coupled systems, but that could be another PR Move 'networking' below 'streams' as you don't typically have to deal with it directly --- akka-docs/src/main/paradox/index-cluster.md | 17 +++++++++++++++++ akka-docs/src/main/paradox/index-network.md | 11 +---------- akka-docs/src/main/paradox/index.md | 3 ++- 3 files changed, 20 insertions(+), 11 deletions(-) create mode 100644 akka-docs/src/main/paradox/index-cluster.md diff --git a/akka-docs/src/main/paradox/index-cluster.md b/akka-docs/src/main/paradox/index-cluster.md new file mode 100644 index 0000000000..498e632591 --- /dev/null +++ b/akka-docs/src/main/paradox/index-cluster.md @@ -0,0 +1,17 @@ +# Clustering + +@@toc { depth=2 } + +@@@ index + +* [common/cluster](common/cluster.md) +* [cluster-usage](cluster-usage.md) +* [cluster-singleton](cluster-singleton.md) +* [distributed-pub-sub](distributed-pub-sub.md) +* [cluster-client](cluster-client.md) +* [cluster-sharding](cluster-sharding.md) +* [cluster-metrics](cluster-metrics.md) +* [distributed-data](distributed-data.md) +* [cluster-dc](cluster-dc.md) + +@@@ diff --git a/akka-docs/src/main/paradox/index-network.md b/akka-docs/src/main/paradox/index-network.md index ae4015ed67..3a4da612e9 100644 --- a/akka-docs/src/main/paradox/index-network.md +++ b/akka-docs/src/main/paradox/index-network.md @@ -4,15 +4,6 @@ @@@ index -* [common/cluster](common/cluster.md) -* [cluster-usage](cluster-usage.md) -* [cluster-singleton](cluster-singleton.md) -* [distributed-pub-sub](distributed-pub-sub.md) -* [cluster-client](cluster-client.md) -* [cluster-sharding](cluster-sharding.md) -* [cluster-metrics](cluster-metrics.md) -* [distributed-data](distributed-data.md) -* [cluster-dc](cluster-dc.md) * [remoting](remoting.md) * [remoting-artery](remoting-artery.md) * [serialization](serialization.md) @@ -22,4 +13,4 @@ * [camel](camel.md) * [multi-jvm-testing](multi-jvm-testing.md) -@@@ \ No newline at end of file +@@@ diff --git a/akka-docs/src/main/paradox/index.md b/akka-docs/src/main/paradox/index.md index cd9fb4e1cc..32f90a681f 100644 --- a/akka-docs/src/main/paradox/index.md +++ b/akka-docs/src/main/paradox/index.md @@ -8,8 +8,9 @@ * [guide/index](guide/index.md) * [general/index](general/index.md) * [index-actors](index-actors.md) -* [index-network](index-network.md) +* [index-cluster](index-cluster.md) * [stream/index](stream/index.md) +* [index-network](index-network.md) * [index-futures](index-futures.md) * [index-utilities](index-utilities.md) * [common/other-modules](common/other-modules.md)