This commit is contained in:
parent
38aec2e298
commit
19602fd573
|
@ -20,7 +20,6 @@ import org.elasticsearch.common.cache.RemovalNotification;
|
||||||
import org.elasticsearch.common.collect.Tuple;
|
import org.elasticsearch.common.collect.Tuple;
|
||||||
import org.elasticsearch.common.settings.Setting;
|
import org.elasticsearch.common.settings.Setting;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.common.unit.ByteSizeUnit;
|
|
||||||
import org.elasticsearch.common.unit.ByteSizeValue;
|
import org.elasticsearch.common.unit.ByteSizeValue;
|
||||||
import org.elasticsearch.common.unit.TimeValue;
|
import org.elasticsearch.common.unit.TimeValue;
|
||||||
import org.elasticsearch.common.util.set.Sets;
|
import org.elasticsearch.common.util.set.Sets;
|
||||||
|
@ -57,8 +56,8 @@ public class ModelLoadingService implements ClusterStateListener {
|
||||||
* Once the limit is reached, LRU models are evicted in favor of new models
|
* Once the limit is reached, LRU models are evicted in favor of new models
|
||||||
*/
|
*/
|
||||||
public static final Setting<ByteSizeValue> INFERENCE_MODEL_CACHE_SIZE =
|
public static final Setting<ByteSizeValue> INFERENCE_MODEL_CACHE_SIZE =
|
||||||
Setting.byteSizeSetting("xpack.ml.inference_model.cache_size",
|
Setting.memorySizeSetting("xpack.ml.inference_model.cache_size",
|
||||||
new ByteSizeValue(1, ByteSizeUnit.GB),
|
"40%",
|
||||||
Setting.Property.NodeScope);
|
Setting.Property.NodeScope);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue