-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding cache eviction and listener for invalidating index field type … (
#142) (#143) * Adding cache eviction and listener for invalidating index field type mappings on index deletion/update * Fixing spotless violations * Fixing code to use .index instead of .findMappings * Fixing spotless violations * Addressing review comments * Fixing existing test failures * Fixing existing test failures --------- (cherry picked from commit fb24118) Signed-off-by: Ankit Jain <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
83ca682
commit acabdc7
Showing
7 changed files
with
171 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
...n/java/org/opensearch/plugin/insights/core/service/categorizer/IndicesFieldTypeCache.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.plugin.insights.core.service.categorizer; | ||
|
||
import java.util.concurrent.ConcurrentHashMap; | ||
import java.util.concurrent.ExecutionException; | ||
import org.apache.logging.log4j.LogManager; | ||
import org.apache.logging.log4j.Logger; | ||
import org.apache.lucene.util.RamUsageEstimator; | ||
import org.opensearch.common.cache.Cache; | ||
import org.opensearch.common.cache.CacheBuilder; | ||
import org.opensearch.common.metrics.CounterMetric; | ||
import org.opensearch.common.settings.Settings; | ||
import org.opensearch.core.index.Index; | ||
import org.opensearch.plugin.insights.settings.QueryCategorizationSettings; | ||
|
||
/** | ||
* Cache implementation specifically for maintaining the field name type mappings | ||
* for indices that are part of successful search requests | ||
*/ | ||
public class IndicesFieldTypeCache { | ||
|
||
private static final Logger logger = LogManager.getLogger(IndicesFieldTypeCache.class); | ||
private final Cache<Index, IndexFieldMap> cache; | ||
|
||
public IndicesFieldTypeCache(Settings settings) { | ||
final long sizeInBytes = QueryCategorizationSettings.SEARCH_QUERY_FIELD_TYPE_CACHE_SIZE_KEY.get(settings).getBytes(); | ||
CacheBuilder<Index, IndexFieldMap> cacheBuilder = CacheBuilder.<Index, IndexFieldMap>builder(); | ||
if (sizeInBytes > 0) { | ||
cacheBuilder.setMaximumWeight(sizeInBytes).weigher((k, v) -> RamUsageEstimator.sizeOfObject(k) + v.weight()); | ||
} | ||
cache = cacheBuilder.build(); | ||
} | ||
|
||
public IndexFieldMap getOrInitialize(Index index) { | ||
try { | ||
return cache.computeIfAbsent(index, k -> new IndexFieldMap()); | ||
} catch (ExecutionException ex) { | ||
logger.error("Unexpected execution exception while initializing for index " + index); | ||
} | ||
|
||
// Should never return null as the ExecutionException is only thrown | ||
// if loader throws an exception or returns a null value, which cannot | ||
// be the case in this scenario | ||
return null; | ||
} | ||
|
||
public void invalidate(Index index) { | ||
cache.invalidate(index); | ||
} | ||
|
||
public Iterable<Index> keySet() { | ||
return cache.keys(); | ||
} | ||
|
||
static class IndexFieldMap { | ||
private ConcurrentHashMap<String, String> fieldTypeMap; | ||
private CounterMetric weight; | ||
|
||
IndexFieldMap() { | ||
fieldTypeMap = new ConcurrentHashMap<>(); | ||
weight = new CounterMetric(); | ||
} | ||
|
||
public String get(String fieldName) { | ||
return fieldTypeMap.get(fieldName); | ||
} | ||
|
||
public void putIfAbsent(String key, String value) { | ||
// Increment the weight only if the key value pair added to the Map | ||
if (fieldTypeMap.putIfAbsent(key, value) == null) { | ||
weight.inc(RamUsageEstimator.sizeOf(key) + RamUsageEstimator.sizeOf(value)); | ||
} | ||
} | ||
|
||
public long weight() { | ||
return weight.count(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.