From 71f40b4963bbe679abcd04677c0d36ff80815ef8 Mon Sep 17 00:00:00 2001 From: nojaf Date: Mon, 2 Feb 2026 14:17:36 +0100 Subject: [PATCH] docs(changeset): simplify changelog entry for elasticsearch bulk refresh fix Signed-off-by: nojaf --- .changeset/fix-opensearch-bulk-refresh.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.changeset/fix-opensearch-bulk-refresh.md b/.changeset/fix-opensearch-bulk-refresh.md index 29657235a1..17a791519d 100644 --- a/.changeset/fix-opensearch-bulk-refresh.md +++ b/.changeset/fix-opensearch-bulk-refresh.md @@ -2,8 +2,4 @@ '@backstage/plugin-search-backend-module-elasticsearch': patch --- -Fixed inefficient bulk refresh behavior where `refreshOnCompletion: true` caused a full cluster refresh of all indexes instead of refreshing only the specific index being populated. - -When using the Elasticsearch/OpenSearch bulk helper, passing `refreshOnCompletion: true` triggers a refresh of `_all` indexes. This change restores the original behavior of passing the specific index name, ensuring only the target index is refreshed after bulk indexing completes. - -This fix improves performance for OpenSearch/Elasticsearch deployments, especially in multi-tenant environments or clusters with many indexes. +Fixed bulk indexing to refresh only the target index instead of all indexes, improving performance in multi-index deployments.