Defined Type: opensearch::instance
- Defined in:
- modules/opensearch/manifests/instance.pp
Overview
SPDX-License-Identifier: Apache-2.0
Define: opensearch::instance
This class installs/configures/manages the opensearch service.
Parameters:
-
$cluster_name: name of the cluster for this opensearch instance to join
never name your cluster "opensearch" because that is the default and you don't want servers without any configuration to join your cluster.
-
$version: Version of opensearch to install and configure.
-
$http_port: Port for opensearch to live on. Default: 9200
-
$transport_tcp_port: Port used for inter-node transport. Default: 9300
-
$node_name: Node name exposed within opensearch
Default: ${::hostname}-${title}
-
$base_data_dir: Where opensearch stores its data. Must be unique per-cluster.
Default: /srv/opensearch
-
$send_logs_to_logstash: When true logs are send to logstash. $logstash_host
must also be provided. Default: true.
-
$logstash_host: host to which logs will be sent. If `undef` no logs will be shipped.
-
$logstash_logback_port: Port on localhost accepting logs from log4j.
-
$heap_memory: amount of memory to allocate to opensearch. Defaults to
"2G". Should be set to about half of ram or a 30G, whichever is smaller.
-
$plugins_dir: value for path.plugins. Defaults to /srv/deployment/opensearch/plugins.
-
$plugins_mandatory: list of mandatory plugins. Defaults to undef.
-
$minimum_master_nodes: how many master nodes must be online for this node
to believe that the OpenSearch cluster is functioning correctly. Defaults to 1. Should be set to number of master eligible nodes in cluster / 2 + 1.
-
$holds_data: should this node hold data? Defaults to true.
-
$auto_create_index: should the cluster automatically create new indices?
Defaults to false.
-
$expected_nodes: after a full cluster restart the cluster will immediately
start after this many nodes rejoin. Defaults to 1 but shouldn't stay that way in production. Should be set to the number of nodes in the cluster.
-
$recover_after_nodes: after a full cluster restart once this many nodes
join the cluster it will wait $recover_after_time for this for $expected_nodes to join. If they don't it'll start anyway. Defaults to 1 but shouldn't stay that way in production. Set this to however many nodes would allow the cluster to limp along and continue working. Note that if the cluster does come up without all the nodes it'll have to create new replicas which is inefficient if the other node does come back.
-
$recover_after_time: see $recover_after_nodes. Defaults to a minute
because that feels like a decent amount of time to wait for the remaining nodes to catch up.
-
$awareness_attributes: attributes used for allocation awareness, comma
separated. Defaults to undef meaning none.
-
$row: row this node is on. Can be used for allocation awareness. Defaults
to undef meaning don't set it.
-
$rack: rack this node is on. Can be used for allocation awareness.
Defaults to undef meaning don't set it.
-
$unicast_hosts: hosts to seed OpenSearch's unicast discovery mechanism.
All master nodes must be listed here.
-
$bind_networks: networks to bind (both transport and http connectors)
see https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-network.html#network-interface-values
-
$publish_host: host to publish (both transport and http connectors)
see https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-network.html
-
$filter_cache_size: size of the filter cache. See
www.elasticsearch.org/guide/en/elasticsearch/reference/current/index-modules-cache.html for possible values. Default is 10% like the OpenSearch default.
-
$bulk_thread_pool_executors: number of executors for bulk actions on each
node.
-
$bulk_thread_pool_capacity: queue depth for bulk actions of each node.
-
$load_fixed_bitset_filters_eagerly: set to false to disable loading
bitsets in memory when opening indices will slowdown queries but can significantly reduce heap usage.
-
$gc_log: set to true to activate garbage collection logs
Default: true
-
$search_shard_count_limit: Maximum number of indices that can be
queried in a single search request. Default: 1000.
-
$reindex_remote_whitelist: set to a comma delimited list of allowed remote
host and port combinations (e.g. otherhost:9243, another:9243, 127.0.10.*:9243, localhost:*). Scheme is ignored by the whitelist - only host and port are used. Defaults to undef, which means no remote reindex can occur.
-
$script_max_compilations_per_minute: integer, max number of script
compilations per minute, defaults to undef (see T171579). (Deprecated) TODO: Remove
-
$ltr_cache_size: string, Size of memory cache for LTR plugin.
-
$curator_uses_unicast_hosts: should curator try to connect to hosts
configured for unicast discovery or only to localhost. Curator configuration allows to configure multiple hosts instead of just localhost, which make sense for robustness. In some cases, we do not want the API exposed outside of localhost, so using just localhost is useful in those cases. Default: true (use all hosts defined in unicast_hosts)
-
$tune_gc_new_size_ratio: Tune the GC to set a ratio between young and
old gen sizes. For example, a value of '3' means that the size of the old generation will be 3 times the young generation. Depending on the workload of your application it might be better to have a bigger old gen (to avoid for example expensive and frequent full GC runs) or a bigger young gen (for example if the majority of objects created are short term or temporary).
-
$disktype: The type of physical storage backing this OpenSearch instance to be
used for index routing allocation. e.g. 'ssd', 'hdd'
-
$compatibility_mode: Changes the running version reported by the cluster
to 7 to bypass ES client compatibility checks. NOTE: This change is only available in OpenSearch 1.0.x and is only to aid in migrating from an ES 7.10 cluster
-
$disable_security_plugin: Disables the security plugin. Warning: This will set an
invalid option if the security plugin is not installed. Default false.
Sample usage:
class { "opensearch":
cluster_name = 'labs-search'
}
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 |
# File 'modules/opensearch/manifests/instance.pp', line 110
define opensearch::instance(
# the following parameters are injected by the main opensearch class
String $cluster_name,
String $version,
Stdlib::Port $http_port,
Stdlib::Port $transport_tcp_port,
Stdlib::Absolutepath $base_data_dir,
String $short_cluster_name,
Optional[String] $logstash_host = undef,
Optional[Stdlib::Port] $logstash_logback_port = 11514,
Optional[String] $row = undef,
Optional[String] $rack = undef,
# the following parameters have defaults that are sane both for single
# and multi-instances
String $node_name = "${::hostname}-${cluster_name}",
Boolean $send_logs_to_logstash = true,
String $heap_memory = '2G',
Stdlib::AbsolutePath $plugins_dir = '/usr/share/opensearch/plugins',
Optional[Array[String]] $plugins_mandatory = undef,
Integer $minimum_master_nodes = 1,
Boolean $holds_data = true,
Variant[Boolean, String] $auto_create_index = false,
Integer $expected_nodes = 1,
Integer $recover_after_nodes = 1,
String $recover_after_time = '1s',
Optional[String] $awareness_attributes = undef,
Array[String] $unicast_hosts = [],
Array[String] $bind_networks = ['_local_', '_site_'],
String $publish_host = $facts['ipaddress'],
String $filter_cache_size = '10%',
Optional[Integer] $bulk_thread_pool_executors = undef,
Optional[Integer] $bulk_thread_pool_capacity = undef,
Boolean $load_fixed_bitset_filters_eagerly = true,
Boolean $gc_log = true,
Integer $search_shard_count_limit = 1000,
Optional[String] $reindex_remote_whitelist = undef,
Optional[Integer[0]] $script_max_compilations_per_minute = undef,
Optional[String] $ltr_cache_size = undef,
Boolean $curator_uses_unicast_hosts = true,
Optional[Integer] $tune_gc_new_size_ratio = undef,
Optional[Enum['ssd','hdd']] $disktype = undef,
Boolean $use_cms_gc = false,
Integer $cms_gc_init_occupancy_fraction = 75,
Hash $watermarks = {},
# Dummy parameters consumed upstream of opensearch::instance,
# but convenient to unify per-cluster configuration
Optional[String] $certificate_name = undef,
Array[String] $cluster_hosts = [],
Optional[Stdlib::Port] $tls_port = undef,
Optional[Stdlib::Port] $tls_ro_port = undef,
Optional[Array[String]] $indices_to_monitor = undef,
Boolean $compatibility_mode = false,
Boolean $disable_security_plugin = false,
) {
# Check arguments
if $cluster_name == 'opensearch' {
fail('$cluster_name must not be set to "opensearch"')
}
if $send_logs_to_logstash and $logstash_host == undef {
fail('Need a logstash_host to send logs to logstash')
}
$master_eligible = $::fqdn in $unicast_hosts
if $gc_log == true {
$gc_log_flags = [
"-Xlog:gc*:file=/var/log/opensearch/${cluster_name}_jvm_gc.%p.log::filecount=10,filesize=20000",
'-Xlog:gc+age=trace',
'-Xlog:safepoint',
]
} else {
$gc_log_flags = []
}
$gc_tune_flags = $tune_gc_new_size_ratio ? {
default => ["-XX:NewRatio=${tune_gc_new_size_ratio}"],
undef => []
}
$gc_flags = $gc_log_flags + $gc_tune_flags
$curator_hosts = $curator_uses_unicast_hosts ? {
true => concat($unicast_hosts, '127.0.0.1'),
default => [ '127.0.0.1' ],
}
opensearch::curator::config { $cluster_name:
ensure => present,
content => template('opensearch/curator_cluster.yaml.erb'),
}
# These are implied by the systemd unit
$config_dir = "/etc/opensearch/${cluster_name}"
$data_dir = "${base_data_dir}/${cluster_name}"
file { $config_dir:
ensure => directory,
owner => 'root',
group => 'root',
mode => '0755',
}
$watermark_settings = merge({
'enabled' => 'true',
'low' => '0.75',
'high' => '0.80',
'flood_stage' => '0.95'
}, $watermarks)
file { "${config_dir}/opensearch.yml":
ensure => file,
owner => 'root',
group => 'root',
content => template("opensearch/opensearch_${version}.yml.erb"),
mode => '0444',
require => Package['opensearch'],
}
file { "${config_dir}/logging.yml":
ensure => absent,
}
file { "${config_dir}/log4j2.properties":
ensure => file,
owner => 'root',
group => 'root',
content => template("opensearch/log4j2_${version}.properties.erb"),
mode => '0444',
require => Package['opensearch'],
}
file { "${config_dir}/jvm.options":
ensure => file,
owner => 'root',
group => 'root',
content => template('opensearch/jvm.options.erb'),
mode => '0444',
require => Package['opensearch'],
}
# opensearch refuses to start without the "scripts" directory, even if
# we do not actually use any scripts.
file { "${config_dir}/scripts":
ensure => directory,
owner => 'root',
group => 'root',
mode => '0444',
require => Package['opensearch'],
}
$ensure_keystore = $version ? {
'5' => 'absent',
default => 'present'
}
if $ensure_keystore == 'present' {
exec { "opensearch-create-keystore-${title}":
command => '/usr/share/opensearch/bin/opensearch-keystore create',
environment => ["OPENSEARCH_PATH_CONF=${config_dir}"],
creates => "${config_dir}/opensearch.keystore",
require => Package['opensearch'],
before => File["${config_dir}/opensearch.keystore"],
}
}
file { "${config_dir}/opensearch.keystore":
ensure => $ensure_keystore,
owner => 'root',
group => 'opensearch',
mode => '0640',
}
file { $data_dir:
ensure => directory,
owner => 'opensearch',
group => 'opensearch',
mode => '0755',
require => Package['opensearch'],
}
# GC logs rotation is done by the JVM, but on JVM restart, the logs left by
# the previous instance are left alone. This systemd timer takes care of cleaning up
# GC logs older than 30 days.
$gc_cleanup_job_title = "opensearch-${title}-gc-log-cleanup"
systemd::timer::job { $gc_cleanup_job_title:
ensure => present,
user => 'root',
description => 'Cleanup GC logs',
command => "/usr/bin/find /var/log/opensearch -name '${cluster_name}_jvm_gc.*.log*' -mtime +30 -delete",
interval => {'start' => 'OnCalendar', 'interval' => '*-*-* 02:12:00'},
}
systemd::tmpfile {"opensearch-${cluster_name}":
ensure => present,
content => "d /run/opensearch-${cluster_name} 0755 opensearch opensearch - -",
}
# Note that we don't notify the OpenSearch service of changes to its
# config files because you need to be somewhat careful when restarting it.
# So, for now at least, we'll be restarting it manually.
service { "opensearch_${version}@${cluster_name}":
ensure => running,
provider => 'systemd',
enable => true,
tag => 'opensearch_services',
require => [
Package['opensearch'],
Systemd::Unit["opensearch_${version}@.service"],
File["${config_dir}/opensearch.yml"],
File["${config_dir}/logging.yml"],
File["${config_dir}/log4j2.properties"],
File["${config_dir}/jvm.options"],
File[$data_dir],
Systemd::Tmpfile["opensearch-${cluster_name}"],
],
}
# Cluster management tool
# TODO: use fork when available
if ($compatibility_mode) {
ensure_packages(['python3-elasticsearch'])
file { '/usr/local/bin/opensearch-tool':
ensure => file,
owner => 'root',
group => 'root',
mode => '0755',
source => 'puppet:///modules/opensearch/opensearch-tool.py',
require => Package['python3-elasticsearch'],
}
}
}
|