This is an automated email from the ASF dual-hosted git repository.
dmagda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new 48e4474 IGNITE-14491: moving-sections-and-deleting-incorrect-note
(#8986)
48e4474 is described below
commit 48e447471b5db7e590284a8a48b5e5236a59b7d5
Author: IgGusev <[email protected]>
AuthorDate: Thu Apr 8 17:59:38 2021 +0300
IGNITE-14491: moving-sections-and-deleting-incorrect-note (#8986)
---
docs/_docs/includes/partition-awareness.adoc | 8 --------
.../kubernetes/generic-configuration.adoc | 20 ++++++++++----------
2 files changed, 10 insertions(+), 18 deletions(-)
diff --git a/docs/_docs/includes/partition-awareness.adoc
b/docs/_docs/includes/partition-awareness.adoc
index 8358e9c..a8c32f0 100644
--- a/docs/_docs/includes/partition-awareness.adoc
+++ b/docs/_docs/includes/partition-awareness.adoc
@@ -27,14 +27,6 @@ This eliminates the bottleneck, allowing the application to
scale more easily.
image::images/partitionawareness02.png[With Partition Awareness]
-[WARNING]
-====
-[discrete]
-Note that for non-Java clients presently you need to provide addresses of all
the server nodes in the connection properties.
-This also means that if a new server node joins the cluster, you should add
the server's address to the connection properties and reconnect the thin client.
-Otherwise, the thin client will not be able to send direct requests to this
server.
-This limitation is planned to be addressed before the GA release of the
feature.
-====
diff --git a/docs/_docs/installation/kubernetes/generic-configuration.adoc
b/docs/_docs/installation/kubernetes/generic-configuration.adoc
index 6e6724b..1bce418 100644
--- a/docs/_docs/installation/kubernetes/generic-configuration.adoc
+++ b/docs/_docs/installation/kubernetes/generic-configuration.adoc
@@ -388,6 +388,16 @@ Note that we use the external IP address (LoadBalancer
Ingress) of the service.
include::{javaFile}[tags=connectThinClient, indent=0]
----
+=== Connecting to REST API
+
+Connect to the cluster's REST API as follows:
+
+[source,shell,subs="attributes,specialchars"]
+----
+$ curl http://13.86.186.145:8080/ignite?cmd=version
+{"successStatus":0,"error":null,"response":"{version}","sessionToken":null}
+----
+
== Partition Awareness
include::../../includes/partition-awareness.adoc[]
@@ -400,15 +410,5 @@ In this case, a client can connect to every pod in a
cluster.
include::{javaFile}[tags=connectThinClientWithKubernetesConfiguration,
indent=0]
----
-=== Connecting to REST API
-
-Connect to the cluster's REST API as follows:
-
-[source,shell,subs="attributes,specialchars"]
-----
-$ curl http://13.86.186.145:8080/ignite?cmd=version
-{"successStatus":0,"error":null,"response":"{version}","sessionToken":null}
-----
-
//end::kubernetes-config[]