Open neilstevenson opened 4 years ago
I believe the code that triggered it may be this, not 100% sure,
Map<Long, JobStatus> currentState = this.jetInstance.getJobs()
.stream()
.collect(Collectors.toMap(Job::getId, Job::getStatus));
for (Entry<Long, JobStatus> entry : currentState.entrySet()) {
Job job = this.jetInstance.getJob(entry.getKey());
// other stuff
}
Servers were 4.1 also, and it may be the cluster size was increasing while the client was running this operation.
On Jet 4.1, this was in the client logs, for a job started the same day. I will post more information if I can get it to recur.