From ccd17be963f5b72f94dc700b6fc43bced2f8b0b2 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Wed, 15 Feb 2023 10:45:15 -0800 Subject: [PATCH] Remove auto_expand_replicas override in sample data indices (#423) (#425) Signed-off-by: Tyler Ohlsen --- public/pages/Overview/utils/constants.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/pages/Overview/utils/constants.tsx b/public/pages/Overview/utils/constants.tsx index 4b2536c3..0e62c05c 100644 --- a/public/pages/Overview/utils/constants.tsx +++ b/public/pages/Overview/utils/constants.tsx @@ -14,11 +14,10 @@ import moment from 'moment'; import React from 'react'; import { EuiIcon } from '@elastic/eui'; -// same as default OpenSearch Dashboards sample data +// We don't need to specify auto_expand_replicas - use cluster defaults instead export const indexSettings = { index: { number_of_shards: 1, - auto_expand_replicas: '0-1', }, };