org.elasticsearch.discovery.SettingsBasedSeedHostsProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch Show documentation
Show all versions of elasticsearch Show documentation
Elasticsearch - Open Source, Distributed, RESTful Search Engine
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.discovery;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.elasticsearch.common.settings.Setting;
import org.elasticsearch.common.settings.Setting.Property;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.transport.TransportAddress;
import org.elasticsearch.transport.TransportService;
import java.util.List;
/**
* An implementation of {@link SeedHostsProvider} that reads hosts/ports
* from the "discovery.seed_hosts" node setting. If the port is
* left off an entry, we default to the first port in the {@code transport.port} range.
*
* An example setting might look as follows:
* [67.81.244.10, 67.81.244.11:9305, 67.81.244.15:9400]
*/
public class SettingsBasedSeedHostsProvider implements SeedHostsProvider {
private static final Logger logger = LogManager.getLogger(SettingsBasedSeedHostsProvider.class);
public static final Setting> DISCOVERY_SEED_HOSTS_SETTING = Setting.stringListSetting(
"discovery.seed_hosts",
Property.NodeScope
);
private final List configuredHosts;
public SettingsBasedSeedHostsProvider(Settings settings, TransportService transportService) {
if (DISCOVERY_SEED_HOSTS_SETTING.exists(settings)) {
configuredHosts = DISCOVERY_SEED_HOSTS_SETTING.get(settings);
} else {
// if unicast hosts are not specified, fill with simple defaults on the local machine
configuredHosts = transportService.getDefaultSeedAddresses();
}
logger.debug("using initial hosts {}", configuredHosts);
}
@Override
public List getSeedAddresses(HostsResolver hostsResolver) {
return hostsResolver.resolveHosts(configuredHosts);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy