Skip to content

Commit 4dac9a6

Browse files
committed
change the setting name
Signed-off-by: kkewwei <kewei.11@bytedance.com> Signed-off-by: kkewwei <kkewwei@163.com>
1 parent 491b7c8 commit 4dac9a6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
3030
- Add support for `matched_fields` with the unified highlighter ([#18164](https://github.com/opensearch-project/OpenSearch/issues/18164))
3131
- [repository-s3] Add support for SSE-KMS and S3 bucket owner verification ([#18312](https://github.com/opensearch-project/OpenSearch/pull/18312))
3232
- Added File Cache Stats - Involves Block level as well as full file level stats ([#17538](https://github.com/opensearch-project/OpenSearch/issues/17479))
33-
- Add a dynamic setting to change skip_cache_factor and min_frequency for querycache ([#18351]( ([#18274](URL_ADDRESS.com/opensearch-project/OpenSearch/pull/18351))
33+
- Add a dynamic setting to change skip_cache_factor and min_frequency for querycache ([#18351](https://github.com/opensearch-project/OpenSearch/issues/18351))
3434

3535
### Changed
3636
- Create generic DocRequest to better categorize ActionRequests ([#18269](https://github.com/opensearch-project/OpenSearch/pull/18269)))

server/src/main/java/org/opensearch/indices/IndicesQueryCache.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public class IndicesQueryCache implements QueryCache, Closeable {
107107

108108
// dynamic change the min frequency cache threshold for query
109109
public static final Setting<Integer> INDICES_QUERY_CACHE_MIN_FREQUENCY = Setting.intSetting(
110-
"indices.query_cache.min_frequency",
110+
"indices.queries.cache.min_frequency",
111111
5,
112112
1,
113113
Property.NodeScope,
@@ -116,7 +116,7 @@ public class IndicesQueryCache implements QueryCache, Closeable {
116116

117117
// dynamic change the min frequency cache threshold for costly query
118118
public static final Setting<Integer> INDICES_QUERY_CACHE_COSTLY_MIN_FREQUENCY = Setting.intSetting(
119-
"indices.query_cache.costly_min_frequency",
119+
"indices.queries.cache.costly_min_frequency",
120120
2,
121121
1,
122122
Property.NodeScope,

0 commit comments

Comments
 (0)