[ML] Further reduce log file noise (elastic/x-pack-elasticsearch#1126)
Original commit: elastic/x-pack-elasticsearch@65301281d2
This commit is contained in:
parent
8e7fd1421c
commit
4255f6dae6
|
@ -103,7 +103,6 @@ public class AutoDetectResultProcessor {
|
||||||
}
|
}
|
||||||
context.bulkResultsPersister.executeRequest();
|
context.bulkResultsPersister.executeRequest();
|
||||||
LOGGER.info("[{}] {} buckets parsed from autodetect output", jobId, bucketCount);
|
LOGGER.info("[{}] {} buckets parsed from autodetect output", jobId, bucketCount);
|
||||||
LOGGER.info("[{}] Parse results Complete", jobId);
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOGGER.error(new ParameterizedMessage("[{}] error parsing autodetect output", new Object[] {jobId}), e);
|
LOGGER.error(new ParameterizedMessage("[{}] error parsing autodetect output", new Object[] {jobId}), e);
|
||||||
} finally {
|
} finally {
|
||||||
|
|
|
@ -87,7 +87,7 @@ public class ScoresUpdater {
|
||||||
perPartitionNormalization);
|
perPartitionNormalization);
|
||||||
updateInfluencers(normalizer, quantilesState, endBucketEpochMs, windowExtensionMs, counts);
|
updateInfluencers(normalizer, quantilesState, endBucketEpochMs, windowExtensionMs, counts);
|
||||||
|
|
||||||
LOGGER.info("[{}] Normalization resulted in: {} updates, {} no-ops", job.getId(), counts[0], counts[1]);
|
LOGGER.debug("[{}] Normalization resulted in: {} updates, {} no-ops", job.getId(), counts[0], counts[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateBuckets(Normalizer normalizer, String quantilesState, long endBucketEpochMs,
|
private void updateBuckets(Normalizer normalizer, String quantilesState, long endBucketEpochMs,
|
||||||
|
|
Loading…
Reference in New Issue