From a7bf256d8dbecfa8beb59c1e5116445da4f7a8fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Pablo=20Villaf=C3=A1=C3=B1ez?= Date: Mon, 23 Jun 2025 13:18:10 +0200 Subject: [PATCH] chore: add changelog entry for PR 11029 --- changelog/unreleased/search_scaling.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 changelog/unreleased/search_scaling.md diff --git a/changelog/unreleased/search_scaling.md b/changelog/unreleased/search_scaling.md new file mode 100644 index 00000000000..7f3f810269e --- /dev/null +++ b/changelog/unreleased/search_scaling.md @@ -0,0 +1,9 @@ +Enhancement: Allow scaling the search service + +Previously, the search service locked the index for its whole lifetime, +so any other search service wouldn't be able to access to the index. With this +change, the search service can be configure to lock the index per operation, +so other search services can access the index as long as there is no operation +ongoing. + +https://github.com/owncloud/ocis/pull/11029