Skip to content

Commit

Permalink
IGNITE-21001 Java Thin Client: Fixed stale client cluster group data …
Browse files Browse the repository at this point in the history
…after cluster restart. (#11173)
  • Loading branch information
petrov-mg committed Jan 18, 2024
1 parent ab4d60d commit 566b522
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ class ClientClusterGroupImpl implements ClientClusterGroup {
/** Projection filters. */
private final ProjectionFilters projectionFilters;

/** Client channel from which the cluster group nodes data was previously received. */
private ClientChannel topDataSrc;

/** Cached topology version. */
private long cachedTopVer;

Expand Down Expand Up @@ -304,7 +307,7 @@ private synchronized Collection<UUID> requestNodeIds() {
throw new ClientFeatureNotSupportedByServerException(ProtocolBitmaskFeature.CLUSTER_GROUPS);

try (BinaryRawWriterEx writer = utils.createBinaryWriter(req.out())) {
writer.writeLong(cachedTopVer);
writer.writeLong(topDataSrc == null || topDataSrc.closed() ? 0 : cachedTopVer);

projectionFilters.write(writer);
}
Expand All @@ -328,6 +331,8 @@ private synchronized Collection<UUID> requestNodeIds() {

cachedNodeIds = nodeIds;

topDataSrc = res.clientChannel();

return new ArrayList<>(nodeIds);
});
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/*
* 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.internal.client.thin;

import java.util.Arrays;
import java.util.Collections;
import java.util.stream.Collectors;
import org.apache.ignite.client.ClientClusterGroup;
import org.apache.ignite.client.IgniteClient;
import org.apache.ignite.configuration.IgniteConfiguration;
import org.junit.Test;

import static org.apache.ignite.internal.processors.cache.distributed.GridCacheModuloAffinityFunction.IDX_ATTR;

/** */
public class ClusterGroupClusterRestartTest extends AbstractThinClientTest {
/** {@inheritDoc} */
@Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception {
return super.getConfiguration(igniteInstanceName)
.setUserAttributes(Collections.singletonMap(IDX_ATTR, getTestIgniteInstanceIndex(igniteInstanceName)));
}

/** */
@Test
public void testGroupNodesAfterClusterRestart() throws Exception {
prepareCluster();

try (IgniteClient client = startClient(0, 1)) {
ClientClusterGroup dfltGrp = client.cluster();
ClientClusterGroup srvGrp = client.cluster().forServers();
ClientClusterGroup cliGrp = client.cluster().forClients();
ClientClusterGroup attrGrp = client.cluster().forAttribute(IDX_ATTR, 0);

assertContainsNodes(dfltGrp, 0, 1, 2);
assertContainsNodes(srvGrp, 0, 1);
assertContainsNodes(cliGrp, 2);
assertContainsNodes(attrGrp, 0);

stopAllGrids();

prepareCluster();

assertContainsNodes(dfltGrp, 0, 1, 2);
assertContainsNodes(srvGrp, 0, 1);
assertContainsNodes(cliGrp, 2);
assertContainsNodes(attrGrp, 0);
}
}

/** */
private void assertContainsNodes(ClientClusterGroup grp, int... nodeIdxs) {
assertTrue(grp.nodes().containsAll(Arrays.stream(nodeIdxs).mapToObj(idx -> grid(idx).localNode()).collect(Collectors.toList())));

for (int idx : nodeIdxs)
assertNotNull(grp.node(grid(idx).localNode().id()));
}

/** */
private void prepareCluster() throws Exception {
startGrids(2);
startClientGrid(2);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import org.apache.ignite.internal.client.thin.CacheAsyncTest;
import org.apache.ignite.internal.client.thin.CacheEntryListenersTest;
import org.apache.ignite.internal.client.thin.ClusterApiTest;
import org.apache.ignite.internal.client.thin.ClusterGroupClusterRestartTest;
import org.apache.ignite.internal.client.thin.ClusterGroupTest;
import org.apache.ignite.internal.client.thin.ComputeTaskTest;
import org.apache.ignite.internal.client.thin.DataReplicationOperationsTest;
Expand Down Expand Up @@ -90,6 +91,7 @@
ThinClientEnpointsDiscoveryTest.class,
InactiveClusterCacheRequestTest.class,
AffinityMetricsTest.class,
ClusterGroupClusterRestartTest.class
})
public class ClientTestSuite {
// No-op.
Expand Down

0 comments on commit 566b522

Please sign in to comment.