Skip to content

Commit b4f6be9

Browse files
author
Toby McLaughlin
committed
Increase replica shards for Site/Docs Search
The public search interface currently runs on a three node cluster. This patch increases replica shards from 1 to 2, in order to distribute search load more evenly across the production cluster. Relates: elastic/infra#6636
1 parent c3b4e9e commit b4f6be9

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

web/config_pages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"settings": {
33
"number_of_shards": 1,
4+
"number_of_replicas": 2,
45
"search": {
56
"slowlog": {
67
"threshold": {

web/config_site.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"settings": {
3-
"number_of_shards": 1
3+
"number_of_shards": 1,
4+
"number_of_replicas": 2
45
},
56
"mappings": {
67
"doc": {

web/config_titles.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"settings": {
33
"number_of_shards": 1,
4+
"number_of_replicas": 2,
45
"search": {
56
"slowlog": {
67
"threshold": {

0 commit comments

Comments
 (0)