src/main/java/org/opensearch/performanceanalyzer/decisionmaker/deciders/jvm/old_gen/LevelTwoActionBuilder.java [102:115]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void addFieldDataCacheAction() {
        double stepSizeInPercent = cacheActionConfig.getStepSize(ResourceEnum.FIELD_DATA_CACHE);

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



src/main/java/org/opensearch/performanceanalyzer/decisionmaker/deciders/jvm/old_gen/LevelOneActionBuilder.java [84:97]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void addFieldDataCacheAction() {
        double stepSizeInPercent = cacheActionConfig.getStepSize(ResourceEnum.FIELD_DATA_CACHE);

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



