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

apolovtsev pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new 721055eab5 IGNITE-23586 Update DEVNOTES.md according to current CLI 
implementation (#4666)
721055eab5 is described below

commit 721055eab5cf2b0ba1681a46ccf2537b59d46f2a
Author: Ivan Zlenko <[email protected]>
AuthorDate: Fri Nov 1 00:04:00 2024 +0500

    IGNITE-23586 Update DEVNOTES.md according to current CLI implementation 
(#4666)
---
 DEVNOTES.md | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/DEVNOTES.md b/DEVNOTES.md
index bdfcb0c979..bd3fe17c2c 100644
--- a/DEVNOTES.md
+++ b/DEVNOTES.md
@@ -275,7 +275,11 @@ the docker image using `cli` parameter and connect to 
nodes using their names fr
 docker compose -f packaging/docker/docker-compose.yml up -d
 docker run -it --rm --net ignite3_default apacheignite/ignite3 cli
 > connect http://node1:10300
-> cluster init --name cluster --meta-storage-node node1 --meta-storage-node 
node2 --meta-storage-node node3
+> cluster init --name cluster --metastorage-group=node1,node2,node3
+```
+Node names could be obtained using following command:
+```shell
+> cluster topology physical
 ```
 
 ### How to launch multiple nodes on the same machine
@@ -389,8 +393,8 @@ To initialize a cluster run the following command inside 
Ignite CLI:
 ```shell
 cluster init 
   --name myClusterOfThreeNodes 
-  --cmg-node node1 --cmg-node node2 --cmg-node node3 
-  --meta-storage-node node1 --meta-storage-node node2 --meta-storage-node node3
+  --cluster-management-group=node1,node2,node3 
+  --metastorage-group=node1,node2,node3
 ```
 
 To stop all nodes:

Reply via email to