opensearch-project / OpenSearch

🔎 Open source distributed and RESTful search engine.
https://opensearch.org/docs/latest/opensearch/index/
Apache License 2.0
9.44k stars 1.73k forks source link

[BUG] Shards stuck initializing #12398

Closed mvanderlee closed 6 months ago

mvanderlee commented 6 months ago

Describe the bug

13 shards are still stuck in 'initializing' 3 hours after node restart (single node cluster) Initially this caused all indices to be unavailable until I increased cluster.routing.allocation.node_initial_primaries_recoveries to 20

I can not find any logs or other information to try and debug this issue, any guidance would be appreciated.

os.cluster.allocation_explain(body={
    'index': '.opensearch-sap-windows-detectors-queries-000020',
    'shard': 0,
    'primary': True,
})
{
  "index": ".opensearch-sap-windows-detectors-queries-000020",
  "shard": 0,
  "primary": true,
  "current_state": "initializing",
  "unassigned_info": {
    "reason": "CLUSTER_RECOVERED",
    "at": "2024-02-20T20:50:34.536Z",
    "last_allocation_status": "throttled"
  },
  "current_node": {
    "id": "8ocPYpOtSwWVbXiyJtAPQA",
    "name": "opensearch-node1",
    "transport_address": "172.19.0.2:9300",
    "attributes": {
      "shard_indexing_pressure_enabled": "true"
    }
  },
  "explanation": "the shard is in the process of initializing on node [opensearch-node1], wait until initialization has completed"
}

Related component

Other

To Reproduce

I have no idea.

We have a single node cluster and enabled windows detectors yesterday. Nothing but trouble since then.

Expected behavior

Cluster should be able to restart and have all indices come back online. At minimum there should be logging and or timeouts when recovering indices.

Additional Details

OpenSearch 2.11.1

vchirikov commented 6 months ago

I got the same on empty cluster with opensearch operator :\

mvanderlee commented 6 months ago

@vchirikov The shards did eventually initialize overnight.

To recover all other shards immediately I had to manually increase the concurrency limit to be higher than the number of stuck shards.

curl -k -XPUT "${CLUSTER_ADDRESS}/_cluster/settings" \
  -H 'Content-Type:application/json' \
  -d'{"transient":{"cluster.routing.allocation.node_initial_primaries_recoveries":20}}'

You can replace transient with persistent to make it a permanent change.

I found the stuck shards with this python snippet:

import pandas as pd
from opensearchpy import OpenSearch

os = OpenSearch(**cluster_option)

shards = os.cat.shards(format='json')
shards_df = pd.DataFrame(shards)
shards_df[(shards_df['state'] != 'STARTED') & (shards_df['prirep'] == 'p')]
vchirikov commented 6 months ago

Yep, I tried this, but it didn't help:

PUT /_cluster/settings
{
  "transient": {
    "cluster": {
      "routing": {
        "allocation.cluster_concurrent_rebalance": 20, 
        "allocation.node_concurrent_recoveries": 20,
        "allocation.enable": "all"
      }
    }
  }
}

I saw only previous value in GET /_cluster/allocation/explain?pretty. I tried to scale up number of nodes from 2 to 3, but after cluster join I saw one shard in initializing state & one unassigned :\

And I gave up, since the cluster was empty, in fact , I just recreated it from scratch. After this I tried scale-up / scale-down and it was ok.

btw to see shard status you can use GET _cat/shards/<index_name>

-- upd: oh, didn't notice that you use node_initial_primaries_recoveries, if I see this again I will try it next time.

peternied commented 6 months ago

[Triage - attendees 1 2 3 4 5] @mvanderlee Thanks for creating this issue; however, it isn't being accepted due to not enough detail to reproduce the issue, please consider searching the OpenSearch forums [1] or providing more detailed information to get into this state. Please feel free to open a new issue after addressing the reason.

mvanderlee commented 6 months ago

@peternied Here is how I reached the state twice in a row (same cluster)

  1. Enable Windows Detectors
  2. Restart server
  3. Server is in a red state for hours

At a minimum I'd expect some dialog regarding things to try to figure out why it's stuck. Or a "Can't reproduce, add more logging to shard recovery"

peternied commented 6 months ago

@mvanderlee Thanks for following up - we'd need more information to reproduce the issue. Can you share your operating system, how you are running the distribution, and then write out each action to get into this state?

mvanderlee commented 6 months ago

@peternied

AWS Linux 2 on EC2 r5.4xlarge dockerized deployment, via docker-compose.

All we did was enable a windows detector in security analytics. We then noticed memory issues, so increased the EC2 instance. When it stayed unavailable I investigated and ended up finding 4 .opensearch-sap-windows-detectors-queries-xxxxx indices stuck in initializing. After I increased the node_initial_primaries_recoveries to 20, there were 13 stuck. In total there were 66 .opensearch-sap-windows-detectors-queries-xxxxx indices and the stuck ones were not in numerical order. This happened twice in a row (we started at r5.xlarge, then r5.2xlarge, then r5.4xlarge)

image image image

peternied commented 6 months ago

@mvanderlee One last critical piece of critical information, please review the opensearch.log, and if you see unhandled exceptions / errors please include them with context and then that would make it clear if this is an OpenSearch issue and what area of the product is impacted

Note; I'd recommend reviewing all log entries before publishing logs directly as they could contain data you consider sensitive

mvanderlee commented 6 months ago

@peternied I really wish there was something useful in the logs, but as I mentioned there isn't.

The only exceptions/errors in the logs is all shards failed Which isn't useful as it's cause by the shards not recovering, and only in the logs because the dashboard is trying to connect to a broken cluster.

{"type": "server", "timestamp": "2024-02-20T18:25:20,494Z", "level": "INFO", "component": "o.o.p.PluginsService", "cluster.name": "opensearch-cluster", "node.name": "opensearch-node1", "message": "PluginService:onIndexModule index:[.opensearch-sap-windows-detectors-queries-
000053/o_yMIQC6RYC8Wai__ILFLw]", "cluster.uuid": "ExUx3KUNRmmYdFbXoROhJw", "node.id": "8ocPYpOtSwWVbXiyJtAPQA"  }
{"type": "server", "timestamp": "2024-02-20T18:25:20,558Z", "level": "INFO", "component": "o.o.p.PluginsService", "cluster.name": "opensearch-cluster", "node.name": "opensearch-node1", "message": "PluginService:onIndexModule index:[.opensearch-sap-windows-detectors-queries-
000055/a_KGOCToTcq4PQvKEVQbZA]", "cluster.uuid": "ExUx3KUNRmmYdFbXoROhJw", "node.id": "8ocPYpOtSwWVbXiyJtAPQA"  }
{"type": "server", "timestamp": "2024-02-20T18:25:20,612Z", "level": "INFO", "component": "o.o.p.PluginsService", "cluster.name": "opensearch-cluster", "node.name": "opensearch-node1", "message": "PluginService:onIndexModule index:[.opensearch-sap-windows-detectors-queries-
000054/piVrJCWjT8GG7OMEqpAomg]", "cluster.uuid": "ExUx3KUNRmmYdFbXoROhJw", "node.id": "8ocPYpOtSwWVbXiyJtAPQA"  }
{"type": "server", "timestamp": "2024-02-20T18:25:20,706Z", "level": "WARN", "component": "r.suppressed", "cluster.name": "opensearch-cluster", "node.name": "opensearch-node1", "message": "path: /.kibana/_count, params: {index=.kibana}", "cluster.uuid": "ExUx3KUNRmmYdFbXoRO
hJw", "node.id": "8ocPYpOtSwWVbXiyJtAPQA" , 
"stacktrace": ["org.opensearch.action.search.SearchPhaseExecutionException: all shards failed",
"at org.opensearch.action.search.AbstractSearchAsyncAction.onPhaseFailure(AbstractSearchAsyncAction.java:706) [opensearch-2.11.1.jar:2.11.1]",
"at org.opensearch.action.search.AbstractSearchAsyncAction.executeNextPhase(AbstractSearchAsyncAction.java:379) [opensearch-2.11.1.jar:2.11.1]",
"at org.opensearch.action.search.AbstractSearchAsyncAction.onPhaseDone(AbstractSearchAsyncAction.java:745) [opensearch-2.11.1.jar:2.11.1]",
"at org.opensearch.action.search.AbstractSearchAsyncAction.onShardFailure(AbstractSearchAsyncAction.java:503) [opensearch-2.11.1.jar:2.11.1]",
"at org.opensearch.action.search.AbstractSearchAsyncAction.lambda$performPhaseOnShard$0(AbstractSearchAsyncAction.java:280) [opensearch-2.11.1.jar:2.11.1]",
"at org.opensearch.action.search.AbstractSearchAsyncAction$2.doRun(AbstractSearchAsyncAction.java:357) [opensearch-2.11.1.jar:2.11.1]",
"at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:52) [opensearch-2.11.1.jar:2.11.1]",
"at org.opensearch.threadpool.TaskAwareRunnable.doRun(TaskAwareRunnable.java:78) [opensearch-2.11.1.jar:2.11.1]",
"at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:52) [opensearch-2.11.1.jar:2.11.1]",
"at org.opensearch.common.util.concurrent.TimedRunnable.doRun(TimedRunnable.java:59) [opensearch-2.11.1.jar:2.11.1]",
"at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:908) [opensearch-2.11.1.jar:2.11.1]",
"at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:52) [opensearch-2.11.1.jar:2.11.1]",
"at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]",
"at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]",
"at java.lang.Thread.run(Thread.java:833) [?:?]"] }
{"type": "server", "timestamp": "2024-02-20T18:25:20,741Z", "level": "INFO", "component": "o.o.a.u.d.DestinationMigrationCoordinator", "cluster.name": "opensearch-cluster", "node.name": "opensearch-node1", "message": "Detected cluster change event for destination migration", "cluster.uuid": "ExUx3KUNRmmYdFbXoROhJw", "node.id": "8ocPYpOtSwWVbXiyJtAPQA"  }

If you have a non-public way for me to share the entire logs, I'd gladly do so.

peternied commented 6 months ago

@mvanderlee Thanks for taking a look, sounds like an ugly issue. Reach out to me, @ Peter Nied, on our Slack instance - https://opensearch.org/slack.html we can discuss next steps.

vchirikov commented 6 months ago

@peternied I ran into this again with opensearch operator, looks like it restart nodes too quickly and this causes unrecoverable split-brain problem. Currently I have cluster with 2 nodes, but I saw this on 3 node cluster.

Logs ``` Enabling OpenSearch Security Plugin Enabling execution of install_demo_configuration.sh for OpenSearch Security Plugin OpenSearch 2.12.0 onwards, the OpenSearch Security Plugin a change that requires an initial password for 'admin' user. Please define an environment variable 'OPENSEARCH_INITIAL_ADMIN_PASSWORD' with a strong password string. If a password is not provided, the setup will quit. For more details, please visit: https://opensearch.org/docs/latest/install-and-configure/install-opensearch/docker/ ### OpenSearch Security Demo Installer ### ** Warning: Do not use on production or public reachable systems ** OpenSearch install type: rpm/deb on Linux 5.10.186-179.751.amzn2.x86_64 amd64 OpenSearch config dir: /usr/share/opensearch/config/ OpenSearch config file: /usr/share/opensearch/config/opensearch.yml OpenSearch bin dir: /usr/share/opensearch/bin/ OpenSearch plugins dir: /usr/share/opensearch/plugins/ OpenSearch lib dir: /usr/share/opensearch/lib/ Detected OpenSearch Version: 2.12.0 Detected OpenSearch Security Version: 2.12.0.0 /usr/share/opensearch/config/opensearch.yml seems to be already configured for Security. Quit. Enabling execution of OPENSEARCH_HOME/bin/opensearch-performance-analyzer/performance-analyzer-agent-cli for OpenSearch Performance Analyzer Plugin WARNING: Using incubator modules: jdk.incubator.vector WARNING: A terminally deprecated method in java.lang.System has been called WARNING: System::setSecurityManager has been called by org.opensearch.bootstrap.OpenSearch (file:/usr/share/opensearch/lib/opensearch-2.12.0.jar) WARNING: Please consider reporting this to the maintainers of org.opensearch.bootstrap.OpenSearch WARNING: System::setSecurityManager will be removed in a future release Feb 22, 2024 2:37:22 PM sun.util.locale.provider.LocaleProviderAdapter WARNING: COMPAT locale provider will be removed in a future release WARNING: A terminally deprecated method in java.lang.System has been called WARNING: System::setSecurityManager has been called by org.opensearch.bootstrap.Security (file:/usr/share/opensearch/lib/opensearch-2.12.0.jar) WARNING: Please consider reporting this to the maintainers of org.opensearch.bootstrap.Security WARNING: System::setSecurityManager will be removed in a future release [2024-02-22T14:37:24,010][INFO ][o.o.n.Node ] [opensearch-node-0] version[2.12.0], pid[35], build[tar/2c355ce1a427e4a528778d4054436b5c4b756221/2024-02-20T02:18:49.874618333Z], OS[Linux/5.10.186-179.751.amzn2.x86_64/amd64], JVM[Eclipse Adoptium/OpenJDK 64-Bit Server VM/21.0.2/21.0.2+13-LTS] [2024-02-22T14:37:24,020][INFO ][o.o.n.Node ] [opensearch-node-0] JVM home [/usr/share/opensearch/jdk], using bundled JDK/JRE [true] [2024-02-22T14:37:24,021][INFO ][o.o.n.Node ] [opensearch-node-0] JVM arguments [-Xshare:auto, -Dopensearch.networkaddress.cache.ttl=60, -Dopensearch.networkaddress.cache.negative.ttl=10, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -XX:+ShowCodeDetailsInExceptionMessages, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dio.netty.allocator.numDirectArenas=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Djava.security.manager=allow, -Djava.locale.providers=SPI,COMPAT, -Xms1g, -Xmx1g, -XX:+UseG1GC, -XX:G1ReservePercent=25, -XX:InitiatingHeapOccupancyPercent=30, -Djava.io.tmpdir=/tmp/opensearch-5585519132244491499, -XX:+HeapDumpOnOutOfMemoryError, -XX:HeapDumpPath=data, -XX:ErrorFile=logs/hs_err_pid%p.log, -Xlog:gc*,gc+age=trace,safepoint:file=logs/gc.log:utctime,pid,tags:filecount=32,filesize=64m, -Djava.security.manager=allow, --add-modules=jdk.incubator.vector, -Djava.util.concurrent.ForkJoinPool.common.threadFactory=org.opensearch.secure_sm.SecuredForkJoinWorkerThreadFactory, -Dclk.tck=100, -Djdk.attach.allowAttachSelf=true, -Djava.security.policy=/usr/share/opensearch/config/opensearch-performance-analyzer/opensearch_security.policy, --add-opens=jdk.attach/sun.tools.attach=ALL-UNNAMED, -Dopensearch.cgroups.hierarchy.override=/, -Xmx1024M, -Xms1024M, -Dopensearch.transport.cname_in_publish_address=true, -XX:MaxDirectMemorySize=536870912, -Dopensearch.path.home=/usr/share/opensearch, -Dopensearch.path.conf=/usr/share/opensearch/config, -Dopensearch.distribution.type=tar, -Dopensearch.bundled_jdk=true] [2024-02-22T14:37:27,228][INFO ][o.o.s.s.t.SSLConfig ] [opensearch-node-0] SSL dual mode is disabled [2024-02-22T14:37:27,228][INFO ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] OpenSearch Config path is /usr/share/opensearch/config [2024-02-22T14:37:27,701][INFO ][o.o.s.s.DefaultSecurityKeyStore] [opensearch-node-0] JVM supports TLSv1.3 [2024-02-22T14:37:27,704][INFO ][o.o.s.s.DefaultSecurityKeyStore] [opensearch-node-0] Config directory is /usr/share/opensearch/config/, from there the key- and truststore files are resolved relatively [2024-02-22T14:37:29,008][INFO ][o.o.s.s.DefaultSecurityKeyStore] [opensearch-node-0] TLS Transport Client Provider : JDK [2024-02-22T14:37:29,009][INFO ][o.o.s.s.DefaultSecurityKeyStore] [opensearch-node-0] TLS Transport Server Provider : JDK [2024-02-22T14:37:29,009][INFO ][o.o.s.s.DefaultSecurityKeyStore] [opensearch-node-0] TLS HTTP Provider : JDK [2024-02-22T14:37:29,010][INFO ][o.o.s.s.DefaultSecurityKeyStore] [opensearch-node-0] Enabled TLS protocols for transport layer : [TLSv1.3, TLSv1.2] [2024-02-22T14:37:29,010][INFO ][o.o.s.s.DefaultSecurityKeyStore] [opensearch-node-0] Enabled TLS protocols for HTTP layer : [TLSv1.3, TLSv1.2] [2024-02-22T14:37:29,091][DEPRECATION][o.o.d.s.s.DeprecatedSettings] [opensearch-node-0] Found deprecated setting 'plugins.security.unsupported.restapi.allow_securityconfig_modification', please replace with 'restapi:admin/config/update permission' [2024-02-22T14:37:29,092][INFO ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] Clustername: opensearch [2024-02-22T14:37:29,108][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] Directory /usr/share/opensearch/config has insecure file permissions (should be 0700) [2024-02-22T14:37:29,108][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/opensearch-security/action_groups.yml has insecure file permissions (should be 0600) [2024-02-22T14:37:29,110][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/opensearch-security/audit.yml has insecure file permissions (should be 0600) [2024-02-22T14:37:29,110][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/opensearch-security/config.yml has insecure file permissions (should be 0600) [2024-02-22T14:37:29,111][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/opensearch-security/internal_users.yml has insecure file permissions (should be 0600) [2024-02-22T14:37:29,112][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/opensearch-security/nodes_dn.yml has insecure file permissions (should be 0600) [2024-02-22T14:37:29,112][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/opensearch-security/roles.yml has insecure file permissions (should be 0600) [2024-02-22T14:37:29,112][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/opensearch-security/roles_mapping.yml has insecure file permissions (should be 0600) [2024-02-22T14:37:29,113][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/opensearch-security/tenants.yml has insecure file permissions (should be 0600) [2024-02-22T14:37:29,113][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/opensearch-security/whitelist.yml has insecure file permissions (should be 0600) [2024-02-22T14:37:29,114][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/opensearch.yml has insecure file permissions (should be 0600) [2024-02-22T14:37:29,114][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] Directory /usr/share/opensearch/config/tls-http has insecure file permissions (should be 0700) [2024-02-22T14:37:29,115][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-http/ca.crt has insecure file permissions (should be 0600) [2024-02-22T14:37:29,115][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-http/tls.key has insecure file permissions (should be 0600) [2024-02-22T14:37:29,116][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-http/tls.crt has insecure file permissions (should be 0600) [2024-02-22T14:37:29,116][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-http/..data has insecure file permissions (should be 0600) [2024-02-22T14:37:29,116][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] Directory /usr/share/opensearch/config/tls-http/..2024_02_22_14_36_58.2440738620 has insecure file permissions (should be 0700) [2024-02-22T14:37:29,117][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-http/..2024_02_22_14_36_58.2440738620/tls.crt has insecure file permissions (should be 0600) [2024-02-22T14:37:29,117][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-http/..2024_02_22_14_36_58.2440738620/ca.crt has insecure file permissions (should be 0600) [2024-02-22T14:37:29,118][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-http/..2024_02_22_14_36_58.2440738620/tls.key has insecure file permissions (should be 0600) [2024-02-22T14:37:29,118][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] Directory /usr/share/opensearch/config/tls-transport has insecure file permissions (should be 0700) [2024-02-22T14:37:29,119][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-transport/tls.key has insecure file permissions (should be 0600) [2024-02-22T14:37:29,119][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-transport/tls.crt has insecure file permissions (should be 0600) [2024-02-22T14:37:29,119][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-transport/ca.crt has insecure file permissions (should be 0600) [2024-02-22T14:37:29,120][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-transport/..data has insecure file permissions (should be 0600) [2024-02-22T14:37:29,120][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] Directory /usr/share/opensearch/config/tls-transport/..2024_02_22_14_36_58.952857587 has insecure file permissions (should be 0700) [2024-02-22T14:37:29,120][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-transport/..2024_02_22_14_36_58.952857587/tls.key has insecure file permissions (should be 0600) [2024-02-22T14:37:29,121][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-transport/..2024_02_22_14_36_58.952857587/tls.crt has insecure file permissions (should be 0600) [2024-02-22T14:37:29,121][WARN ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] File /usr/share/opensearch/config/tls-transport/..2024_02_22_14_36_58.952857587/ca.crt has insecure file permissions (should be 0600) [2024-02-22T14:37:30,347][INFO ][o.o.p.c.c.PluginSettings ] [opensearch-node-0] Config: metricsLocation: /dev/shm/performanceanalyzer/, metricsDeletionInterval: 1, httpsEnabled: false, cleanup-metrics-db-files: true, batch-metrics-retention-period-minutes: 7, rpc-port: 9650, webservice-port 9600 [2024-02-22T14:37:31,522][INFO ][o.o.i.r.ReindexPlugin ] [opensearch-node-0] ReindexPlugin reloadSPI called [2024-02-22T14:37:31,524][INFO ][o.o.i.r.ReindexPlugin ] [opensearch-node-0] Unable to find any implementation for RemoteReindexExtension [2024-02-22T14:37:31,576][INFO ][o.o.j.JobSchedulerPlugin ] [opensearch-node-0] Loaded scheduler extension: opendistro_anomaly_detector, index: .opendistro-anomaly-detector-jobs [2024-02-22T14:37:31,617][INFO ][o.o.j.JobSchedulerPlugin ] [opensearch-node-0] Loaded scheduler extension: reports-scheduler, index: .opendistro-reports-definitions [2024-02-22T14:37:31,619][INFO ][o.o.j.JobSchedulerPlugin ] [opensearch-node-0] Loaded scheduler extension: opendistro-index-management, index: .opendistro-ism-config [2024-02-22T14:37:31,622][INFO ][o.o.j.JobSchedulerPlugin ] [opensearch-node-0] Loaded scheduler extension: scheduler_geospatial_ip2geo_datasource, index: .scheduler-geospatial-ip2geo-datasource [2024-02-22T14:37:31,624][INFO ][o.o.j.JobSchedulerPlugin ] [opensearch-node-0] Loaded scheduler extension: opensearch_sap_job, index: .opensearch-sap--job [2024-02-22T14:37:31,653][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [aggs-matrix-stats] [2024-02-22T14:37:31,653][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [analysis-common] [2024-02-22T14:37:31,653][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [geo] [2024-02-22T14:37:31,654][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [ingest-common] [2024-02-22T14:37:31,654][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [ingest-geoip] [2024-02-22T14:37:31,654][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [ingest-user-agent] [2024-02-22T14:37:31,654][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [lang-expression] [2024-02-22T14:37:31,655][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [lang-mustache] [2024-02-22T14:37:31,655][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [lang-painless] [2024-02-22T14:37:31,655][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [mapper-extras] [2024-02-22T14:37:31,655][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [opensearch-dashboards] [2024-02-22T14:37:31,656][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [parent-join] [2024-02-22T14:37:31,656][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [percolator] [2024-02-22T14:37:31,656][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [rank-eval] [2024-02-22T14:37:31,657][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [reindex] [2024-02-22T14:37:31,657][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [repository-url] [2024-02-22T14:37:31,657][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [search-pipeline-common] [2024-02-22T14:37:31,657][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [systemd] [2024-02-22T14:37:31,658][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded module [transport-netty4] [2024-02-22T14:37:31,658][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-alerting] [2024-02-22T14:37:31,659][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-anomaly-detection] [2024-02-22T14:37:31,659][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-asynchronous-search] [2024-02-22T14:37:31,659][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-cross-cluster-replication] [2024-02-22T14:37:31,660][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-custom-codecs] [2024-02-22T14:37:31,660][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-flow-framework] [2024-02-22T14:37:31,660][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-geospatial] [2024-02-22T14:37:31,661][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-index-management] [2024-02-22T14:37:31,661][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-job-scheduler] [2024-02-22T14:37:31,661][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-knn] [2024-02-22T14:37:31,661][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-ml] [2024-02-22T14:37:31,662][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-neural-search] [2024-02-22T14:37:31,662][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-notifications] [2024-02-22T14:37:31,662][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-notifications-core] [2024-02-22T14:37:31,662][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-observability] [2024-02-22T14:37:31,663][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-performance-analyzer] [2024-02-22T14:37:31,663][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-reports-scheduler] [2024-02-22T14:37:31,663][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-security] [2024-02-22T14:37:31,664][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-security-analytics] [2024-02-22T14:37:31,664][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-skills] [2024-02-22T14:37:31,664][INFO ][o.o.p.PluginsService ] [opensearch-node-0] loaded plugin [opensearch-sql] [2024-02-22T14:37:31,799][INFO ][o.o.e.ExtensionsManager ] [opensearch-node-0] ExtensionsManager initialized [2024-02-22T14:37:31,853][INFO ][o.a.l.s.MemorySegmentIndexInputProvider] [opensearch-node-0] Using MemorySegmentIndexInput with Java 21; to disable start with -Dorg.apache.lucene.store.MMapDirectory.enableMemorySegments=false [2024-02-22T14:37:31,889][INFO ][o.o.e.NodeEnvironment ] [opensearch-node-0] using [1] data paths, mounts [[/usr/share/opensearch/data (/dev/nvme2n1)]], net usable_space [34.2gb], net total_space [34.2gb], types [ext4] [2024-02-22T14:37:31,890][INFO ][o.o.e.NodeEnvironment ] [opensearch-node-0] heap size [1gb], compressed ordinary object pointers [true] [2024-02-22T14:37:32,107][INFO ][o.o.n.Node ] [opensearch-node-0] node name [opensearch-node-0], node ID [W2d_SGMZR6anZ6BDQnnybg], cluster name [opensearch], roles [data, cluster_manager] [2024-02-22T14:37:36,107][DEPRECATION][o.o.d.c.s.Settings ] [opensearch-node-0] [index.store.hybrid.mmap.extensions] setting was deprecated in OpenSearch and will be removed in a future release! See the breaking changes documentation for the next major version. [2024-02-22T14:37:36,112][DEPRECATION][o.o.d.c.s.Settings ] [opensearch-node-0] [cluster.initial_master_nodes] setting was deprecated in OpenSearch and will be removed in a future release! See the breaking changes documentation for the next major version. [2024-02-22T14:37:37,339][INFO ][o.o.n.p.NeuralSearch ] [opensearch-node-0] Registering hybrid query phase searcher with feature flag [plugins.neural_search.hybrid_search_disabled] [2024-02-22T14:37:38,452][WARN ][o.o.s.c.Salt ] [opensearch-node-0] If you plan to use field masking pls configure compliance salt e1ukloTsQlOgPquJ to be a random string of 16 chars length identical on all nodes [2024-02-22T14:37:38,517][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Message routing enabled: true [2024-02-22T14:37:38,577][INFO ][o.o.s.f.SecurityFilter ] [opensearch-node-0] indices are made immutable. [2024-02-22T14:37:39,180][INFO ][o.o.a.b.ADCircuitBreakerService] [opensearch-node-0] Registered memory breaker. [2024-02-22T14:37:39,946][INFO ][o.o.m.b.MLCircuitBreakerService] [opensearch-node-0] Registered ML memory breaker. [2024-02-22T14:37:39,947][INFO ][o.o.m.b.MLCircuitBreakerService] [opensearch-node-0] Registered ML disk breaker. [2024-02-22T14:37:39,947][INFO ][o.o.m.b.MLCircuitBreakerService] [opensearch-node-0] Registered ML native memory breaker. [2024-02-22T14:37:40,159][INFO ][o.r.Reflections ] [opensearch-node-0] Reflections took 135 ms to scan 1 urls, producing 21 keys and 59 values [2024-02-22T14:37:41,493][INFO ][o.o.t.NettyAllocator ] [opensearch-node-0] creating NettyAllocator with the following configs: [name=unpooled, suggested_max_allocation_size=256kb, factors={opensearch.unsafe.use_unpooled_allocator=null, g1gc_enabled=true, g1gc_region_size=1mb, heap_size=1gb}] [2024-02-22T14:37:41,498][INFO ][o.o.s.s.t.SSLConfig ] [opensearch-node-0] SSL dual mode is disabled [2024-02-22T14:37:41,680][INFO ][o.o.d.DiscoveryModule ] [opensearch-node-0] using discovery type [zen] and seed hosts providers [settings] [2024-02-22T14:37:42,682][WARN ][o.o.g.DanglingIndicesState] [opensearch-node-0] gateway.auto_import_dangling_indices is disabled, dangling indices will not be automatically detected or imported and must be managed manually [2024-02-22T14:37:44,484][INFO ][o.o.p.h.c.PerformanceAnalyzerConfigAction] [opensearch-node-0] PerformanceAnalyzer Enabled: false [2024-02-22T14:37:44,548][INFO ][o.o.n.Node ] [opensearch-node-0] initialized [2024-02-22T14:37:44,549][INFO ][o.o.n.Node ] [opensearch-node-0] starting ... [2024-02-22T14:37:44,603][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [windows_logtype.json] log type [2024-02-22T14:37:44,604][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [waf_logtype.json] log type [2024-02-22T14:37:44,605][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [vpcflow_logtype.json] log type [2024-02-22T14:37:44,606][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [test_windows_logtype.json] log type [2024-02-22T14:37:44,607][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [s3_logtype.json] log type [2024-02-22T14:37:44,608][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [others_web_logtype.json] log type [2024-02-22T14:37:44,609][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [others_proxy_logtype.json] log type [2024-02-22T14:37:44,610][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [others_macos_logtype.json] log type [2024-02-22T14:37:44,610][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [others_compliance_logtype.json] log type [2024-02-22T14:37:44,611][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [others_cloud_logtype.json] log type [2024-02-22T14:37:44,612][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [others_apt_logtype.json] log type [2024-02-22T14:37:44,612][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [others_application_logtype.json] log type [2024-02-22T14:37:44,613][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [okta_logtype.json] log type [2024-02-22T14:37:44,614][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [network_logtype.json] log type [2024-02-22T14:37:44,615][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [netflow_logtype.json] log type [2024-02-22T14:37:44,616][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [m365_logtype.json] log type [2024-02-22T14:37:44,616][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [linux_logtype.json] log type [2024-02-22T14:37:44,617][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [gworkspace_logtype.json] log type [2024-02-22T14:37:44,618][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [github_logtype.json] log type [2024-02-22T14:37:44,619][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [dns_logtype.json] log type [2024-02-22T14:37:44,620][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [cloudtrail_logtype.json] log type [2024-02-22T14:37:44,621][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [azure_logtype.json] log type [2024-02-22T14:37:44,621][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [apache_access_logtype.json] log type [2024-02-22T14:37:44,622][INFO ][o.o.s.l.BuiltinLogTypeLoader] [opensearch-node-0] Loaded [ad_ldap_logtype.json] log type [2024-02-22T14:37:44,824][INFO ][o.o.t.TransportService ] [opensearch-node-0] publish_address {opensearch-node-0/10.0.46.149:9300}, bound_addresses {[::]:9300} [2024-02-22T14:37:45,401][INFO ][o.o.b.BootstrapChecks ] [opensearch-node-0] bound or publishing to a non-loopback address, enforcing bootstrap checks [2024-02-22T14:37:45,411][INFO ][o.o.c.c.Coordinator ] [opensearch-node-0] cluster UUID [y1ix3gi7RX-TNGUAE9S_vw] [2024-02-22T14:37:47,861][INFO ][o.o.c.c.JoinHelper ] [opensearch-node-0] failed to join {opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true} with JoinRequest{sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, minimumTerm=5, optionalJoin=Optional[Join{term=6, lastAcceptedTerm=5, lastAcceptedVersion=128, sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, targetNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}}]} org.opensearch.transport.RemoteTransportException: [opensearch-node-0][10.0.46.149:9300][internal:cluster/coordination/join] Caused by: org.opensearch.cluster.coordination.CoordinationStateRejectedException: received a newer join from {opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true} at org.opensearch.cluster.coordination.JoinHelper$CandidateJoinAccumulator.handleJoinRequest(JoinHelper.java:619) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator.processJoinRequest(Coordinator.java:660) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator.lambda$handleJoinRequest$7(Coordinator.java:622) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.core.action.ActionListener$1.onResponse(ActionListener.java:82) [opensearch-core-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.connectToNode(TransportService.java:502) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.connectToNode(TransportService.java:485) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator.handleJoinRequest(Coordinator.java:604) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.lambda$new$1(JoinHelper.java:209) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceivedDecorate(SecuritySSLRequestHandler.java:206) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.transport.SecurityRequestHandler.messageReceivedDecorate(SecurityRequestHandler.java:211) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceived(SecuritySSLRequestHandler.java:105) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.OpenSearchSecurityPlugin$6$1.messageReceived(OpenSearchSecurityPlugin.java:795) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.indexmanagement.rollup.interceptor.RollupInterceptor$interceptHandler$1.messageReceived(RollupInterceptor.kt:114) [opensearch-index-management-2.12.0.0.jar:2.12.0.0] at org.opensearch.performanceanalyzer.transport.PerformanceAnalyzerTransportRequestHandler.messageReceived(PerformanceAnalyzerTransportRequestHandler.java:43) [opensearch-performance-analyzer-2.12.0.0.jar:2.12.0.0] at org.opensearch.transport.RequestHandlerRegistry.processMessageReceived(RequestHandlerRegistry.java:106) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService$7.doRun(TransportService.java:1059) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:913) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:52) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] [2024-02-22T14:37:48,041][INFO ][o.o.c.c.JoinHelper ] [opensearch-node-0] failed to join {opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true} with JoinRequest{sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, minimumTerm=6, optionalJoin=Optional[Join{term=7, lastAcceptedTerm=5, lastAcceptedVersion=128, sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, targetNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}}]} org.opensearch.transport.RemoteTransportException: [opensearch-node-0][10.0.46.149:9300][internal:cluster/coordination/join] Caused by: org.opensearch.cluster.coordination.CoordinationStateRejectedException: received a newer join from {opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true} at org.opensearch.cluster.coordination.JoinHelper$CandidateJoinAccumulator.handleJoinRequest(JoinHelper.java:619) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator.processJoinRequest(Coordinator.java:660) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator.lambda$handleJoinRequest$7(Coordinator.java:622) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.core.action.ActionListener$1.onResponse(ActionListener.java:82) [opensearch-core-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.connectToNode(TransportService.java:502) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.connectToNode(TransportService.java:485) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator.handleJoinRequest(Coordinator.java:604) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.lambda$new$1(JoinHelper.java:209) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceivedDecorate(SecuritySSLRequestHandler.java:206) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.transport.SecurityRequestHandler.messageReceivedDecorate(SecurityRequestHandler.java:211) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceived(SecuritySSLRequestHandler.java:105) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.OpenSearchSecurityPlugin$6$1.messageReceived(OpenSearchSecurityPlugin.java:795) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.indexmanagement.rollup.interceptor.RollupInterceptor$interceptHandler$1.messageReceived(RollupInterceptor.kt:114) [opensearch-index-management-2.12.0.0.jar:2.12.0.0] at org.opensearch.performanceanalyzer.transport.PerformanceAnalyzerTransportRequestHandler.messageReceived(PerformanceAnalyzerTransportRequestHandler.java:43) [opensearch-performance-analyzer-2.12.0.0.jar:2.12.0.0] at org.opensearch.transport.RequestHandlerRegistry.processMessageReceived(RequestHandlerRegistry.java:106) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService$7.doRun(TransportService.java:1059) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:913) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:52) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] [2024-02-22T14:37:48,054][INFO ][o.o.c.c.JoinHelper ] [opensearch-node-0] failed to join {opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true} with JoinRequest{sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, minimumTerm=7, optionalJoin=Optional[Join{term=8, lastAcceptedTerm=5, lastAcceptedVersion=128, sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, targetNode={opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}}]} org.opensearch.transport.RemoteTransportException: [opensearch-node-1][10.0.46.145:9300][internal:cluster/coordination/join] Caused by: org.opensearch.cluster.coordination.CoordinationStateRejectedException: incoming term 8 does not match current term 9 at org.opensearch.cluster.coordination.CoordinationState.handleJoin(CoordinationState.java:269) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator.handleJoin(Coordinator.java:1199) ~[opensearch-2.12.0.jar:2.12.0] at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] at org.opensearch.cluster.coordination.Coordinator.processJoinRequest(Coordinator.java:659) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator.lambda$handleJoinRequest$7(Coordinator.java:622) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.core.action.ActionListener$1.onResponse(ActionListener.java:82) ~[opensearch-core-2.12.0.jar:2.12.0] at org.opensearch.transport.ClusterConnectionManager.connectToNode(ClusterConnectionManager.java:138) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.connectToNode(TransportService.java:505) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.connectToNode(TransportService.java:485) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator.handleJoinRequest(Coordinator.java:604) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.lambda$new$1(JoinHelper.java:209) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceivedDecorate(SecuritySSLRequestHandler.java:206) ~[?:?] at org.opensearch.security.transport.SecurityRequestHandler.messageReceivedDecorate(SecurityRequestHandler.java:317) ~[?:?] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceived(SecuritySSLRequestHandler.java:154) ~[?:?] at org.opensearch.security.OpenSearchSecurityPlugin$6$1.messageReceived(OpenSearchSecurityPlugin.java:795) ~[?:?] at org.opensearch.indexmanagement.rollup.interceptor.RollupInterceptor$interceptHandler$1.messageReceived(RollupInterceptor.kt:114) ~[?:?] at org.opensearch.performanceanalyzer.transport.PerformanceAnalyzerTransportRequestHandler.messageReceived(PerformanceAnalyzerTransportRequestHandler.java:43) ~[?:?] at org.opensearch.transport.RequestHandlerRegistry.processMessageReceived(RequestHandlerRegistry.java:106) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.InboundHandler$RequestHandler.doRun(InboundHandler.java:480) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:913) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:52) ~[opensearch-2.12.0.jar:2.12.0] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?] at java.lang.Thread.run(Thread.java:1583) [?:?] [2024-02-22T14:37:48,122][INFO ][o.o.c.s.MasterService ] [opensearch-node-0] elected-as-cluster-manager ([2] nodes joined)[{opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true} elect leader, {opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true} elect leader, _BECOME_CLUSTER_MANAGER_TASK_, _FINISH_ELECTION_], term: 9, version: 129, delta: cluster-manager node changed {previous [], current [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}]}, added {{opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}} [2024-02-22T14:37:48,528][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for cluster:monitor/health [2024-02-22T14:37:48,518][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/template/get [2024-02-22T14:37:48,550][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/get [2024-02-22T14:37:48,554][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for cluster:monitor/health [2024-02-22T14:37:48,561][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/mappings/get [2024-02-22T14:37:48,585][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/aliases/get [2024-02-22T14:37:48,591][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/template/get [2024-02-22T14:37:48,605][INFO ][o.o.c.s.ClusterApplierService] [opensearch-node-0] cluster-manager node changed {previous [], current [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}]}, added {{opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}}, term: 9, version: 129, reason: Publication{term=9, version=129} [2024-02-22T14:37:48,617][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/template/get [2024-02-22T14:37:48,624][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for cluster:monitor/health [2024-02-22T14:37:48,634][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/mappings/get [2024-02-22T14:37:48,660][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/aliases/get [2024-02-22T14:37:48,661][INFO ][o.o.a.c.ADClusterEventListener] [opensearch-node-0] Cluster is not recovered yet. [2024-02-22T14:37:48,672][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/mappings/get [2024-02-22T14:37:48,686][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:48,689][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/aliases/get [2024-02-22T14:37:48,742][INFO ][o.o.i.i.ManagedIndexCoordinator] [opensearch-node-0] Cache cluster manager node onClusterManager time: 1708612668742 [2024-02-22T14:37:48,791][INFO ][o.o.m.a.MLModelAutoReDeployer] [opensearch-node-0] Cluster status not ready, not performing auto reloading now! [2024-02-22T14:37:48,800][WARN ][o.o.p.c.s.h.ConfigOverridesClusterSettingHandler] [opensearch-node-0] Config override setting update called with empty string. Ignoring. [2024-02-22T14:37:48,846][INFO ][o.o.d.PeerFinder ] [opensearch-node-0] setting findPeersInterval to [1s] as node commission status = [true] for local node [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}] [2024-02-22T14:37:48,851][INFO ][o.o.h.AbstractHttpServerTransport] [opensearch-node-0] publish_address {opensearch-node-0/10.0.46.149:9200}, bound_addresses {[::]:9200} [2024-02-22T14:37:48,852][INFO ][o.o.n.Node ] [opensearch-node-0] started [2024-02-22T14:37:48,859][INFO ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] Node started [2024-02-22T14:37:48,860][INFO ][o.o.s.c.ConfigurationRepository] [opensearch-node-0] Will not attempt to create index .opendistro_security and default configs if they are absent. Use securityadmin to initialize cluster [2024-02-22T14:37:48,868][INFO ][o.o.s.OpenSearchSecurityPlugin] [opensearch-node-0] 0 OpenSearch Security modules loaded so far: [] [2024-02-22T14:37:48,875][INFO ][o.o.s.c.ConfigurationRepository] [opensearch-node-0] Background init thread started. Install default config?: false [2024-02-22T14:37:48,877][INFO ][o.o.s.c.ConfigurationRepository] [opensearch-node-0] Wait for cluster to be available ... [2024-02-22T14:37:49,132][INFO ][o.o.c.s.ClusterSettings ] [opensearch-node-0] updating [plugins.index_state_management.template_migration.control] from [0] to [-1] [2024-02-22T14:37:49,139][INFO ][o.o.a.c.HashRing ] [opensearch-node-0] Node added: [W2d_SGMZR6anZ6BDQnnybg, FPaIa4EmQpiBH8AaRz-lTA] [2024-02-22T14:37:49,147][INFO ][o.o.a.c.HashRing ] [opensearch-node-0] Add data node to AD version hash ring: W2d_SGMZR6anZ6BDQnnybg [2024-02-22T14:37:49,158][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:49,164][INFO ][o.o.a.c.HashRing ] [opensearch-node-0] Add data node to AD version hash ring: FPaIa4EmQpiBH8AaRz-lTA [2024-02-22T14:37:49,167][INFO ][o.o.a.c.HashRing ] [opensearch-node-0] All nodes with known AD version: {W2d_SGMZR6anZ6BDQnnybg=ADNodeInfo{version=2.12.0, isEligibleDataNode=true}, FPaIa4EmQpiBH8AaRz-lTA=ADNodeInfo{version=2.12.0, isEligibleDataNode=true}} [2024-02-22T14:37:49,167][INFO ][o.o.a.c.HashRing ] [opensearch-node-0] Rebuild AD hash ring for realtime AD with cooldown, nodeChangeEvents size 0 [2024-02-22T14:37:49,169][INFO ][o.o.a.c.HashRing ] [opensearch-node-0] Build AD version hash ring successfully [2024-02-22T14:37:49,175][INFO ][o.o.a.c.ADClusterEventListener] [opensearch-node-0] Init AD version hash ring successfully [2024-02-22T14:37:49,214][INFO ][o.o.g.GatewayService ] [opensearch-node-0] recovered [15] indices into cluster_state [2024-02-22T14:37:49,218][WARN ][o.o.o.i.ObservabilityIndex] [opensearch-node-0] message: index [.opensearch-observability/eyh-kvyiQze7783XlkFxaQ] already exists [2024-02-22T14:37:49,220][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Loading builtin types! [2024-02-22T14:37:49,234][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Indexing [429] fieldMappingDocs from logTypes: 24 [2024-02-22T14:37:49,247][ERROR][o.o.i.i.ManagedIndexCoordinator] [opensearch-node-0] Failed to get ISM policies with templates: Failed to execute phase [query], all shards failed [2024-02-22T14:37:49,269][WARN ][o.o.s.SecurityAnalyticsPlugin] [opensearch-node-0] Failed to initialize LogType config index and builtin log types [2024-02-22T14:37:49,808][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Loading builtin types! [2024-02-22T14:37:49,811][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Indexing [429] fieldMappingDocs from logTypes: 24 [2024-02-22T14:37:49,825][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Loading builtin types! [2024-02-22T14:37:49,826][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Indexing [429] fieldMappingDocs from logTypes: 24 [2024-02-22T14:37:49,846][INFO ][o.o.s.i.DetectorIndexManagementService] [opensearch-node-0] info deleteOldIndices [2024-02-22T14:37:49,852][INFO ][o.o.s.i.DetectorIndexManagementService] [opensearch-node-0] No Old Correlation Indices to delete [2024-02-22T14:37:49,902][ERROR][o.o.s.c.ConfigurationLoaderSecurity7] [opensearch-node-0] Failure No shard available for [org.opensearch.action.get.MultiGetShardRequest@6023a645] retrieving configuration for [INTERNALUSERS, ACTIONGROUPS, CONFIG, ROLES, ROLESMAPPING, TENANTS, NODESDN, WHITELIST, ALLOWLIST, AUDIT] (index=.opendistro_security) [2024-02-22T14:37:49,907][ERROR][o.o.s.c.ConfigurationLoaderSecurity7] [opensearch-node-0] Failure No shard available for [org.opensearch.action.get.MultiGetShardRequest@6023a645] retrieving configuration for [INTERNALUSERS, ACTIONGROUPS, CONFIG, ROLES, ROLESMAPPING, TENANTS, NODESDN, WHITELIST, ALLOWLIST, AUDIT] (index=.opendistro_security) [2024-02-22T14:37:49,907][ERROR][o.o.s.c.ConfigurationLoaderSecurity7] [opensearch-node-0] Failure No shard available for [org.opensearch.action.get.MultiGetShardRequest@6023a645] retrieving configuration for [INTERNALUSERS, ACTIONGROUPS, CONFIG, ROLES, ROLESMAPPING, TENANTS, NODESDN, WHITELIST, ALLOWLIST, AUDIT] (index=.opendistro_security) [2024-02-22T14:37:49,923][ERROR][o.o.s.c.ConfigurationLoaderSecurity7] [opensearch-node-0] Failure No shard available for [org.opensearch.action.get.MultiGetShardRequest@6023a645] retrieving configuration for [INTERNALUSERS, ACTIONGROUPS, CONFIG, ROLES, ROLESMAPPING, TENANTS, NODESDN, WHITELIST, ALLOWLIST, AUDIT] (index=.opendistro_security) [2024-02-22T14:37:49,923][ERROR][o.o.s.c.ConfigurationLoaderSecurity7] [opensearch-node-0] Failure No shard available for [org.opensearch.action.get.MultiGetShardRequest@6023a645] retrieving configuration for [INTERNALUSERS, ACTIONGROUPS, CONFIG, ROLES, ROLESMAPPING, TENANTS, NODESDN, WHITELIST, ALLOWLIST, AUDIT] (index=.opendistro_security) [2024-02-22T14:37:49,923][ERROR][o.o.s.c.ConfigurationLoaderSecurity7] [opensearch-node-0] Failure No shard available for [org.opensearch.action.get.MultiGetShardRequest@6023a645] retrieving configuration for [INTERNALUSERS, ACTIONGROUPS, CONFIG, ROLES, ROLESMAPPING, TENANTS, NODESDN, WHITELIST, ALLOWLIST, AUDIT] (index=.opendistro_security) [2024-02-22T14:37:49,923][ERROR][o.o.s.c.ConfigurationLoaderSecurity7] [opensearch-node-0] Failure No shard available for [org.opensearch.action.get.MultiGetShardRequest@6023a645] retrieving configuration for [INTERNALUSERS, ACTIONGROUPS, CONFIG, ROLES, ROLESMAPPING, TENANTS, NODESDN, WHITELIST, ALLOWLIST, AUDIT] (index=.opendistro_security) [2024-02-22T14:37:49,924][ERROR][o.o.s.c.ConfigurationLoaderSecurity7] [opensearch-node-0] Failure No shard available for [org.opensearch.action.get.MultiGetShardRequest@6023a645] retrieving configuration for [INTERNALUSERS, ACTIONGROUPS, CONFIG, ROLES, ROLESMAPPING, TENANTS, NODESDN, WHITELIST, ALLOWLIST, AUDIT] (index=.opendistro_security) [2024-02-22T14:37:49,924][ERROR][o.o.s.c.ConfigurationLoaderSecurity7] [opensearch-node-0] Failure No shard available for [org.opensearch.action.get.MultiGetShardRequest@6023a645] retrieving configuration for [INTERNALUSERS, ACTIONGROUPS, CONFIG, ROLES, ROLESMAPPING, TENANTS, NODESDN, WHITELIST, ALLOWLIST, AUDIT] (index=.opendistro_security) [2024-02-22T14:37:49,924][ERROR][o.o.s.c.ConfigurationLoaderSecurity7] [opensearch-node-0] Failure No shard available for [org.opensearch.action.get.MultiGetShardRequest@6023a645] retrieving configuration for [INTERNALUSERS, ACTIONGROUPS, CONFIG, ROLES, ROLESMAPPING, TENANTS, NODESDN, WHITELIST, ALLOWLIST, AUDIT] (index=.opendistro_security) [2024-02-22T14:37:50,141][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opendistro-alerting-alerts/tGD404NdRwup4yqltXPNPA] [2024-02-22T14:37:50,430][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.ql-datasources/G5Dgp3FyQISwfDaSe4iFqg] [2024-02-22T14:37:50,447][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opendistro-ism-managed-index-history-2024.02.22-1/p154HFwPT5CAW7VT135d8A] [2024-02-22T14:37:50,485][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.ds-apps-000001/zB6J0E55RYiqE4dE4ekV-Q] [2024-02-22T14:37:50,729][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opendistro-ism-config/41vAS6KjRqyV58Dk8y9bTg] [2024-02-22T14:37:50,730][INFO ][o.o.j.JobSchedulerPlugin ] [opensearch-node-0] JobSweeper started listening to operations on index .opendistro-ism-config [2024-02-22T14:37:50,790][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opendistro-alerting-config/2p6K58BnS5-1t6AzRptnWA] [2024-02-22T14:37:50,840][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opendistro_security/dM9at5twRqmJVGq4NEkqsA] [2024-02-22T14:37:50,863][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opendistro-job-scheduler-lock/hOImWzNjS1iDfJPlkM7TKQ] [2024-02-22T14:37:51,088][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/get [2024-02-22T14:37:51,122][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:51,463][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:51,579][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:51,667][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:51,867][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:52,081][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opensearch-sap-pre-packaged-rules-config/zVowVG92Q2C8tCi-u-2BTw] [2024-02-22T14:37:52,139][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opendistro-alerting-alert-history-2024.02.21-1/nPwbeyZxT-acwmFLzCIZoQ] [2024-02-22T14:37:52,236][DEPRECATION][o.o.d.i.m.IdFieldMapper ] [opensearch-node-0] Loading the fielddata on the _id field is deprecated and will be removed in future versions. If you require sorting or aggregating on this field you should also include the id in the body of your documents, and map this field as a keyword field that has [doc_values] enabled [2024-02-22T14:37:52,314][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:52,449][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:52,561][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:52,566][INFO ][o.o.c.r.a.AllocationService] [opensearch-node-0] Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[.opendistro-alerting-alert-history-2024.02.21-1][0], [.opendistro_security][0]]]). [2024-02-22T14:37:52,638][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:52,749][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:52,809][INFO ][o.o.a.c.s.JobScheduler ] [opensearch-node-0] Scheduling jobId : oXZ6y40B07tekoKrWWal, name: Cluster health [2024-02-22T14:37:52,840][INFO ][o.o.j.s.JobScheduler ] [opensearch-node-0] Scheduling job id zB6J0E55RYiqE4dE4ekV-Q for index .opendistro-ism-config . [2024-02-22T14:37:52,847][INFO ][o.o.j.s.JobScheduler ] [opensearch-node-0] Will delay 48821 miliseconds for next execution of job .ds-apps-000001 [2024-02-22T14:37:53,090][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opensearch-notifications-config/AjbGHzN-R8SgoQF2KzYpVg] [2024-02-22T14:37:53,142][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.kibana_1/YJBGPCC9QyyHEFPb6spkGg] [2024-02-22T14:37:53,209][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.plugins-ml-config/FWHqmIH1SNOUjjXISJXteg] [2024-02-22T14:37:53,253][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opensearch-sap-log-types-config/8UltE6AFTES5ufbkQQh03Q] [2024-02-22T14:37:53,287][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opensearch-observability/eyh-kvyiQze7783XlkFxaQ] [2024-02-22T14:37:53,390][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:53,620][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/get [2024-02-22T14:37:53,708][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:53,871][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:53,945][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.ql-datasources][0][recover to opensearch-node-1] finalizing recovery took [13ms] [2024-02-22T14:37:53,957][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro-alerting-alerts][0][recover to opensearch-node-1] finalizing recovery took [39.4ms] [2024-02-22T14:37:53,969][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro-alerting-config][0][recover to opensearch-node-1] finalizing recovery took [14.8ms] [2024-02-22T14:37:53,974][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro-ism-managed-index-history-2024.02.22-1][0][recover to opensearch-node-1] finalizing recovery took [41.1ms] [2024-02-22T14:37:53,988][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro-job-scheduler-lock][0][recover to opensearch-node-1] finalizing recovery took [28.6ms] [2024-02-22T14:37:54,053][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:54,252][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:54,289][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro_security][0][recover to opensearch-node-1] finalizing recovery took [8.6ms] [2024-02-22T14:37:54,357][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro-ism-config][0][recover to opensearch-node-1] finalizing recovery took [18.3ms] [2024-02-22T14:37:54,421][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:54,434][INFO ][o.o.c.r.a.AllocationService] [opensearch-node-0] Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.opendistro-ism-config][0]]]). [2024-02-22T14:37:54,503][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:37:54,512][INFO ][o.o.j.s.JobScheduler ] [opensearch-node-0] Descheduling jobId: zB6J0E55RYiqE4dE4ekV-Q [2024-02-22T14:37:56,148][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/get [2024-02-22T14:37:58,666][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/get [2024-02-22T14:37:58,794][INFO ][o.o.m.a.MLModelAutoReDeployer] [opensearch-node-0] Index not found, not performing auto reloading! [2024-02-22T14:37:58,795][INFO ][o.o.m.c.MLCommonsClusterManagerEventListener] [opensearch-node-0] Starting ML sync up job... [2024-02-22T14:38:01,181][ERROR][o.o.s.f.SecurityFilter ] [opensearch-node-0] OpenSearch Security not initialized for indices:admin/get [2024-02-22T14:38:03,311][INFO ][stdout ] [opensearch-node-0] [FINE] No subscribers registered for event class org.opensearch.security.securityconf.DynamicConfigFactory$NodesDnModelImpl [2024-02-22T14:38:03,312][INFO ][stdout ] [opensearch-node-0] [FINE] No subscribers registered for event class org.greenrobot.eventbus.NoSubscriberEvent [2024-02-22T14:38:03,313][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing on REST API is enabled. [2024-02-22T14:38:03,314][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] [AUTHENTICATED, GRANTED_PRIVILEGES] are excluded from REST API auditing. [2024-02-22T14:38:03,314][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing on Transport API is enabled. [2024-02-22T14:38:03,316][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] [AUTHENTICATED, GRANTED_PRIVILEGES] are excluded from Transport API auditing. [2024-02-22T14:38:03,317][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing of request body is enabled. [2024-02-22T14:38:03,318][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Bulk requests resolution is disabled during request auditing. [2024-02-22T14:38:03,318][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Index resolution is enabled during request auditing. [2024-02-22T14:38:03,318][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Sensitive headers auditing is enabled. [2024-02-22T14:38:03,319][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing requests from kibanaserver users is disabled. [2024-02-22T14:38:03,319][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing request headers is disabled. [2024-02-22T14:38:03,328][WARN ][o.o.s.a.r.AuditMessageRouter] [opensearch-node-0] No endpoint configured for categories [BAD_HEADERS, FAILED_LOGIN, MISSING_PRIVILEGES, GRANTED_PRIVILEGES, OPENDISTRO_SECURITY_INDEX_ATTEMPT, SSL_EXCEPTION, AUTHENTICATED, INDEX_EVENT, COMPLIANCE_DOC_READ, COMPLIANCE_DOC_WRITE, COMPLIANCE_EXTERNAL_CONFIG, COMPLIANCE_INTERNAL_CONFIG_READ, COMPLIANCE_INTERNAL_CONFIG_WRITE], using default endpoint [2024-02-22T14:38:03,329][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing of external configuration is disabled. [2024-02-22T14:38:03,329][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing of internal configuration is disabled. [2024-02-22T14:38:03,329][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing only metadata information for read request is disabled. [2024-02-22T14:38:03,330][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing will watch {} for read requests. [2024-02-22T14:38:03,330][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing read operation requests from kibanaserver users is disabled. [2024-02-22T14:38:03,330][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing only metadata information for write request is disabled. [2024-02-22T14:38:03,331][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing diffs for write requests is disabled. [2024-02-22T14:38:03,331][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing write operation requests from kibanaserver users is disabled. [2024-02-22T14:38:03,331][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Auditing will watch for write requests. [2024-02-22T14:38:03,331][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] .opendistro_security is used as internal security index. [2024-02-22T14:38:03,332][INFO ][o.o.s.a.i.AuditLogImpl ] [opensearch-node-0] Internal index used for posting audit logs is null [2024-02-22T14:38:03,332][INFO ][o.o.s.c.ConfigurationRepository] [opensearch-node-0] Hot-reloading of audit configuration is enabled [2024-02-22T14:38:03,333][INFO ][o.o.s.c.ConfigurationRepository] [opensearch-node-0] Node 'opensearch-node-0' initialized [2024-02-22T14:38:08,881][INFO ][o.o.m.c.MLSyncUpCron ] [opensearch-node-0] ML configuration already initialized, no action needed [2024-02-22T14:38:35,041][INFO ][o.o.c.s.ClusterSettings ] [opensearch-node-0] updating [cluster.routing.allocation.enable] from [all] to [primaries] [2024-02-22T14:38:35,047][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:38:48,749][INFO ][o.o.i.i.ManagedIndexCoordinator] [opensearch-node-0] Performing move cluster state metadata. [2024-02-22T14:38:48,751][INFO ][o.o.i.i.MetadataService ] [opensearch-node-0] Doing metadata migration 1 time. [2024-02-22T14:38:48,754][INFO ][o.o.i.i.MetadataService ] [opensearch-node-0] Corrupt managed indices with outdated index uuid in metadata: [] [2024-02-22T14:38:49,183][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Performing migration of destination data. [2024-02-22T14:38:49,238][INFO ][k.j.i.ClassReference ] [opensearch-node-0] Need to migrate 0 email accounts, 0 email groups and 0 destinations (0 configs total) [2024-02-22T14:39:05,298][INFO ][o.o.c.c.FollowersChecker ] [opensearch-node-0] FollowerChecker{discoveryNode={opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}, failureCountSinceLastSuccess=0, [cluster.fault_detection.follower_check.retry_count]=3} disconnected [2024-02-22T14:39:05,299][INFO ][o.o.c.c.FollowersChecker ] [opensearch-node-0] FollowerChecker{discoveryNode={opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}, failureCountSinceLastSuccess=0, [cluster.fault_detection.follower_check.retry_count]=3} marking node as faulty [2024-02-22T14:39:05,312][INFO ][o.o.c.r.a.AllocationService] [opensearch-node-0] updating number_of_replicas to [0] for indices [.ql-datasources, .kibana_1, .opendistro_security, .opensearch-observability, .plugins-ml-config, .opensearch-sap-log-types-config, .opensearch-notifications-config] [2024-02-22T14:39:05,319][INFO ][o.o.c.s.MasterService ] [opensearch-node-0] node-left[{opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true} reason: disconnected], term: 9, version: 149, delta: removed {{opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}} [2024-02-22T14:39:05,327][WARN ][o.o.c.s.MasterService ] [opensearch-node-0] failing [node-left[{opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true} reason: disconnected]]: failed to commit cluster state version [149] org.opensearch.cluster.coordination.FailedToCommitClusterStateException: publication failed at org.opensearch.cluster.coordination.Coordinator$CoordinatorPublication$4.onFailure(Coordinator.java:1752) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.action.ActionRunnable.onFailure(ActionRunnable.java:104) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:54) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.OpenSearchExecutors$DirectExecutorService.execute(OpenSearchExecutors.java:343) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ListenableFuture.notifyListener(ListenableFuture.java:120) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ListenableFuture.addListener(ListenableFuture.java:82) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator$CoordinatorPublication.onCompletion(Coordinator.java:1663) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Publication.onPossibleCompletion(Publication.java:146) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Publication.onPossibleCommitFailure(Publication.java:197) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Publication.start(Publication.java:93) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator.publish(Coordinator.java:1331) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.MasterService.publish(MasterService.java:355) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.MasterService.runTasks(MasterService.java:337) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.MasterService$Batcher.run(MasterService.java:212) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.TaskBatcher.runIfNotProcessed(TaskBatcher.java:204) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.TaskBatcher$BatchedTask.run(TaskBatcher.java:242) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run(ThreadContext.java:854) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.PrioritizedOpenSearchThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(PrioritizedOpenSearchThreadPoolExecutor.java:283) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.PrioritizedOpenSearchThreadPoolExecutor$TieBreakingPrioritizedRunnable.run(PrioritizedOpenSearchThreadPoolExecutor.java:246) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] Caused by: org.opensearch.cluster.coordination.FailedToCommitClusterStateException: non-failed nodes do not form a quorum at org.opensearch.cluster.coordination.Publication.onPossibleCommitFailure(Publication.java:195) ~[opensearch-2.12.0.jar:2.12.0] ... 13 more [2024-02-22T14:39:05,329][ERROR][o.o.c.c.Coordinator ] [opensearch-node-0] unexpected failure during [node-left] org.opensearch.cluster.coordination.FailedToCommitClusterStateException: publication failed at org.opensearch.cluster.coordination.Coordinator$CoordinatorPublication$4.onFailure(Coordinator.java:1752) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.action.ActionRunnable.onFailure(ActionRunnable.java:104) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:54) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.OpenSearchExecutors$DirectExecutorService.execute(OpenSearchExecutors.java:343) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ListenableFuture.notifyListener(ListenableFuture.java:120) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ListenableFuture.addListener(ListenableFuture.java:82) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator$CoordinatorPublication.onCompletion(Coordinator.java:1663) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Publication.onPossibleCompletion(Publication.java:146) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Publication.onPossibleCommitFailure(Publication.java:197) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Publication.start(Publication.java:93) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.Coordinator.publish(Coordinator.java:1331) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.MasterService.publish(MasterService.java:355) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.MasterService.runTasks(MasterService.java:337) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.MasterService$Batcher.run(MasterService.java:212) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.TaskBatcher.runIfNotProcessed(TaskBatcher.java:204) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.TaskBatcher$BatchedTask.run(TaskBatcher.java:242) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run(ThreadContext.java:854) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.PrioritizedOpenSearchThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(PrioritizedOpenSearchThreadPoolExecutor.java:283) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.PrioritizedOpenSearchThreadPoolExecutor$TieBreakingPrioritizedRunnable.run(PrioritizedOpenSearchThreadPoolExecutor.java:246) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] Caused by: org.opensearch.cluster.coordination.FailedToCommitClusterStateException: non-failed nodes do not form a quorum at org.opensearch.cluster.coordination.Publication.onPossibleCommitFailure(Publication.java:195) ~[opensearch-2.12.0.jar:2.12.0] ... 13 more [2024-02-22T14:39:05,333][INFO ][o.o.c.s.ClusterApplierService] [opensearch-node-0] cluster-manager node changed {previous [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}], current []}, term: 9, version: 148, reason: becoming candidate: Publication.onCompletion(false) [2024-02-22T14:39:05,344][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:39:05,344][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Reset destination migration process. [2024-02-22T14:39:05,344][WARN ][o.o.c.NodeConnectionsService] [opensearch-node-0] failed to connect to {opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true} (tried [1] times) org.opensearch.transport.ConnectTransportException: [opensearch-node-1][10.0.46.145:9300] connect_exception at org.opensearch.transport.TcpTransport$ChannelsConnectedListener.onFailure(TcpTransport.java:1077) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.core.action.ActionListener.lambda$toBiConsumer$2(ActionListener.java:217) ~[opensearch-core-2.12.0.jar:2.12.0] at org.opensearch.common.concurrent.CompletableContext.lambda$addListener$0(CompletableContext.java:57) ~[opensearch-common-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:863) ~[?:?] at java.base/java.util.concurrent.CompletableFuture.uniWhenCompleteStage(CompletableFuture.java:887) ~[?:?] at java.base/java.util.concurrent.CompletableFuture.whenComplete(CompletableFuture.java:2357) ~[?:?] at org.opensearch.common.concurrent.CompletableContext.addListener(CompletableContext.java:60) ~[opensearch-common-2.12.0.jar:2.12.0] at org.opensearch.transport.netty4.Netty4TcpChannel.addConnectListener(Netty4TcpChannel.java:136) ~[?:?] at org.opensearch.transport.TcpTransport.initiateConnection(TcpTransport.java:381) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TcpTransport.openConnection(TcpTransport.java:341) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.ClusterConnectionManager.internalOpenConnection(ClusterConnectionManager.java:274) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.ClusterConnectionManager.connectToNode(ClusterConnectionManager.java:157) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.connectToNode(TransportService.java:505) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.connectToNode(TransportService.java:485) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.NodeConnectionsService$ConnectionTarget$1.doRun(NodeConnectionsService.java:346) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:52) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.ArrayList.forEach(ArrayList.java:1596) ~[?:?] at org.opensearch.cluster.NodeConnectionsService.connectToNodes(NodeConnectionsService.java:159) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.ClusterApplierService.connectToNodesAndWait(ClusterApplierService.java:585) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.ClusterApplierService.applyChanges(ClusterApplierService.java:550) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.ClusterApplierService.runTask(ClusterApplierService.java:486) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.ClusterApplierService$UpdateTask.run(ClusterApplierService.java:188) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run(ThreadContext.java:854) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.PrioritizedOpenSearchThreadPoolExecutor$TieBreakingPrioritizedRunnable.runAndClean(PrioritizedOpenSearchThreadPoolExecutor.java:283) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.PrioritizedOpenSearchThreadPoolExecutor$TieBreakingPrioritizedRunnable.run(PrioritizedOpenSearchThreadPoolExecutor.java:246) ~[opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: opensearch-node-1/10.0.46.145:9300 Caused by: java.net.ConnectException: Connection refused at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[?:?] at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:682) ~[?:?] at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:973) ~[?:?] at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) ~[?:?] at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:335) ~[?:?] at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) ~[?:?] at io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(NioEventLoop.java:689) ~[?:?] at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:652) ~[?:?] at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) ~[?:?] at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) ~[?:?] at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[?:?] ... 1 more [2024-02-22T14:39:15,328][WARN ][o.o.c.c.ClusterFormationFailureHelper] [opensearch-node-0] cluster-manager not discovered or elected yet, an election requires at least 2 nodes with ids from [W2d_SGMZR6anZ6BDQnnybg, rARhXLDnSD-K8VikZ7AMoQ, FPaIa4EmQpiBH8AaRz-lTA], have discovered [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}] which is not a quorum; discovery will continue using [10.0.46.145:9300] from hosts providers and [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, {opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}] from last-known cluster state; node term 9, last-accepted version 148 in term 9 [2024-02-22T14:39:16,571][WARN ][r.suppressed ] [opensearch-node-0] path: /_cluster/health, params: {timeout=10000ms} org.opensearch.discovery.ClusterManagerNotDiscoveredException: null at org.opensearch.action.support.clustermanager.TransportClusterManagerNodeAction$AsyncSingleAction$2.onTimeout(TransportClusterManagerNodeAction.java:350) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.ClusterStateObserver$ContextPreservingListener.onTimeout(ClusterStateObserver.java:394) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.ClusterStateObserver$ObserverClusterStateListener.onTimeout(ClusterStateObserver.java:294) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.ClusterApplierService$NotifyTimeout.run(ClusterApplierService.java:709) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run(ThreadContext.java:854) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] [2024-02-22T14:39:25,330][WARN ][o.o.c.c.ClusterFormationFailureHelper] [opensearch-node-0] cluster-manager not discovered or elected yet, an election requires at least 2 nodes with ids from [W2d_SGMZR6anZ6BDQnnybg, rARhXLDnSD-K8VikZ7AMoQ, FPaIa4EmQpiBH8AaRz-lTA], have discovered [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}] which is not a quorum; discovery will continue using [10.0.46.145:9300] from hosts providers and [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, {opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}] from last-known cluster state; node term 9, last-accepted version 148 in term 9 [2024-02-22T14:39:26,578][WARN ][r.suppressed ] [opensearch-node-0] path: /_cluster/health, params: {timeout=10000ms} org.opensearch.discovery.ClusterManagerNotDiscoveredException: null at org.opensearch.action.support.clustermanager.TransportClusterManagerNodeAction$AsyncSingleAction$2.onTimeout(TransportClusterManagerNodeAction.java:350) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.ClusterStateObserver$ContextPreservingListener.onTimeout(ClusterStateObserver.java:394) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.ClusterStateObserver$ObserverClusterStateListener.onTimeout(ClusterStateObserver.java:294) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.ClusterApplierService$NotifyTimeout.run(ClusterApplierService.java:709) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run(ThreadContext.java:854) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] [2024-02-22T14:39:35,331][WARN ][o.o.c.c.ClusterFormationFailureHelper] [opensearch-node-0] cluster-manager not discovered or elected yet, an election requires at least 2 nodes with ids from [W2d_SGMZR6anZ6BDQnnybg, rARhXLDnSD-K8VikZ7AMoQ, FPaIa4EmQpiBH8AaRz-lTA], have discovered [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}] which is not a quorum; discovery will continue using [10.0.46.145:9300] from hosts providers and [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, {opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}] from last-known cluster state; node term 9, last-accepted version 148 in term 9 [2024-02-22T14:39:36,586][WARN ][r.suppressed ] [opensearch-node-0] path: /_cluster/health, params: {timeout=10000ms} org.opensearch.discovery.ClusterManagerNotDiscoveredException: null at org.opensearch.action.support.clustermanager.TransportClusterManagerNodeAction$AsyncSingleAction$2.onTimeout(TransportClusterManagerNodeAction.java:350) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.ClusterStateObserver$ContextPreservingListener.onTimeout(ClusterStateObserver.java:394) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.ClusterStateObserver$ObserverClusterStateListener.onTimeout(ClusterStateObserver.java:294) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.ClusterApplierService$NotifyTimeout.run(ClusterApplierService.java:709) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run(ThreadContext.java:854) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] [2024-02-22T14:39:45,332][WARN ][o.o.c.c.ClusterFormationFailureHelper] [opensearch-node-0] cluster-manager not discovered or elected yet, an election requires at least 2 nodes with ids from [W2d_SGMZR6anZ6BDQnnybg, rARhXLDnSD-K8VikZ7AMoQ, FPaIa4EmQpiBH8AaRz-lTA], have discovered [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}] which is not a quorum; discovery will continue using [10.0.46.145:9300] from hosts providers and [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, {opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}] from last-known cluster state; node term 9, last-accepted version 148 in term 9 [2024-02-22T14:39:46,592][WARN ][r.suppressed ] [opensearch-node-0] path: /_cluster/health, params: {timeout=10000ms} org.opensearch.discovery.ClusterManagerNotDiscoveredException: null at org.opensearch.action.support.clustermanager.TransportClusterManagerNodeAction$AsyncSingleAction$2.onTimeout(TransportClusterManagerNodeAction.java:350) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.ClusterStateObserver$ContextPreservingListener.onTimeout(ClusterStateObserver.java:394) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.ClusterStateObserver$ObserverClusterStateListener.onTimeout(ClusterStateObserver.java:294) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.service.ClusterApplierService$NotifyTimeout.run(ClusterApplierService.java:709) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingRunnable.run(ThreadContext.java:854) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] [2024-02-22T14:39:49,847][INFO ][o.o.c.c.JoinHelper ] [opensearch-node-0] failed to join {opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{Ndp92Fj5RFWNMbnkQ8n8Gg}{opensearch-node-1}{10.0.46.147:9300}{dm}{shard_indexing_pressure_enabled=true} with JoinRequest{sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, minimumTerm=9, optionalJoin=Optional[Join{term=10, lastAcceptedTerm=9, lastAcceptedVersion=148, sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, targetNode={opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{Ndp92Fj5RFWNMbnkQ8n8Gg}{opensearch-node-1}{10.0.46.147:9300}{dm}{shard_indexing_pressure_enabled=true}}]} org.opensearch.transport.NodeNotConnectedException: [opensearch-node-1][10.0.46.147:9300] Node not connected at org.opensearch.transport.ClusterConnectionManager.getConnection(ClusterConnectionManager.java:206) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.getConnection(TransportService.java:897) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.sendRequest(TransportService.java:856) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.sendJoinRequest(JoinHelper.java:384) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.sendJoinRequest(JoinHelper.java:312) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.lambda$new$2(JoinHelper.java:220) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceivedDecorate(SecuritySSLRequestHandler.java:206) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.transport.SecurityRequestHandler.messageReceivedDecorate(SecurityRequestHandler.java:317) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceived(SecuritySSLRequestHandler.java:154) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.OpenSearchSecurityPlugin$6$1.messageReceived(OpenSearchSecurityPlugin.java:795) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.indexmanagement.rollup.interceptor.RollupInterceptor$interceptHandler$1.messageReceived(RollupInterceptor.kt:114) [opensearch-index-management-2.12.0.0.jar:2.12.0.0] at org.opensearch.performanceanalyzer.transport.PerformanceAnalyzerTransportRequestHandler.messageReceived(PerformanceAnalyzerTransportRequestHandler.java:43) [opensearch-performance-analyzer-2.12.0.0.jar:2.12.0.0] at org.opensearch.transport.RequestHandlerRegistry.processMessageReceived(RequestHandlerRegistry.java:106) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.InboundHandler$RequestHandler.doRun(InboundHandler.java:480) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:913) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:52) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] [2024-02-22T14:39:49,849][INFO ][o.o.c.c.JoinHelper ] [opensearch-node-0] failed to join {opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{Ndp92Fj5RFWNMbnkQ8n8Gg}{opensearch-node-1}{10.0.46.147:9300}{dm}{shard_indexing_pressure_enabled=true} with JoinRequest{sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, minimumTerm=9, optionalJoin=Optional[Join{term=10, lastAcceptedTerm=9, lastAcceptedVersion=148, sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, targetNode={opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{Ndp92Fj5RFWNMbnkQ8n8Gg}{opensearch-node-1}{10.0.46.147:9300}{dm}{shard_indexing_pressure_enabled=true}}]} org.opensearch.transport.NodeNotConnectedException: [opensearch-node-1][10.0.46.147:9300] Node not connected at org.opensearch.transport.ClusterConnectionManager.getConnection(ClusterConnectionManager.java:206) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.getConnection(TransportService.java:897) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.sendRequest(TransportService.java:856) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.sendJoinRequest(JoinHelper.java:384) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.sendJoinRequest(JoinHelper.java:312) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.lambda$new$2(JoinHelper.java:220) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceivedDecorate(SecuritySSLRequestHandler.java:206) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.transport.SecurityRequestHandler.messageReceivedDecorate(SecurityRequestHandler.java:317) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceived(SecuritySSLRequestHandler.java:154) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.OpenSearchSecurityPlugin$6$1.messageReceived(OpenSearchSecurityPlugin.java:795) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.indexmanagement.rollup.interceptor.RollupInterceptor$interceptHandler$1.messageReceived(RollupInterceptor.kt:114) [opensearch-index-management-2.12.0.0.jar:2.12.0.0] at org.opensearch.performanceanalyzer.transport.PerformanceAnalyzerTransportRequestHandler.messageReceived(PerformanceAnalyzerTransportRequestHandler.java:43) [opensearch-performance-analyzer-2.12.0.0.jar:2.12.0.0] at org.opensearch.transport.RequestHandlerRegistry.processMessageReceived(RequestHandlerRegistry.java:106) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.InboundHandler$RequestHandler.doRun(InboundHandler.java:480) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:913) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:52) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] [2024-02-22T14:39:50,579][INFO ][o.o.c.c.JoinHelper ] [opensearch-node-0] failed to join {opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{Ndp92Fj5RFWNMbnkQ8n8Gg}{opensearch-node-1}{10.0.46.147:9300}{dm}{shard_indexing_pressure_enabled=true} with JoinRequest{sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, minimumTerm=10, optionalJoin=Optional[Join{term=11, lastAcceptedTerm=9, lastAcceptedVersion=148, sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, targetNode={opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{Ndp92Fj5RFWNMbnkQ8n8Gg}{opensearch-node-1}{10.0.46.147:9300}{dm}{shard_indexing_pressure_enabled=true}}]} org.opensearch.transport.NodeNotConnectedException: [opensearch-node-1][10.0.46.147:9300] Node not connected at org.opensearch.transport.ClusterConnectionManager.getConnection(ClusterConnectionManager.java:206) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.getConnection(TransportService.java:897) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.sendRequest(TransportService.java:856) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.sendJoinRequest(JoinHelper.java:384) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.sendJoinRequest(JoinHelper.java:312) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.lambda$new$2(JoinHelper.java:220) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceivedDecorate(SecuritySSLRequestHandler.java:206) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.transport.SecurityRequestHandler.messageReceivedDecorate(SecurityRequestHandler.java:317) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceived(SecuritySSLRequestHandler.java:154) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.OpenSearchSecurityPlugin$6$1.messageReceived(OpenSearchSecurityPlugin.java:795) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.indexmanagement.rollup.interceptor.RollupInterceptor$interceptHandler$1.messageReceived(RollupInterceptor.kt:114) [opensearch-index-management-2.12.0.0.jar:2.12.0.0] at org.opensearch.performanceanalyzer.transport.PerformanceAnalyzerTransportRequestHandler.messageReceived(PerformanceAnalyzerTransportRequestHandler.java:43) [opensearch-performance-analyzer-2.12.0.0.jar:2.12.0.0] at org.opensearch.transport.RequestHandlerRegistry.processMessageReceived(RequestHandlerRegistry.java:106) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.InboundHandler$RequestHandler.doRun(InboundHandler.java:480) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:913) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:52) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] [2024-02-22T14:39:50,583][INFO ][o.o.c.c.JoinHelper ] [opensearch-node-0] failed to join {opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{Ndp92Fj5RFWNMbnkQ8n8Gg}{opensearch-node-1}{10.0.46.147:9300}{dm}{shard_indexing_pressure_enabled=true} with JoinRequest{sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, minimumTerm=10, optionalJoin=Optional[Join{term=11, lastAcceptedTerm=9, lastAcceptedVersion=148, sourceNode={opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}, targetNode={opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{Ndp92Fj5RFWNMbnkQ8n8Gg}{opensearch-node-1}{10.0.46.147:9300}{dm}{shard_indexing_pressure_enabled=true}}]} org.opensearch.transport.NodeNotConnectedException: [opensearch-node-1][10.0.46.147:9300] Node not connected at org.opensearch.transport.ClusterConnectionManager.getConnection(ClusterConnectionManager.java:206) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.getConnection(TransportService.java:897) ~[opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.TransportService.sendRequest(TransportService.java:856) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.sendJoinRequest(JoinHelper.java:384) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.sendJoinRequest(JoinHelper.java:312) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.cluster.coordination.JoinHelper.lambda$new$2(JoinHelper.java:220) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceivedDecorate(SecuritySSLRequestHandler.java:206) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.transport.SecurityRequestHandler.messageReceivedDecorate(SecurityRequestHandler.java:317) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.ssl.transport.SecuritySSLRequestHandler.messageReceived(SecuritySSLRequestHandler.java:154) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.security.OpenSearchSecurityPlugin$6$1.messageReceived(OpenSearchSecurityPlugin.java:795) [opensearch-security-2.12.0.0.jar:2.12.0.0] at org.opensearch.indexmanagement.rollup.interceptor.RollupInterceptor$interceptHandler$1.messageReceived(RollupInterceptor.kt:114) [opensearch-index-management-2.12.0.0.jar:2.12.0.0] at org.opensearch.performanceanalyzer.transport.PerformanceAnalyzerTransportRequestHandler.messageReceived(PerformanceAnalyzerTransportRequestHandler.java:43) [opensearch-performance-analyzer-2.12.0.0.jar:2.12.0.0] at org.opensearch.transport.RequestHandlerRegistry.processMessageReceived(RequestHandlerRegistry.java:106) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.transport.InboundHandler$RequestHandler.doRun(InboundHandler.java:480) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:913) [opensearch-2.12.0.jar:2.12.0] at org.opensearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:52) [opensearch-2.12.0.jar:2.12.0] at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) [?:?] at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) [?:?] at java.base/java.lang.Thread.run(Thread.java:1583) [?:?] [2024-02-22T14:39:50,729][INFO ][o.o.c.s.MasterService ] [opensearch-node-0] elected-as-cluster-manager ([2] nodes joined)[{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true} elect leader, {opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{Ndp92Fj5RFWNMbnkQ8n8Gg}{opensearch-node-1}{10.0.46.147:9300}{dm}{shard_indexing_pressure_enabled=true} elect leader, _BECOME_CLUSTER_MANAGER_TASK_, _FINISH_ELECTION_], term: 12, version: 149, delta: cluster-manager node changed {previous [], current [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}]}, removed {{opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}}, added {{opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{Ndp92Fj5RFWNMbnkQ8n8Gg}{opensearch-node-1}{10.0.46.147:9300}{dm}{shard_indexing_pressure_enabled=true}} [2024-02-22T14:39:51,189][INFO ][o.o.c.s.ClusterApplierService] [opensearch-node-0] cluster-manager node changed {previous [], current [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}]}, removed {{opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{UEiKe5NUQ7miPm_V2rvQaw}{opensearch-node-1}{10.0.46.145:9300}{dm}{shard_indexing_pressure_enabled=true}}, added {{opensearch-node-1}{FPaIa4EmQpiBH8AaRz-lTA}{Ndp92Fj5RFWNMbnkQ8n8Gg}{opensearch-node-1}{10.0.46.147:9300}{dm}{shard_indexing_pressure_enabled=true}}, term: 12, version: 149, reason: Publication{term=12, version=149} [2024-02-22T14:39:51,294][INFO ][o.o.a.c.ADClusterEventListener] [opensearch-node-0] Cluster node changed, node removed: true, node added: true [2024-02-22T14:39:51,299][INFO ][o.o.a.c.HashRing ] [opensearch-node-0] Node removed: [FPaIa4EmQpiBH8AaRz-lTA] [2024-02-22T14:39:51,299][INFO ][o.o.a.c.HashRing ] [opensearch-node-0] Remove data node from AD version hash ring: FPaIa4EmQpiBH8AaRz-lTA [2024-02-22T14:39:51,300][INFO ][o.o.a.c.HashRing ] [opensearch-node-0] Node added: [FPaIa4EmQpiBH8AaRz-lTA] [2024-02-22T14:39:51,312][INFO ][o.o.a.c.HashRing ] [opensearch-node-0] Add data node to AD version hash ring: FPaIa4EmQpiBH8AaRz-lTA [2024-02-22T14:39:51,313][INFO ][o.o.a.c.HashRing ] [opensearch-node-0] All nodes with known AD version: {W2d_SGMZR6anZ6BDQnnybg=ADNodeInfo{version=2.12.0, isEligibleDataNode=true}, FPaIa4EmQpiBH8AaRz-lTA=ADNodeInfo{version=2.12.0, isEligibleDataNode=true}} [2024-02-22T14:39:51,313][INFO ][o.o.a.c.ADClusterEventListener] [opensearch-node-0] Hash ring build result: true [2024-02-22T14:39:51,327][INFO ][o.o.j.s.JobScheduler ] [opensearch-node-0] Scheduling job id zB6J0E55RYiqE4dE4ekV-Q for index .opendistro-ism-config . [2024-02-22T14:39:51,328][INFO ][o.o.j.s.JobScheduler ] [opensearch-node-0] Will delay 61038 miliseconds for next execution of job .ds-apps-000001 [2024-02-22T14:39:51,341][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:39:51,361][INFO ][o.o.i.i.IndexStateManagementHistory] [opensearch-node-0] .opendistro-ism-managed-index-history-write not rolled over. Conditions were: {[max_docs: 2500000]=false, [max_age: 1d]=false} [2024-02-22T14:39:51,383][INFO ][o.o.a.a.AlertIndices ] [opensearch-node-0] .opendistro-alerting-alert-history-write not rolled over. Conditions were: {[max_age: 30d]=false, [max_docs: 1000]=false} [2024-02-22T14:39:51,369][INFO ][o.o.i.i.ManagedIndexCoordinator] [opensearch-node-0] Cache cluster manager node onClusterManager time: 1708612791369 [2024-02-22T14:39:51,393][INFO ][o.o.c.r.DelayedAllocationService] [opensearch-node-0] scheduling reroute for delayed shards in [59.3s] (17 delayed shards) [2024-02-22T14:39:51,470][INFO ][o.o.d.PeerFinder ] [opensearch-node-0] setting findPeersInterval to [1s] as node commission status = [true] for local node [{opensearch-node-0}{W2d_SGMZR6anZ6BDQnnybg}{ok1LbNjpR3aA_9mpTDmqjA}{opensearch-node-0}{10.0.46.149:9300}{dm}{shard_indexing_pressure_enabled=true}] [2024-02-22T14:39:51,624][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:39:52,402][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Loading builtin types! [2024-02-22T14:39:52,403][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Indexing [429] fieldMappingDocs from logTypes: 24 [2024-02-22T14:39:52,418][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Loading builtin types! [2024-02-22T14:39:52,419][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Indexing [429] fieldMappingDocs from logTypes: 24 [2024-02-22T14:39:52,437][INFO ][o.o.s.i.DetectorIndexManagementService] [opensearch-node-0] info deleteOldIndices [2024-02-22T14:39:52,438][INFO ][o.o.s.i.DetectorIndexManagementService] [opensearch-node-0] No Old Correlation Indices to delete [2024-02-22T14:39:52,644][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Indexing [429] fieldMappingDocs [2024-02-22T14:39:52,647][INFO ][o.o.s.l.LogTypeService ] [opensearch-node-0] Indexing [429] fieldMappingDocs [2024-02-22T14:39:53,135][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:39:53,161][INFO ][o.o.p.PluginsService ] [opensearch-node-0] PluginService:onIndexModule index:[.opensearch-observability/eyh-kvyiQze7783XlkFxaQ] [2024-02-22T14:39:53,530][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:39:53,543][INFO ][o.o.c.r.a.AllocationService] [opensearch-node-0] Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[.ds-apps-000001][1], [.ds-apps-000001][5]]]). [2024-02-22T14:39:53,646][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:40:01,391][INFO ][o.o.m.a.MLModelAutoReDeployer] [opensearch-node-0] Index not found, not performing auto reloading! [2024-02-22T14:40:01,391][INFO ][o.o.m.c.MLCommonsClusterManagerEventListener] [opensearch-node-0] Starting ML sync up job... [2024-02-22T14:40:11,393][INFO ][o.o.m.c.MLSyncUpCron ] [opensearch-node-0] ML configuration already initialized, no action needed [2024-02-22T14:40:48,099][INFO ][o.o.c.s.ClusterSettings ] [opensearch-node-0] updating [cluster.routing.allocation.enable] from [primaries] to [all] [2024-02-22T14:40:48,101][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:40:48,347][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:40:48,949][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:40:49,208][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro_security][0][recover to opensearch-node-1] finalizing recovery took [56.2ms] [2024-02-22T14:40:49,210][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro-ism-managed-index-history-2024.02.22-1][0][recover to opensearch-node-1] finalizing recovery took [37ms] [2024-02-22T14:40:49,287][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro-alerting-config][0][recover to opensearch-node-1] finalizing recovery took [123.6ms] [2024-02-22T14:40:49,307][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:40:49,366][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro-job-scheduler-lock][0][recover to opensearch-node-1] finalizing recovery took [21.9ms] [2024-02-22T14:40:49,467][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.ql-datasources][0][recover to opensearch-node-1] finalizing recovery took [36.3ms] [2024-02-22T14:40:49,473][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:40:49,539][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro-alerting-alerts][0][recover to opensearch-node-1] finalizing recovery took [19.9ms] [2024-02-22T14:40:49,669][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:40:49,773][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:40:49,799][INFO ][o.o.i.r.RecoverySourceHandler] [opensearch-node-0] [.opendistro-ism-config][0][recover to opensearch-node-1] finalizing recovery took [36.9ms] [2024-02-22T14:40:50,043][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:40:50,148][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Detected cluster change event for destination migration [2024-02-22T14:40:50,148][INFO ][o.o.j.s.JobScheduler ] [opensearch-node-0] Descheduling jobId: zB6J0E55RYiqE4dE4ekV-Q [2024-02-22T14:40:51,346][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Performing migration of destination data. [2024-02-22T14:40:51,384][INFO ][k.j.i.ClassReference ] [opensearch-node-0] Need to migrate 0 email accounts, 0 email groups and 0 destinations (0 configs total) [2024-02-22T14:40:51,391][INFO ][o.o.i.i.ManagedIndexCoordinator] [opensearch-node-0] Performing move cluster state metadata. [2024-02-22T14:40:51,391][INFO ][o.o.i.i.MetadataService ] [opensearch-node-0] Doing metadata migration 2 time. [2024-02-22T14:40:51,391][INFO ][o.o.i.i.MetadataService ] [opensearch-node-0] Corrupt managed indices with outdated index uuid in metadata: [] [2024-02-22T14:40:52,717][ERROR][o.o.s.l.LogTypeService ] [opensearch-node-0] FieldMappingDoc Bulk Index had failures: [2024-02-22T14:40:52,724][ERROR][o.o.s.l.LogTypeService ] [opensearch-node-0] FieldMappingDoc Bulk Index had failures: [2024-02-22T14:41:51,348][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Cancel background destination migration process. [2024-02-22T14:41:51,348][INFO ][o.o.a.u.d.DestinationMigrationCoordinator] [opensearch-node-0] Performing migration of destination data. [2024-02-22T14:41:51,348][INFO ][k.j.i.ClassReference ] [opensearch-node-0] Destination migration has finished. [2024-02-22T14:41:51,392][INFO ][o.o.i.i.ManagedIndexCoordinator] [opensearch-node-0] Performing move cluster state metadata. [2024-02-22T14:41:51,392][INFO ][o.o.i.i.MetadataService ] [opensearch-node-0] Doing metadata migration 3 time. [2024-02-22T14:41:51,393][INFO ][o.o.i.i.MetadataService ] [opensearch-node-0] Corrupt managed indices with outdated index uuid in metadata: [] ```

image

3h+ stuck in recovery of 5kb index

image

GET /_cluster/allocation/explain?pretty ```json { "error": { "root_cause": [ { "type": "illegal_argument_exception", "reason": "unable to find any unassigned shards to explain [ClusterAllocationExplainRequest[useAnyUnassignedShard=true,includeYesDecisions?=false]" } ], "type": "illegal_argument_exception", "reason": "unable to find any unassigned shards to explain [ClusterAllocationExplainRequest[useAnyUnassignedShard=true,includeYesDecisions?=false]" }, "status": 400 } ```
peternied commented 6 months ago

@vchirikov Could you open an new issue with your reproduction, in the OpenSearch operator repository?

peternied commented 6 months ago

@mvanderlee Thanks for reaching out offline on the slack, I've taking a look at the logs.

I get a picture of the cluster state with the following exception - it looks like the SecurityAnalytics plugin (see messages with SecurityAnalyticsException.java ) & alerting plugin (see messages with DestinationMigrationCoordinator ) is in a very tight request/retry loop that is trying to fetch data and being rejected because there are too many requests in flight and there is too much memory in use (see messages with SearchBackpressureService ) - from the inner cause rejection the completed tasks number is 25M items.

You can troubleshoot further by using the _cat/tasks API to find any long running tasks and _cat/pending_tasks API to see what long running tasks, maybe this can point to a specific operation that is stuck/hogging resources that can be canceled/cleared. If you can afford to play around with the configuration starting up the service with some plugins disabled might help let the startup phase success and then onboard ism, then alerting, then other plugins.

I'd recommend troubleshooting those errors by looking at with forum.opensearch.org. It seems like there could be a 'task' explosion due to the index management plugin or one of the other plugins.

This is the bounds of my expertise - best of luck.

mvanderlee commented 6 months ago

Okay, so it appears then that the cluster is reporting itself as ready and starts to ingest before it's fully recovered. But in our case, the number of events coming in caused so much backpressure that it interfered with the recovery phase. Until something this https://github.com/opensearch-project/OpenSearch/issues/11061 is implemented, we'd really need to ensure that we're not ingesting logs until the cluster is fully recovered.

This will require a custom sidecar application that does a detailed healthcheck on the cluster and provides an HTTP endpoint for the proxy or load balancer to call.

kkhatua commented 4 days ago

@mvanderlee

11061 is intended to go out for 2.17. However, it seems odd that initialization should be stuck. If you are repro-ing the issue, hot_threads might be one way to check if there are genuinely threads stuck or is there something missing in the shard state being currently updated.