You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ab...@apache.org on 2020/08/26 16:54:06 UTC

[ignite] branch IGNITE-7595 updated (530650a -> c10ce4e)

This is an automated email from the ASF dual-hosted git repository.

abudnikov pushed a change to branch IGNITE-7595
in repository https://gitbox.apache.org/repos/asf/ignite.git.


    from 530650a  update Plugins page
     new 0ba267a  add description of control script command that show/change cluster  tag
     new c10ce4e  minor fixes

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/_docs/control-script.adoc                     | 47 ++++++++++++++++++++++
 .../kubernetes/amazon-eks-deployment.adoc          |  2 +-
 docs/_docs/thin-clients/java-thin-client.adoc      |  2 +-
 3 files changed, 49 insertions(+), 2 deletions(-)


[ignite] 01/02: add description of control script command that show/change cluster tag

Posted by ab...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

abudnikov pushed a commit to branch IGNITE-7595
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 0ba267a6cbc1df2641b98b7835c1065c6b1046bf
Author: abudnikov <ab...@gridgain.com>
AuthorDate: Wed Aug 26 19:53:44 2020 +0300

    add description of control script command that show/change cluster  tag
---
 docs/_docs/control-script.adoc | 47 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/docs/_docs/control-script.adoc b/docs/_docs/control-script.adoc
index ee3e638..ecab54f 100644
--- a/docs/_docs/control-script.adoc
+++ b/docs/_docs/control-script.adoc
@@ -581,8 +581,55 @@ control.sh --tracing-configuration set --scope TX --sampling-rate 0.5
 
 
 
+== Cluster ID and Tag
 
+A cluster ID is a unique identifier of the cluster that is generated automatically when the cluster starts for the first time. Read link:monitoring-metrics/cluster-id[Cluster ID and Tag] for more information.
 
+To view the cluster ID, run the `--state` command:
 
+[tabs]
+--
+tab:Linux[]
+[source,shell,subs="verbatim,quotes"]
+----
+control.sh --state
+----
+tab:Windows[]
+[source,shell,subs="verbatim,quotes"]
+----
+control.bat --state
+----
+--
+
+And check the output:
+
+[source, text]
+----
+Command [STATE] started
+Arguments: --state
+--------------------------------------------------------------------------------
+Cluster  ID: bf9764ea-995e-4ea9-b35d-8c6d078b0234
+Cluster tag: competent_black
+--------------------------------------------------------------------------------
+Cluster is active
+Command [STATE] finished with code: 0
+----
+
+A cluster tag is a user friendly name that you can assign to your cluster.
+To change the tag, use the following command (the tag must contain no more than 280 characters):
+
+[tabs]
+--
+tab:Linux[]
+[source,shell,subs="verbatim,quotes"]
+----
+control.sh --change-tag _<new-tag>_
+----
+tab:Windows[]
+[source,shell,subs="verbatim,quotes"]
+----
+control.bat --change-tag _<new-tag>_
+----
+--
 
 


[ignite] 02/02: minor fixes

Posted by ab...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

abudnikov pushed a commit to branch IGNITE-7595
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit c10ce4eb22aa88dbd72eacdd89d9d5cac048f382
Author: abudnikov <ab...@gridgain.com>
AuthorDate: Wed Aug 26 19:53:54 2020 +0300

    minor fixes
---
 docs/_docs/installation/kubernetes/amazon-eks-deployment.adoc | 2 +-
 docs/_docs/thin-clients/java-thin-client.adoc                 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/_docs/installation/kubernetes/amazon-eks-deployment.adoc b/docs/_docs/installation/kubernetes/amazon-eks-deployment.adoc
index 1eb6a51..ee2687f 100644
--- a/docs/_docs/installation/kubernetes/amazon-eks-deployment.adoc
+++ b/docs/_docs/installation/kubernetes/amazon-eks-deployment.adoc
@@ -14,7 +14,7 @@ include::installation/kubernetes/generic-configuration.adoc[tag=intro]
 include::installation/kubernetes/generic-configuration.adoc[tag=kube-version]
 
 In this guide, we will use the `eksctl` command line tool to create a Kubernetes cluster.
-Please follow link:https://docs.aws.amazon.com/eks/latest/userguide/getting-started-eksctl.html[this guide,window=_blank] to install the required resources and get familiar with the tool.
+Follow link:https://docs.aws.amazon.com/eks/latest/userguide/getting-started-eksctl.html[this guide,window=_blank] to install the required resources and get familiar with the tool.
 
 
 == Creating an Amazon EKS Cluster
diff --git a/docs/_docs/thin-clients/java-thin-client.adoc b/docs/_docs/thin-clients/java-thin-client.adoc
index adbc6f6..4ee092a 100644
--- a/docs/_docs/thin-clients/java-thin-client.adoc
+++ b/docs/_docs/thin-clients/java-thin-client.adoc
@@ -211,7 +211,7 @@ Refer to link:distributed-computing/cluster-groups[Cluster groups] to get more i
 
 == Executing compute tasks
 
-The Java thin client has basic functionality to execute compute tasks. By default this feature is disabled on server-side. To enable this functionality server-side configuration property `maxActiveComputeTasksPerConnection` should be set excplicitly to value more than 0:
+The Java thin client has basic functionality to execute compute tasks. By default this feature is disabled on server-side. To enable this functionality server-side configuration property `maxActiveComputeTasksPerConnection` should be set explicitly to value more than 0:
 
 [tabs]
 --