From 111dc51477f1e3d3ec238fc1b98bff5d59848f0f Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Wed, 14 Aug 2024 09:48:39 +0200 Subject: [PATCH] Add info about Meilisearch 1.9.0 upgrade in the deploiement guide Part of request #39025 Meilisearch: 1.7.6 -> 1.9.0 --- languages/en/deployment-guide/15.x.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/languages/en/deployment-guide/15.x.rst b/languages/en/deployment-guide/15.x.rst index baf1a720..d8e3147d 100644 --- a/languages/en/deployment-guide/15.x.rst +++ b/languages/en/deployment-guide/15.x.rst @@ -22,6 +22,23 @@ nginx directive ``server_names_hash_bucket_size`` is now managed automatically Tuleap now automatically sets the nginx directive ``server_names_hash_bucket_size`` to an appropriate value. If you had manually set it in your configuration in order to manage a long domain name, you will need to remove it. +Upgrade of the local Meilisearch instance from 1.7.6 to 1.9.0 and data structure change +--------------------------------------------------------------------------------------- + +If you have deployed a :ref:`local Meilisearch instance ` it will be automatically +upgraded to the 1.9.0 version. The process is automatic when the server is restarted after its update. + +The upgrade will re-index all the items. Until the process is completed, some items might not be found when +searching, and an increased load on your instance is expected. + +Administrators having deployed an independent Meilisearch instance should upgrade it and clear all the existing entries. +A change in Tuleap requires to re-index all the items, after the upgrade you must run: + +.. sourcecode:: shell + + tuleap full-text-search:identify-all-items-to-index + tuleap full-text-search:index-all-pending-items + Tuleap 15.11 ============