sashapolo commented on code in PR #5315:
URL: https://github.com/apache/ignite-3/pull/5315#discussion_r1984606446


##########
docs/_docs/administrators-guide/lifecycle.adoc:
##########
@@ -40,7 +40,15 @@ First, the nodes specified in the 
`--cluster-management-group` argument form a R
 
 image::images/lifecycle1.png[Cluster initialization]
 
-Then, the nodes specified in the `--metastorage-group` argument form a RAFT 
group and take the role of *metastorage group*. These nodes will hold the 
authoritative copy of cluster meta information.
+Then, the nodes specified in the `--metastorage-group` argument form a RAFT 
group and take the role of *metastorage group*. These nodes will hold the 
authoritative copy of cluster meta information. If `--metastorage-group` is not 
specified, the nodes are chosen automatically. The number of nodes is chosen 
automatically as follows:
+
+[source, javascript]
+----
+metastorage_group_size =
+    cluster_size <= 3 ? cluster_size // If up to 3 nodes, use all nodes for 
CMG and metastorage.
+    : cluster_size == 4 ? 3 // If 4 nodes, use 3 nodes to have an odd number 
of nodes for better split-brain protection.

Review Comment:
   I understand that, but what you described is not a split-brain scenario, you 
can't have it in Raft. Therefore I find the current wording confusing. 



##########
modules/runner/src/test/java/org/apache/ignite/InitParametersBuilderTest.java:
##########
@@ -0,0 +1,231 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.ignite;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertNull;
+import static org.junit.jupiter.api.Assertions.assertThrows;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+import java.util.List;
+import org.apache.ignite.internal.testframework.BaseIgniteAbstractTest;
+import org.junit.jupiter.api.Test;
+
+class InitParametersBuilderTest extends BaseIgniteAbstractTest {
+
+    @Test
+    void build_WithAllParametersSet_ReturnsExpectedInitParameters() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+        String clusterName = "TestCluster";
+        List<String> metaStorageNodes = List.of("Node1", "Node2");
+        List<String> cmgNodes = List.of("Node3", "Node4");
+        String clusterConfiguration = "{config: value}";
+
+        // Act
+        InitParameters result = builder
+                .metaStorageNodeNames(metaStorageNodes)
+                .cmgNodeNames(cmgNodes)
+                .clusterName(clusterName)
+                .clusterConfiguration(clusterConfiguration)
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertEquals(metaStorageNodes, result.metaStorageNodeNames());
+        assertEquals(cmgNodes, result.cmgNodeNames());
+        assertEquals(clusterName, result.clusterName());
+        assertEquals(clusterConfiguration, result.clusterConfiguration());
+    }
+
+    @Test
+    void build_WithoutClusterName_ThrowsIllegalStateException() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act & Assert
+        IllegalStateException exception = 
assertThrows(IllegalStateException.class, builder::build);
+        assertEquals("Cluster name is not set.", exception.getMessage());
+    }
+
+    @Test
+    void build_WithNullClusterName_ThrowsIllegalArgumentException() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act & Assert
+        //noinspection DataFlowIssue
+        IllegalArgumentException exception = 
assertThrows(IllegalArgumentException.class, () -> builder.clusterName(null));
+        assertEquals("Cluster name cannot be null or empty.", 
exception.getMessage());
+    }
+
+    @Test
+    void build_WithBlankClusterName_ThrowsIllegalArgumentException() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act & Assert
+        IllegalArgumentException exception = 
assertThrows(IllegalArgumentException.class, () -> builder.clusterName(" "));
+        assertEquals("Cluster name cannot be null or empty.", 
exception.getMessage());
+    }
+
+    @Test
+    void build_WithEmptyMetaStorageNodeNames_SetsEmptyList() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act
+        InitParameters result = builder
+                .metaStorageNodeNames()
+                .clusterName("TestCluster")
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertTrue(result.metaStorageNodeNames().isEmpty());
+    }
+
+    @Test
+    void build_WithEmptyCmgNodeNames_SetsEmptyList() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act
+        InitParameters result = builder
+                .cmgNodeNames()
+                .clusterName("TestCluster")
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertTrue(result.cmgNodeNames().isEmpty());
+    }
+
+    @Test
+    void build_WithNullMetaStorageNodeCollection_SetsEmptyList() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act
+        InitParameters result = builder
+                .metaStorageNodeNames((List<String>) null)
+                .clusterName("TestCluster")
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertTrue(result.metaStorageNodeNames().isEmpty());
+    }
+
+    @Test
+    void build_WithNullCmgNodeCollection_SetsEmptyList() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act
+        InitParameters result = builder
+                .cmgNodeNames((List<String>) null)
+                .clusterName("TestCluster")
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertTrue(result.cmgNodeNames().isEmpty());
+    }
+
+    @Test
+    void build_WithNullClusterConfiguration_SetsNull() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+        String clusterName = "TestCluster";
+
+        // Act
+        InitParameters result = builder
+                .clusterName(clusterName)
+                .clusterConfiguration(null)
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertNull(result.clusterConfiguration());
+    }
+
+    @Test
+    void build_WithIgniteServerMetaStorageNodes_ReturnsExpectedNames() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+        IgniteServer server1 = mock(IgniteServer.class);
+        IgniteServer server2 = mock(IgniteServer.class);
+
+        when(server1.name()).thenReturn("Node1");
+        when(server2.name()).thenReturn("Node2");
+
+        // Act
+        InitParameters result = builder
+                .metaStorageNodes(server1, server2)
+                .clusterName("TestCluster")
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertEquals(List.of("Node1", "Node2"), result.metaStorageNodeNames());
+    }
+
+    @Test
+    void build_WithIgniteServerCmgNodes_ReturnsExpectedNames() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+        IgniteServer server1 = mock(IgniteServer.class);
+        IgniteServer server2 = mock(IgniteServer.class);
+
+        when(server1.name()).thenReturn("Node3");
+        when(server2.name()).thenReturn("Node4");
+
+        // Act
+        InitParameters result = builder
+                .cmgNodes(server1, server2)
+                .clusterName("TestCluster")
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertEquals(List.of("Node3", "Node4"), result.cmgNodeNames());
+    }
+
+    @Test
+    void build_WithOnlyClusterName_SetsDefaults() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+        String clusterName = "TestCluster";
+
+        // Act
+        InitParameters result = builder
+                .clusterName(clusterName)
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertEquals(clusterName, result.clusterName());
+        assertTrue(result.metaStorageNodeNames().isEmpty(), "Meta storage node 
names should be empty by default.");
+        assertTrue(result.cmgNodeNames().isEmpty(), "CMG node names should be 
empty by default.");
+        assertNull(result.clusterConfiguration(), "Cluster configuration 
should be null by default.");
+    }
+}

Review Comment:
   I don't know for sure, but at least github shows this weird sign and all 
other files have line breaks, so...



##########
modules/runner/src/main/java/org/apache/ignite/InitParametersBuilder.java:
##########
@@ -71,11 +70,9 @@ public InitParametersBuilder 
metaStorageNodeNames(Collection<String> metaStorage
      * @return {@code this} for chaining.
      */
     public InitParametersBuilder metaStorageNodes(IgniteServer... 
metaStorageNodes) {
-        if (metaStorageNodes == null) {
-            throw new IllegalArgumentException("Meta storage nodes cannot be 
null.");
-        }
-        if (metaStorageNodes.length == 0) {
-            throw new IllegalArgumentException("Meta storage nodes cannot be 
empty.");
+        if (metaStorageNodes == null || metaStorageNodes.length == 0) {

Review Comment:
   The question was: why would you need to check this condition instead of 
throwing an exception in the corresponding setter method. But I think you have 
answered my question below (about some automatic tool parsing stuff)



##########
modules/runner/src/test/java/org/apache/ignite/InitParametersBuilderTest.java:
##########
@@ -0,0 +1,231 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.ignite;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertNull;
+import static org.junit.jupiter.api.Assertions.assertThrows;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+import java.util.List;
+import org.apache.ignite.internal.testframework.BaseIgniteAbstractTest;
+import org.junit.jupiter.api.Test;
+
+class InitParametersBuilderTest extends BaseIgniteAbstractTest {
+
+    @Test
+    void build_WithAllParametersSet_ReturnsExpectedInitParameters() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+        String clusterName = "TestCluster";
+        List<String> metaStorageNodes = List.of("Node1", "Node2");
+        List<String> cmgNodes = List.of("Node3", "Node4");
+        String clusterConfiguration = "{config: value}";
+
+        // Act
+        InitParameters result = builder
+                .metaStorageNodeNames(metaStorageNodes)
+                .cmgNodeNames(cmgNodes)
+                .clusterName(clusterName)
+                .clusterConfiguration(clusterConfiguration)
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertEquals(metaStorageNodes, result.metaStorageNodeNames());
+        assertEquals(cmgNodes, result.cmgNodeNames());
+        assertEquals(clusterName, result.clusterName());
+        assertEquals(clusterConfiguration, result.clusterConfiguration());
+    }
+
+    @Test
+    void build_WithoutClusterName_ThrowsIllegalStateException() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act & Assert
+        IllegalStateException exception = 
assertThrows(IllegalStateException.class, builder::build);
+        assertEquals("Cluster name is not set.", exception.getMessage());
+    }
+
+    @Test
+    void build_WithNullClusterName_ThrowsIllegalArgumentException() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act & Assert
+        //noinspection DataFlowIssue
+        IllegalArgumentException exception = 
assertThrows(IllegalArgumentException.class, () -> builder.clusterName(null));
+        assertEquals("Cluster name cannot be null or empty.", 
exception.getMessage());
+    }
+
+    @Test
+    void build_WithBlankClusterName_ThrowsIllegalArgumentException() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act & Assert
+        IllegalArgumentException exception = 
assertThrows(IllegalArgumentException.class, () -> builder.clusterName(" "));
+        assertEquals("Cluster name cannot be null or empty.", 
exception.getMessage());
+    }
+
+    @Test
+    void build_WithEmptyMetaStorageNodeNames_SetsEmptyList() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act
+        InitParameters result = builder
+                .metaStorageNodeNames()
+                .clusterName("TestCluster")
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertTrue(result.metaStorageNodeNames().isEmpty());
+    }
+
+    @Test
+    void build_WithEmptyCmgNodeNames_SetsEmptyList() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act
+        InitParameters result = builder
+                .cmgNodeNames()
+                .clusterName("TestCluster")
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertTrue(result.cmgNodeNames().isEmpty());
+    }
+
+    @Test
+    void build_WithNullMetaStorageNodeCollection_SetsEmptyList() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act
+        InitParameters result = builder
+                .metaStorageNodeNames((List<String>) null)
+                .clusterName("TestCluster")
+                .build();
+
+        // Assert
+        assertNotNull(result);
+        assertTrue(result.metaStorageNodeNames().isEmpty());
+    }
+
+    @Test
+    void build_WithNullCmgNodeCollection_SetsEmptyList() {
+        // Arrange
+        InitParametersBuilder builder = new InitParametersBuilder();
+
+        // Act
+        InitParameters result = builder
+                .cmgNodeNames((List<String>) null)

Review Comment:
   okay, makes sense



##########
modules/cli/src/main/java/org/apache/ignite/internal/cli/call/cluster/ClusterInitCallInput.java:
##########
@@ -35,8 +35,8 @@ public class ClusterInitCallInput implements CallInput {
 
     private ClusterInitCallInput(
             String clusterUrl,
-            List<String> metaStorageNodes,
-            List<String> cmgNodes,
+            @Nullable List<String> metaStorageNodes,

Review Comment:
   this is a private constructor, so it makes sense to have some defaults in 
case the user has not specified anything. I don't like that we use two ways to 
describe the same semantics. So I would propose to have this dichotomy only at 
the very top and use empty collections as default everywhere else. This will 
make the code simpler



##########
modules/runner/src/main/java/org/apache/ignite/InitParameters.java:
##########
@@ -45,17 +46,15 @@ public class InitParameters {
      * @param clusterConfiguration Cluster configuration.
      */
     InitParameters(
-            Collection<String> metaStorageNodeNames,
-            Collection<String> cmgNodeNames,
+            @Nullable Collection<String> metaStorageNodeNames,

Review Comment:
   Just common sense and general good practice



##########
modules/runner/src/main/java/org/apache/ignite/InitParametersBuilder.java:
##########
@@ -186,21 +173,13 @@ public InitParametersBuilder clusterName(String 
clusterName) {
      * @param clusterConfiguration Cluster configuration.
      * @return {@code this} for chaining.
      */
-    public InitParametersBuilder clusterConfiguration(String 
clusterConfiguration) {
+    public InitParametersBuilder clusterConfiguration(@Nullable String 
clusterConfiguration) {

Review Comment:
   We need `@Nullable` annotation for the static analysis. I don't think it's a 
good idea to change the production code only because of tests. Now I read this 
code and will have to think why this configuration can be `null` and what does 
it mean. If `null` is only used in tests, I would propose to either simply 
ignore the IDEA's warning or fix the tests to use some sensible values.



##########
modules/cluster-management/src/test/java/org/apache/ignite/internal/cluster/management/ClusterInitializerTest.java:
##########
@@ -112,6 +118,59 @@ void testNormalInit() {
         assertThat(initFuture, willBe(nullValue(Void.class)));
     }
 
+    @ParameterizedTest
+    @ValueSource(ints = {1, 2, 3, 4, 5, 9})  // Runs the test with 1 to 10 
nodes
+    void testInitEmptyMsCmgNodes(int numNodes) {
+        // Create a list of nodes dynamically
+        List<ClusterNode> allNodes = IntStream.rangeClosed(1, numNodes)
+                .mapToObj(i -> (ClusterNode) new ClusterNodeImpl(
+                        randomUUID(),
+                        "node" + i,
+                        new NetworkAddress("foo" + i, 1230 + i)))
+                .collect(Collectors.toList());
+
+        // Mock topology service behavior
+        for (var node : allNodes) {
+            
when(topologyService.getByConsistentId(node.name())).thenReturn(node);
+        }
+        when(topologyService.allMembers()).thenReturn(allNodes);
+
+        when(messagingService.invoke(any(ClusterNode.class), 
any(CmgInitMessage.class), anyLong()))
+                .thenReturn(initCompleteMessage());
+
+        // Initialize cluster
+        CompletableFuture<Void> initFuture = clusterInitializer.initCluster(
+                List.of(),
+                List.of(),
+                "cluster"
+        );
+
+        // Convert node names to a set for validation
+        var cmgNodeNameSet = allNodes.stream().map(ClusterNode::name).sorted()

Review Comment:
   We haven't yet automated this, unfortunately



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to