From dd9c22912d9855493428354e308a5c6824f6cf26 Mon Sep 17 00:00:00 2001 From: Gaurav Chandani Date: Wed, 10 Apr 2024 12:35:29 +0530 Subject: [PATCH] Disabled batch mode as per the feedback on PR Signed-off-by: Gaurav Chandani --- .../cluster/routing/allocation/ExistingShardsAllocator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main/java/org/opensearch/cluster/routing/allocation/ExistingShardsAllocator.java b/server/src/main/java/org/opensearch/cluster/routing/allocation/ExistingShardsAllocator.java index d9291a836957c..6b774a1346be0 100644 --- a/server/src/main/java/org/opensearch/cluster/routing/allocation/ExistingShardsAllocator.java +++ b/server/src/main/java/org/opensearch/cluster/routing/allocation/ExistingShardsAllocator.java @@ -77,7 +77,7 @@ public interface ExistingShardsAllocator { */ Setting EXISTING_SHARDS_ALLOCATOR_BATCH_MODE = Setting.boolSetting( "cluster.allocator.existing_shards_allocator.batch_enabled", - true, + false, Setting.Property.NodeScope );