org.elasticsearch.transport.TransportSettings 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.transport;
import org.elasticsearch.common.network.NetworkService;
import org.elasticsearch.common.settings.Setting;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.unit.ByteSizeValue;
import org.elasticsearch.core.TimeValue;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.TimeUnit;
import java.util.function.Function;
import static java.util.Collections.emptyList;
import static org.elasticsearch.common.settings.Setting.affixKeySetting;
import static org.elasticsearch.common.settings.Setting.boolSetting;
import static org.elasticsearch.common.settings.Setting.enumSetting;
import static org.elasticsearch.common.settings.Setting.intSetting;
import static org.elasticsearch.common.settings.Setting.listSetting;
import static org.elasticsearch.common.settings.Setting.timeSetting;
public final class TransportSettings {
public static final String DEFAULT_PROFILE = "default";
public static final String FEATURE_PREFIX = "transport.features";
public static final Setting> HOST = listSetting(
"transport.host",
emptyList(),
Function.identity(),
Setting.Property.NodeScope
);
public static final Setting> PUBLISH_HOST = listSetting(
"transport.publish_host",
HOST,
Function.identity(),
Setting.Property.NodeScope
);
public static final Setting.AffixSetting> PUBLISH_HOST_PROFILE = affixKeySetting(
"transport.profiles.",
"publish_host",
key -> listSetting(key, PUBLISH_HOST, Function.identity(), Setting.Property.NodeScope)
);
public static final Setting> BIND_HOST = listSetting(
"transport.bind_host",
HOST,
Function.identity(),
Setting.Property.NodeScope
);
public static final Setting.AffixSetting> BIND_HOST_PROFILE = affixKeySetting(
"transport.profiles.",
"bind_host",
key -> listSetting(key, BIND_HOST, Function.identity(), Setting.Property.NodeScope)
);
public static final Setting PORT = new Setting<>(
"transport.port",
"9300-9399",
Function.identity(),
Setting.Property.NodeScope
);
public static final Setting.AffixSetting PORT_PROFILE = affixKeySetting(
"transport.profiles.",
"port",
key -> new Setting<>(key, PORT, Function.identity(), Setting.Property.NodeScope)
);
public static final Setting PUBLISH_PORT = intSetting("transport.publish_port", -1, -1, Setting.Property.NodeScope);
public static final Setting.AffixSetting PUBLISH_PORT_PROFILE = affixKeySetting(
"transport.profiles.",
"publish_port",
key -> intSetting(key, -1, -1, Setting.Property.NodeScope)
);
public static final Setting TRANSPORT_COMPRESS = enumSetting(
Compression.Enabled.class,
"transport.compress",
Compression.Enabled.INDEXING_DATA,
Setting.Property.NodeScope
);
public static final Setting TRANSPORT_COMPRESSION_SCHEME = enumSetting(
Compression.Scheme.class,
"transport.compression_scheme",
Compression.Scheme.LZ4,
Setting.Property.NodeScope
);
// the scheduled internal ping interval setting, defaults to disabled (-1)
public static final Setting PING_SCHEDULE = timeSetting(
"transport.ping_schedule",
TimeValue.timeValueSeconds(-1),
Setting.Property.NodeScope
);
public static final Setting CONNECT_TIMEOUT = timeSetting(
"transport.connect_timeout",
new TimeValue(30, TimeUnit.SECONDS),
Setting.Property.NodeScope
);
public static final Setting DEFAULT_FEATURES_SETTING = Setting.groupSetting(FEATURE_PREFIX + ".", Setting.Property.NodeScope);
// Tcp socket settings
public static final Setting TCP_NO_DELAY = boolSetting(
"transport.tcp.no_delay",
NetworkService.TCP_NO_DELAY,
Setting.Property.NodeScope
);
public static final Setting.AffixSetting TCP_NO_DELAY_PROFILE = affixKeySetting(
"transport.profiles.",
"tcp.no_delay",
key -> boolSetting(key, TCP_NO_DELAY, Setting.Property.NodeScope)
);
public static final Setting TCP_KEEP_ALIVE = boolSetting(
"transport.tcp.keep_alive",
NetworkService.TCP_KEEP_ALIVE,
Setting.Property.NodeScope
);
public static final Setting.AffixSetting TCP_KEEP_ALIVE_PROFILE = affixKeySetting(
"transport.profiles.",
"tcp.keep_alive",
key -> boolSetting(key, TCP_KEEP_ALIVE, Setting.Property.NodeScope)
);
public static final Setting TCP_KEEP_IDLE = intSetting(
"transport.tcp.keep_idle",
NetworkService.TCP_KEEP_IDLE,
-1,
300,
Setting.Property.NodeScope
);
public static final Setting.AffixSetting TCP_KEEP_IDLE_PROFILE = affixKeySetting(
"transport.profiles.",
"tcp.keep_idle",
key -> intSetting(key, TCP_KEEP_IDLE, -1, 300, Setting.Property.NodeScope)
);
public static final Setting TCP_KEEP_INTERVAL = intSetting(
"transport.tcp.keep_interval",
NetworkService.TCP_KEEP_INTERVAL,
-1,
300,
Setting.Property.NodeScope
);
public static final Setting.AffixSetting TCP_KEEP_INTERVAL_PROFILE = affixKeySetting(
"transport.profiles.",
"tcp.keep_interval",
key -> intSetting(key, TCP_KEEP_INTERVAL, -1, 300, Setting.Property.NodeScope)
);
public static final Setting TCP_KEEP_COUNT = intSetting(
"transport.tcp.keep_count",
NetworkService.TCP_KEEP_COUNT,
-1,
Setting.Property.NodeScope
);
public static final Setting.AffixSetting TCP_KEEP_COUNT_PROFILE = affixKeySetting(
"transport.profiles.",
"tcp.keep_count",
key -> intSetting(key, TCP_KEEP_COUNT, -1, Setting.Property.NodeScope)
);
public static final Setting TCP_REUSE_ADDRESS = boolSetting(
"transport.tcp.reuse_address",
NetworkService.TCP_REUSE_ADDRESS,
Setting.Property.NodeScope
);
public static final Setting.AffixSetting TCP_REUSE_ADDRESS_PROFILE = affixKeySetting(
"transport.profiles.",
"tcp.reuse_address",
key -> boolSetting(key, TCP_REUSE_ADDRESS, Setting.Property.NodeScope)
);
public static final Setting TCP_SEND_BUFFER_SIZE = Setting.byteSizeSetting(
"transport.tcp.send_buffer_size",
NetworkService.TCP_SEND_BUFFER_SIZE,
Setting.Property.NodeScope
);
public static final Setting.AffixSetting TCP_SEND_BUFFER_SIZE_PROFILE = affixKeySetting(
"transport.profiles.",
"tcp.send_buffer_size",
key -> Setting.byteSizeSetting(key, TCP_SEND_BUFFER_SIZE, Setting.Property.NodeScope)
);
public static final Setting TCP_RECEIVE_BUFFER_SIZE = Setting.byteSizeSetting(
"transport.tcp.receive_buffer_size",
NetworkService.TCP_RECEIVE_BUFFER_SIZE,
Setting.Property.NodeScope
);
public static final Setting.AffixSetting TCP_RECEIVE_BUFFER_SIZE_PROFILE = affixKeySetting(
"transport.profiles.",
"tcp.receive_buffer_size",
key -> Setting.byteSizeSetting(key, TCP_RECEIVE_BUFFER_SIZE, Setting.Property.NodeScope)
);
// Connections per node settings
public static final Setting CONNECTIONS_PER_NODE_RECOVERY = intSetting(
"transport.connections_per_node.recovery",
2,
1,
Setting.Property.NodeScope
);
public static final Setting CONNECTIONS_PER_NODE_BULK = intSetting(
"transport.connections_per_node.bulk",
3,
1,
Setting.Property.NodeScope
);
public static final Setting CONNECTIONS_PER_NODE_REG = intSetting(
"transport.connections_per_node.reg",
6,
1,
Setting.Property.NodeScope
);
public static final Setting CONNECTIONS_PER_NODE_STATE = intSetting(
"transport.connections_per_node.state",
1,
1,
Setting.Property.NodeScope
);
public static final Setting CONNECTIONS_PER_NODE_PING = intSetting(
"transport.connections_per_node.ping",
1,
1,
Setting.Property.NodeScope
);
// Tracer settings
public static final Setting> TRACE_LOG_INCLUDE_SETTING = listSetting(
"transport.tracer.include",
emptyList(),
Function.identity(),
Setting.Property.Dynamic,
Setting.Property.NodeScope
);
public static final Setting> TRACE_LOG_EXCLUDE_SETTING = listSetting(
"transport.tracer.exclude",
Arrays.asList("internal:coordination/fault_detection/*"),
Function.identity(),
Setting.Property.Dynamic,
Setting.Property.NodeScope
);
// Time that processing an inbound message on a transport thread may take at the most before a warning is logged
public static final Setting SLOW_OPERATION_THRESHOLD_SETTING = Setting.positiveTimeSetting(
"transport.slow_operation_logging_threshold",
TimeValue.timeValueSeconds(5),
Setting.Property.Dynamic,
Setting.Property.NodeScope
);
// only used in tests: RST connections when closing to avoid actively closing sockets to end up in time_wait in tests
public static final Setting RST_ON_CLOSE = boolSetting("transport.rst_on_close", false, Setting.Property.NodeScope);
private TransportSettings() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy