File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
x-pack/plugins/ml/server/models/job_validation Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -437,7 +437,8 @@ export const getMessages = () => {
437437 status : 'WARNING' ,
438438 text : i18n . translate ( 'xpack.ml.models.jobValidation.messages.mmlGreaterThanMaxMmlMessage' , {
439439 defaultMessage :
440- 'Job will not be able to run in the current cluster because model memory limit is higher than the amount of available memory.' ,
440+ 'Job will not be able to run in the current cluster because model memory limit is higher than {effectiveMaxModelMemoryLimit}.' ,
441+ values : { effectiveMaxModelMemoryLimit : '{{effectiveMaxModelMemoryLimit}}' } ,
441442 } ) ,
442443 } ,
443444 mml_greater_than_max_mml : {
Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ export async function validateModelMemoryLimit(
140140 id : 'mml_greater_than_effective_max_mml' ,
141141 maxModelMemoryLimit,
142142 mml,
143+ effectiveMaxModelMemoryLimit,
143144 } ) ;
144145 }
145146 }
You can’t perform that action at this time.
0 commit comments