diff --git a/en/reference/bm25.html b/en/reference/bm25.html index a3246865c0..f47640e762 100644 --- a/en/reference/bm25.html +++ b/en/reference/bm25.html @@ -362,22 +362,17 @@

Example

-If the enable-bm25 flag is turned on after documents are already fed, -some extra steps must be executed to prepare the posting lists in the memory and disk indexes for this field. -For each content node do the following: -

    -
  1. Perform memory index flush using - vespa-proton-cmd: -
    -vespa-proton-cmd --local triggerFlush
    -
    -
  2. -
  3. Perform disk index fusion, - preparing the posting lists for use with bm25: +If the enable-bm25 flag is turned on after documents are +already fed then proton performs +a memory index flush +followed by a disk index +fusion to prepare the posting lists for use with bm25. + +Use the custom +component state API on each content node and +examine pending_urgent_flush to determine if the +preparation is still ongoing:
    -vespa-proton-cmd --local triggerFlush
    +/state/v1/custom/component/documentdb/mydoctype/subdb/ready/index
     
    -
  4. -

-