diff --git a/content/operate/oss_and_stack/stack-with-enterprise/search/query-performance-factor.md b/content/operate/oss_and_stack/stack-with-enterprise/search/query-performance-factor.md index f342c6bf77..a601222ac7 100644 --- a/content/operate/oss_and_stack/stack-with-enterprise/search/query-performance-factor.md +++ b/content/operate/oss_and_stack/stack-with-enterprise/search/query-performance-factor.md @@ -32,7 +32,7 @@ If you do not have a cluster that supports Redis Query Engine, [install Redis En 1. Calculate the RAM requirements using the [Index Size Calculator](https://redis.io/redisearch-sizing-calculator/). The total RAM required is the sum of the dataset and index sizes. -1. [Determine the query performance factor](#calculate-performance-factor) you want and the required number of CPUs. Unused CPUs, above the 20% necessary for Redis, can be used for the scalable Redis Query Engine. +1. [Determine the query performance factor](#calculate-query-performance-factor) you want and the required number of CPUs. Unused CPUs, above the 20% necessary for Redis, can be used for the scalable Redis Query Engine. 1. Create a new Redis database with the number of CPUs configured for the query performance factor. @@ -52,7 +52,7 @@ Vertical scaling of the Redis Query Engine is achieved by provisioning additiona The following table shows the number of CPUs required for each performance factor. This calculation is sensitive to how the search index and queries are defined. Certain scenarios might yield less throughput than the ratios in the following table. -| Scale factor | Minimum CPUs required for Redis Query Engine | +| Scale factor | Minimum CPUs required for Redis Query Engine | |----------------|-----------------------------------------| | None (default) | 1 | | 2 | 3 | @@ -71,7 +71,7 @@ The following table shows the number of CPUs required for each performance facto | CPUs per node | 8 | | Available CPUs | floor(0.8 * 8)=6 | | Scale factor | 4x | -| Minimum CPUs required for scale factor | 6 | +| Minimum CPUs required for scale factor - WORKERS | 6 | ## Configure query performance factor manually @@ -168,12 +168,12 @@ To create a database and configure the query performance factor, use the [create "conns": 32, "module_list": [{ "module_name": "search", - "module_args": "MT_MODE MT_MODE_FULL WORKER_THREADS " + "module_args": "WORKERS " }] } ``` -See [Calculate performance factor](#calculate-performance-factor) to determine the value to use for ``. +See [Calculate performance factor](#calculate-query-performance-factor) to determine the value to use for ``. #### Example REST API request for a new database @@ -196,7 +196,7 @@ The following JSON is an example request body used to create a new database with "replication": false, "module_list": [{ "module_name": "search", - "module_args": "MT_MODE MT_MODE_FULL WORKER_THREADS 6" + "module_args": "WORKERS 6" }] } ``` @@ -239,7 +239,7 @@ curl -o /dev/null -s -k -u ":" https://:9443/v1/bdbs/$DB_I "modules": [ { "module_name": "search", - "new_module_args": "MT_MODE MT_MODE_FULL WORKER_THREADS '$CPU'", + "new_module_args": "WORKERS '$CPU'", "current_module": "'$MODULE_ID'", "new_module": "'$MODULE_ID'" } diff --git a/static/images/rs/screenshots/databases/rs-config-query-performance-factor.png b/static/images/rs/screenshots/databases/rs-config-query-performance-factor.png index 6d877c2437..47860b6bbc 100644 Binary files a/static/images/rs/screenshots/databases/rs-config-query-performance-factor.png and b/static/images/rs/screenshots/databases/rs-config-query-performance-factor.png differ