-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use file-based discovery not MockUncasedHostsProvider (#33554)
Today we use a special unicast hosts provider, the `MockUncasedHostsProvider`, in many integration tests, to deal with the dynamic nature of the allocation of ports to nodes. However #33241 allows us to use file-based discovery to achieve the same goal, so the special test-only `MockUncasedHostsProvider` is no longer required. This change removes `MockUncasedHostProvider` and replaces it with file-based discovery in tests based on `EsIntegTestCase`.
- Loading branch information
1 parent
94f6d45
commit 5a3fd8e
Showing
10 changed files
with
178 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
server/src/test/java/org/elasticsearch/discovery/zen/SettingsBasedHostProviderIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch 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.elasticsearch.discovery.zen; | ||
|
||
import org.elasticsearch.action.admin.cluster.node.info.NodesInfoRequest; | ||
import org.elasticsearch.action.admin.cluster.node.info.NodesInfoResponse; | ||
import org.elasticsearch.common.settings.Settings; | ||
import org.elasticsearch.test.ESIntegTestCase; | ||
|
||
import static org.elasticsearch.discovery.DiscoveryModule.DISCOVERY_HOSTS_PROVIDER_SETTING; | ||
import static org.elasticsearch.discovery.zen.SettingsBasedHostsProvider.DISCOVERY_ZEN_PING_UNICAST_HOSTS_SETTING; | ||
import static org.elasticsearch.discovery.zen.SettingsBasedHostsProvider.LIMIT_LOCAL_PORTS_COUNT; | ||
import static org.elasticsearch.transport.TcpTransport.PORT; | ||
|
||
@ESIntegTestCase.ClusterScope(scope = ESIntegTestCase.Scope.TEST, numDataNodes = 0, numClientNodes = 0) | ||
public class SettingsBasedHostProviderIT extends ESIntegTestCase { | ||
|
||
@Override | ||
protected Settings nodeSettings(int nodeOrdinal) { | ||
Settings.Builder builder = Settings.builder().put(super.nodeSettings(nodeOrdinal)); | ||
|
||
// super.nodeSettings enables file-based discovery, but here we disable it again so we can test the static list: | ||
if (randomBoolean()) { | ||
builder.putList(DISCOVERY_HOSTS_PROVIDER_SETTING.getKey()); | ||
} else { | ||
builder.remove(DISCOVERY_HOSTS_PROVIDER_SETTING.getKey()); | ||
} | ||
|
||
// super.nodeSettings sets this to an empty list, which disables any search for other nodes, but here we want this to happen: | ||
builder.remove(DISCOVERY_ZEN_PING_UNICAST_HOSTS_SETTING.getKey()); | ||
|
||
return builder.build(); | ||
} | ||
|
||
public void testClusterFormsWithSingleSeedHostInSettings() { | ||
final String seedNodeName = internalCluster().startNode(); | ||
final NodesInfoResponse nodesInfoResponse | ||
= client(seedNodeName).admin().cluster().nodesInfo(new NodesInfoRequest("_local")).actionGet(); | ||
final String seedNodeAddress = nodesInfoResponse.getNodes().get(0).getTransport().getAddress().publishAddress().toString(); | ||
logger.info("--> using seed node address {}", seedNodeAddress); | ||
|
||
int extraNodes = randomIntBetween(1, 5); | ||
internalCluster().startNodes(extraNodes, | ||
Settings.builder().putList(DISCOVERY_ZEN_PING_UNICAST_HOSTS_SETTING.getKey(), seedNodeAddress).build()); | ||
|
||
ensureStableCluster(extraNodes + 1); | ||
} | ||
|
||
public void testClusterFormsByScanningPorts() { | ||
// This test will fail if all 4 ports just less than the one used by the first node are already bound by something else. It's hard | ||
// to know how often this might happen in reality, so let's try it and see. | ||
|
||
final String seedNodeName = internalCluster().startNode(); | ||
final NodesInfoResponse nodesInfoResponse | ||
= client(seedNodeName).admin().cluster().nodesInfo(new NodesInfoRequest("_local")).actionGet(); | ||
final int seedNodePort = nodesInfoResponse.getNodes().get(0).getTransport().getAddress().publishAddress().getPort(); | ||
final int minPort = randomIntBetween(seedNodePort - LIMIT_LOCAL_PORTS_COUNT + 1, seedNodePort - 1); | ||
final String portSpec = minPort + "-" + seedNodePort; | ||
|
||
logger.info("--> using port specification [{}]", portSpec); | ||
internalCluster().startNode(Settings.builder().put(PORT.getKey(), portSpec)); | ||
ensureStableCluster(2); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.