ptupitsyn commented on code in PR #10110:
URL: https://github.com/apache/ignite/pull/10110#discussion_r908191759
##########
modules/kubernetes/src/test/java/org/apache/ignite/kubernetes/discovery/TestClusterClientConnection.java:
##########
@@ -49,4 +49,44 @@ public void testClientConnectsToCluster() throws Exception {
cache.put(1, 2);
assertEquals(2, cache.get(1));
}
+
+ @Test
+ public void testClientReConnectsToClusterAfterPodIpChange() throws
Exception {
+ mockServerResponse();
+
+ IgniteConfiguration cfg =
getConfiguration(getTestIgniteInstanceName(), false);
+
+ IgniteEx crd = startGrid(cfg);
+ String crdAddr = crd.localNode().addresses().iterator().next();
+
+ mockServerResponse(crdAddr);
+
+ ClientConfiguration ccfg = new ClientConfiguration();
+ ccfg.setAddressesFinder(new
ThinClientKubernetesAddressFinder(prepareConfiguration()));
+ IgniteClient client = Ignition.startClient(ccfg);
+
+ ClientCache cache = client.createCache("cache");
+ cache.put(1, 2);
+ assertEquals(2, cache.get(1));
+
+ //stop node and change port still can connect
+ Ignition.stop(crd.name(), true);
+ int newPort = 10801;
+ ccfg.setAddressesFinder(new
ThinClientKubernetesAddressFinder(prepareConfiguration(),newPort));
+ mockServerResponse(5,crdAddr);
+
+ cfg = getConfiguration(getTestIgniteInstanceName(), false);
+ cfg.setSqlConnectorConfiguration(new
SqlConnectorConfiguration().setPort(newPort));
Review Comment:
Not sure I understand the problem. Replacing `setSqlConnectorConfiguration`
with `setClientConnectorConfiguration` seems to work, the test passes. I've
pushed the change to you branch, please review.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]