opensearch-project / OpenSearch

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

[BUG] IndexNodeLeftDelayedTimeOut Setting NOT getting honoured when ExistingShardsAllocatorBatchMode is enabled. #13962

Open gargharsh3134 opened 4 months ago

gargharsh3134 commented 4 months ago

Describe the bug

For an index with greater than or equal to 2 replica shards, the INDEX_DELAYED_NODE_LEFT_TIMEOUT_SETTING is not getting honoured when EXISTING_SHARDS_ALLOCATOR_BATCH_MODE is enabled. When the nodes (on which the replica shards are allocated) drop from the cluster, the replica shards get allocated to different nodes instead of being delayed for the time specified in the index setting.

This incorrect allocation only occurs when more than 1 replica shards of a shardID are unassigned due to node drops. In the batch mode enabled setting, allocation decision is being made and executed for only one out all the replica shards belonging to a shardID, and thereby the left over replica shards are not getting marked as ignored during ReplicaShardBatchAllocator run. The subsequent run of BalancedShardAllocator (which runs after ReplicaShardBatchAllocator) ends up allocating those unassigned replica shards, which should instead have been delayed had the decision been taken and executed.

https://github.com/opensearch-project/OpenSearch/blob/581fcd2c3204f84ff93c626be41698ec35641680/server/src/main/java/org/opensearch/gateway/ShardsBatchGatewayAllocator.java#L215-L220

Related component

Cluster Manager

To Reproduce

  1. Create a cluster with 6 Nodes.
  2. Create an index with 1 primary shard and 3 replica shards.
  3. Set a high value (60m) of INDEX_DELAYED_NODE_LEFT_TIMEOUT_SETTING for the index created as part of step 2.
  4. Stop 2 out of the 3 nodes having replica shards assigned.
  5. The cluster would turn green, and both the replica shards will end up getting assigned.

Expected behavior

The replica shards should remain unassigned for the duration specified in the index's INDEX_DELAYED_NODE_LEFT_TIMEOUT_SETTING.

Additional Details

Plugins Please list all plugins currently enabled.

Screenshots If applicable, add screenshots to help explain your problem.

Host/Environment (please complete the following information):

Additional context Add any other context about the problem here.

peternied commented 4 months ago

[Triage - attendees 1 2 3 4 5 6 7] @gargharsh3134 Thanks for creating this issue, could you create a pull request to address?

gargharsh3134 commented 4 months ago

@peternied Fix will be tracked as part of #13748 and the integration test to replicate this behaviour has been added as part of #13813. Thanks!