Work in progress in the c++ side is increasing memory estimates a bit and this test fails. At the time of this commit the mem estimate when there is no source query is a about 2Mb. So I am relaxing the test to assert memory estimate is less than 1Mb instead of 500Kb. Backport of #49924
This commit is contained in:
parent
549b103458
commit
e4f838e764
|
@ -60,6 +60,6 @@ public class ExplainDataFrameAnalyticsIT extends MlNativeDataFrameAnalyticsInteg
|
|||
|
||||
ExplainDataFrameAnalyticsAction.Response explainResponse = explainDataFrame(config);
|
||||
|
||||
assertThat(explainResponse.getMemoryEstimation().getExpectedMemoryWithoutDisk().getKb(), lessThanOrEqualTo(500L));
|
||||
assertThat(explainResponse.getMemoryEstimation().getExpectedMemoryWithoutDisk().getKb(), lessThanOrEqualTo(1024L));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue