src/main/java/org/opensearch/performanceanalyzer/decisionmaker/deciders/jvm/old_gen/LevelTwoActionBuilder.java [117:130]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void addShardRequestCacheAction() {
        double stepSizeInPercent = cacheActionConfig.getStepSize(ResourceEnum.SHARD_REQUEST_CACHE);

        ModifyCacheMaxSizeAction action =
                ModifyCacheMaxSizeAction.newBuilder(
                                nodeKey, ResourceEnum.SHARD_REQUEST_CACHE, appContext, rcaConf)
                        .increase(false)
                        .stepSizeInPercent(
                                stepSizeInPercent * actionBuilderConfig.shardRequestCacheStepSize())
                        .build();
        if (action.isActionable()) {
            cacheActionMap.put(ResourceEnum.SHARD_REQUEST_CACHE, action);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/opensearch/performanceanalyzer/decisionmaker/deciders/jvm/old_gen/LevelOneActionBuilder.java [99:112]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void addShardRequestCacheAction() {
        double stepSizeInPercent = cacheActionConfig.getStepSize(ResourceEnum.SHARD_REQUEST_CACHE);

        ModifyCacheMaxSizeAction action =
                ModifyCacheMaxSizeAction.newBuilder(
                                nodeKey, ResourceEnum.SHARD_REQUEST_CACHE, appContext, rcaConf)
                        .increase(false)
                        .stepSizeInPercent(
                                stepSizeInPercent * actionBuilderConfig.shardRequestCacheStepSize())
                        .build();
        if (action.isActionable()) {
            cacheActionMap.put(ResourceEnum.SHARD_REQUEST_CACHE, action);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



