From 78cbe85047a1da6a993757aa56b36d313f8be244 Mon Sep 17 00:00:00 2001 From: vankichi Date: Wed, 24 Jan 2024 17:48:22 +0900 Subject: [PATCH] :pencil: Fix Signed-off-by: vankichi --- docs/performance/tuning-search-performance.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/performance/tuning-search-performance.md b/docs/performance/tuning-search-performance.md index 5f1b881d0ca..a016d4f93fe 100644 --- a/docs/performance/tuning-search-performance.md +++ b/docs/performance/tuning-search-performance.md @@ -44,12 +44,11 @@ There are two viewpoints, client-side and cluster-side, for improving search per On the client side, parameters of `Search.Config` will affect the search result. -| | description | how does it affect? | memo | -| :------------------------------------------------------- | :------------------------------------------------------------ | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------- | -| radius | the search radius for NGT | Define the search range when NGT searches the nearest neighbors | -1 is recommended. | -| epsilon | the search coefficient for NGT | Expansion factor of the NGT search range. | -| Search operation time increases when the epsilon is big. | recommended value range: `0.01 ~ 0.5`
default value: `0.1` | -| timeout(ns) | max time duration until receiving search results. | An error will be returned if the set `num` search results cannot be obtained within the set time.
By setting `min_num`, the search results will be returned if more than `min_num` can be searched within the time. | default value: `3,000,000,000ns` | +| | description | how does it affect? | memo | +| :---------- | :------------------------------------------------ | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------ | +| radius | the search radius for NGT | Define the search range when NGT searches the nearest neighbors | -1 is recommended. | +| epsilon | the search coefficient for NGT | Expansion factor of the NGT search range.
Search operation time increases when the epsilon is big. | recommended value range: `0.01 ~ 0.5`
default value: `0.1` | +| timeout(ns) | max time duration until receiving search results. | An error will be returned if the set `num` search results cannot be obtained within the set time.
By setting `min_num`, the search results will be returned if more than `min_num` can be searched within the time. | default value: `3,000,000,000ns` | ### Cluster-side