docs(changeset): simplify changelog entry for elasticsearch bulk refresh fix

Signed-off-by: nojaf <florian.verdonck@outlook.com>
This commit is contained in:
nojaf
2026-02-02 14:17:36 +01:00
parent 7021165618
commit 71f40b4963
+1 -5
View File
@@ -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.