|
21 | 21 | import java.io.FileWriter;
|
22 | 22 | import java.io.PrintWriter;
|
23 | 23 | import java.net.URI;
|
| 24 | +import java.nio.file.Paths; |
24 | 25 | import java.util.List;
|
25 | 26 | import java.util.Map;
|
26 | 27 | import java.util.Set;
|
@@ -132,91 +133,93 @@ public void getLostServerListTest() throws Exception {
|
132 | 133 | CoordinatorConf coordinatorConf = new CoordinatorConf();
|
133 | 134 | // Shorten the heartbeat time
|
134 | 135 | coordinatorConf.setLong(CoordinatorConf.COORDINATOR_HEARTBEAT_TIMEOUT, 300L);
|
135 |
| - SimpleClusterManager clusterManager = |
136 |
| - new SimpleClusterManager(coordinatorConf, new Configuration()); |
137 |
| - ServerNode sn1 = new ServerNode("sn1", "ip", 0, 100L, 50L, 20, 10, grpcTags); |
138 |
| - ServerNode sn2 = new ServerNode("sn2", "ip", 0, 100L, 50L, 21, 10, grpcTags); |
139 |
| - ServerNode sn3 = new ServerNode("sn3", "ip", 0, 100L, 50L, 20, 11, grpcTags); |
140 |
| - clusterManager.add(sn1); |
141 |
| - clusterManager.add(sn2); |
142 |
| - clusterManager.add(sn3); |
143 |
| - Set<String> expectedIds = Sets.newHashSet("sn1", "sn2", "sn3"); |
144 |
| - await() |
145 |
| - .atMost(1, TimeUnit.SECONDS) |
146 |
| - .until( |
147 |
| - () -> { |
148 |
| - Set<String> lostServerList = |
149 |
| - clusterManager.getLostServerList().stream() |
150 |
| - .map(ServerNode::getId) |
151 |
| - .collect(Collectors.toSet()); |
152 |
| - return CollectionUtils.isEqualCollection(lostServerList, expectedIds); |
153 |
| - }); |
154 |
| - // re-register sn3 |
155 |
| - sn3 = new ServerNode("sn3", "ip", 0, 100L, 50L, 20, 11, grpcTags); |
156 |
| - clusterManager.add(sn3); |
157 |
| - Set<String> expectedIdsre = Sets.newHashSet("sn1", "sn2"); |
158 |
| - await() |
159 |
| - .atMost(1, TimeUnit.SECONDS) |
160 |
| - .until( |
161 |
| - () -> { |
162 |
| - // Retrieve listed ServerNode List |
163 |
| - Set<String> lostServerListre = |
164 |
| - clusterManager.getLostServerList().stream() |
165 |
| - .map(ServerNode::getId) |
166 |
| - .collect(Collectors.toSet()); |
167 |
| - return CollectionUtils.isEqualCollection(lostServerListre, expectedIdsre); |
168 |
| - }); |
| 136 | + try (SimpleClusterManager clusterManager = |
| 137 | + new SimpleClusterManager(coordinatorConf, new Configuration())) { |
| 138 | + ServerNode sn1 = new ServerNode("sn1", "ip", 0, 100L, 50L, 20, 10, grpcTags); |
| 139 | + ServerNode sn2 = new ServerNode("sn2", "ip", 0, 100L, 50L, 21, 10, grpcTags); |
| 140 | + ServerNode sn3 = new ServerNode("sn3", "ip", 0, 100L, 50L, 20, 11, grpcTags); |
| 141 | + clusterManager.add(sn1); |
| 142 | + clusterManager.add(sn2); |
| 143 | + clusterManager.add(sn3); |
| 144 | + Set<String> expectedIds = Sets.newHashSet("sn1", "sn2", "sn3"); |
| 145 | + await() |
| 146 | + .atMost(1, TimeUnit.SECONDS) |
| 147 | + .until( |
| 148 | + () -> { |
| 149 | + Set<String> lostServerList = |
| 150 | + clusterManager.getLostServerList().stream() |
| 151 | + .map(ServerNode::getId) |
| 152 | + .collect(Collectors.toSet()); |
| 153 | + return CollectionUtils.isEqualCollection(lostServerList, expectedIds); |
| 154 | + }); |
| 155 | + // re-register sn3 |
| 156 | + sn3 = new ServerNode("sn3", "ip", 0, 100L, 50L, 20, 11, grpcTags); |
| 157 | + clusterManager.add(sn3); |
| 158 | + Set<String> expectedIdsre = Sets.newHashSet("sn1", "sn2"); |
| 159 | + await() |
| 160 | + .atMost(1, TimeUnit.SECONDS) |
| 161 | + .until( |
| 162 | + () -> { |
| 163 | + // Retrieve listed ServerNode List |
| 164 | + Set<String> lostServerListre = |
| 165 | + clusterManager.getLostServerList().stream() |
| 166 | + .map(ServerNode::getId) |
| 167 | + .collect(Collectors.toSet()); |
| 168 | + return CollectionUtils.isEqualCollection(lostServerListre, expectedIdsre); |
| 169 | + }); |
| 170 | + } |
169 | 171 | }
|
170 | 172 |
|
171 | 173 | @Test
|
172 | 174 | public void getUnhealthyServerList() throws Exception {
|
173 | 175 | CoordinatorConf coordinatorConf = new CoordinatorConf();
|
174 | 176 | // Shorten the heartbeat time
|
175 | 177 | coordinatorConf.setLong(CoordinatorConf.COORDINATOR_HEARTBEAT_TIMEOUT, 300L);
|
176 |
| - SimpleClusterManager clusterManager = |
177 |
| - new SimpleClusterManager(coordinatorConf, new Configuration()); |
178 |
| - ServerNode sn1 = new ServerNode("sn1", "ip", 0, 100L, 50L, 20, 10, grpcTags); |
179 |
| - ServerNode sn2 = new ServerNode("sn2", "ip", 0, 100L, 50L, 21, 10, grpcTags); |
180 |
| - ServerNode sn3 = |
181 |
| - new ServerNode("sn3", "ip", 0, 100L, 50L, 20, 11, grpcTags, ServerStatus.UNHEALTHY); |
182 |
| - ServerNode sn4 = |
183 |
| - new ServerNode("sn4", "ip", 0, 100L, 50L, 20, 11, grpcTags, ServerStatus.UNHEALTHY); |
184 |
| - clusterManager.add(sn1); |
185 |
| - clusterManager.add(sn2); |
186 |
| - clusterManager.add(sn3); |
187 |
| - clusterManager.add(sn4); |
188 |
| - // Analog timeout registration |
189 |
| - Set<String> expectedIds = Sets.newHashSet("sn3", "sn4"); |
190 |
| - await() |
191 |
| - .atMost(1, TimeUnit.SECONDS) |
192 |
| - .until( |
193 |
| - () -> { |
194 |
| - Set<String> unhealthyServerList = |
195 |
| - clusterManager.getUnhealthyServerList().stream() |
196 |
| - .map(ServerNode::getId) |
197 |
| - .collect(Collectors.toSet()); |
198 |
| - return CollectionUtils.isEqualCollection(unhealthyServerList, expectedIds); |
199 |
| - }); |
200 |
| - // Register unhealthy node sn3 again |
201 |
| - sn3 = new ServerNode("sn3", "ip", 0, 100L, 50L, 20, 11, grpcTags, ServerStatus.UNHEALTHY); |
202 |
| - clusterManager.add(sn3); |
203 |
| - Set<String> expectedIdsre = Sets.newHashSet("sn3"); |
204 |
| - await() |
205 |
| - .atMost(1, TimeUnit.SECONDS) |
206 |
| - .until( |
207 |
| - () -> { |
208 |
| - Set<String> unhealthyServerListre = |
209 |
| - clusterManager.getUnhealthyServerList().stream() |
210 |
| - .map(ServerNode::getId) |
211 |
| - .collect(Collectors.toSet()); |
212 |
| - return CollectionUtils.isEqualCollection(unhealthyServerListre, expectedIdsre); |
213 |
| - }); |
214 |
| - // At this point verify that sn4 is in the lost list |
215 |
| - List<ServerNode> lostremoveunhealthy = clusterManager.getLostServerList(); |
216 |
| - Set<String> expectedIdlostremoveunhealthy = Sets.newHashSet("sn1", "sn2", "sn4"); |
217 |
| - assertEquals( |
218 |
| - expectedIdlostremoveunhealthy, |
219 |
| - lostremoveunhealthy.stream().map(ServerNode::getId).collect(Collectors.toSet())); |
| 178 | + try (SimpleClusterManager clusterManager = |
| 179 | + new SimpleClusterManager(coordinatorConf, new Configuration())) { |
| 180 | + ServerNode sn1 = new ServerNode("sn1", "ip", 0, 100L, 50L, 20, 10, grpcTags); |
| 181 | + ServerNode sn2 = new ServerNode("sn2", "ip", 0, 100L, 50L, 21, 10, grpcTags); |
| 182 | + ServerNode sn3 = |
| 183 | + new ServerNode("sn3", "ip", 0, 100L, 50L, 20, 11, grpcTags, ServerStatus.UNHEALTHY); |
| 184 | + ServerNode sn4 = |
| 185 | + new ServerNode("sn4", "ip", 0, 100L, 50L, 20, 11, grpcTags, ServerStatus.UNHEALTHY); |
| 186 | + clusterManager.add(sn1); |
| 187 | + clusterManager.add(sn2); |
| 188 | + clusterManager.add(sn3); |
| 189 | + clusterManager.add(sn4); |
| 190 | + // Analog timeout registration |
| 191 | + Set<String> expectedIds = Sets.newHashSet("sn3", "sn4"); |
| 192 | + await() |
| 193 | + .atMost(1, TimeUnit.SECONDS) |
| 194 | + .until( |
| 195 | + () -> { |
| 196 | + Set<String> unhealthyServerList = |
| 197 | + clusterManager.getUnhealthyServerList().stream() |
| 198 | + .map(ServerNode::getId) |
| 199 | + .collect(Collectors.toSet()); |
| 200 | + return CollectionUtils.isEqualCollection(unhealthyServerList, expectedIds); |
| 201 | + }); |
| 202 | + // Register unhealthy node sn3 again |
| 203 | + sn3 = new ServerNode("sn3", "ip", 0, 100L, 50L, 20, 11, grpcTags, ServerStatus.UNHEALTHY); |
| 204 | + clusterManager.add(sn3); |
| 205 | + Set<String> expectedIdsre = Sets.newHashSet("sn3"); |
| 206 | + await() |
| 207 | + .atMost(1, TimeUnit.SECONDS) |
| 208 | + .until( |
| 209 | + () -> { |
| 210 | + Set<String> unhealthyServerListre = |
| 211 | + clusterManager.getUnhealthyServerList().stream() |
| 212 | + .map(ServerNode::getId) |
| 213 | + .collect(Collectors.toSet()); |
| 214 | + return CollectionUtils.isEqualCollection(unhealthyServerListre, expectedIdsre); |
| 215 | + }); |
| 216 | + // At this point verify that sn4 is in the lost list |
| 217 | + List<ServerNode> lostremoveunhealthy = clusterManager.getLostServerList(); |
| 218 | + Set<String> expectedIdlostremoveunhealthy = Sets.newHashSet("sn1", "sn2", "sn4"); |
| 219 | + assertEquals( |
| 220 | + expectedIdlostremoveunhealthy, |
| 221 | + lostremoveunhealthy.stream().map(ServerNode::getId).collect(Collectors.toSet())); |
| 222 | + } |
220 | 223 | }
|
221 | 224 |
|
222 | 225 | @Test
|
@@ -423,11 +426,12 @@ public void testGetCorrectServerNodesWhenOneNodeRemoved() throws Exception {
|
423 | 426 | public void updateExcludeNodesTest() throws Exception {
|
424 | 427 | String excludeNodesFolder =
|
425 | 428 | (new File(ClassLoader.getSystemResource("empty").getFile())).getParent();
|
426 |
| - String excludeNodesPath = excludeNodesFolder + "/excludeNodes"; |
| 429 | + String excludeNodesPath = Paths.get(excludeNodesFolder, "excludeNodes").toString(); |
427 | 430 | CoordinatorConf ssc = new CoordinatorConf();
|
| 431 | + File excludeNodesFile = new File(excludeNodesPath); |
| 432 | + URI excludeNodesUri = excludeNodesFile.toURI(); |
428 | 433 | ssc.setString(
|
429 |
| - CoordinatorConf.COORDINATOR_EXCLUDE_NODES_FILE_PATH, |
430 |
| - URI.create(excludeNodesPath).toString()); |
| 434 | + CoordinatorConf.COORDINATOR_EXCLUDE_NODES_FILE_PATH, excludeNodesUri.toURL().toString()); |
431 | 435 | ssc.setLong(CoordinatorConf.COORDINATOR_EXCLUDE_NODES_CHECK_INTERVAL, 1000);
|
432 | 436 |
|
433 | 437 | try (SimpleClusterManager scm = new SimpleClusterManager(ssc, new Configuration())) {
|
@@ -492,11 +496,12 @@ public void updateExcludeNodesTest() throws Exception {
|
492 | 496 | public void excludeNodesNoDelayTest() throws Exception {
|
493 | 497 | String excludeNodesFolder =
|
494 | 498 | (new File(ClassLoader.getSystemResource("empty").getFile())).getParent();
|
495 |
| - String excludeNodesPath = excludeNodesFolder + "/excludeNodes"; |
| 499 | + String excludeNodesPath = Paths.get(excludeNodesFolder, "excludeNodes").toString(); |
496 | 500 | CoordinatorConf ssc = new CoordinatorConf();
|
| 501 | + File excludeNodesFile = new File(excludeNodesPath); |
| 502 | + URI excludeNodesUri = excludeNodesFile.toURI(); |
497 | 503 | ssc.setString(
|
498 |
| - CoordinatorConf.COORDINATOR_EXCLUDE_NODES_FILE_PATH, |
499 |
| - URI.create(excludeNodesPath).toString()); |
| 504 | + CoordinatorConf.COORDINATOR_EXCLUDE_NODES_FILE_PATH, excludeNodesUri.toURL().toString()); |
500 | 505 | ssc.setLong(CoordinatorConf.COORDINATOR_EXCLUDE_NODES_CHECK_INTERVAL, 5000);
|
501 | 506 |
|
502 | 507 | final Set<String> nodes = Sets.newHashSet("node1-1999", "node2-1999");
|
|
0 commit comments