fix possible concurrency bug in IMC when indexing threads are faster in writing bytes than the status checker is in checking all shards
This commit is contained in:
parent
cde5bb88b1
commit
ce32b959fd
|
@ -256,6 +256,8 @@ public class IndexingMemoryController extends AbstractComponent implements Index
|
|||
} finally {
|
||||
runLock.unlock();
|
||||
}
|
||||
// Could be while we were checking, more bytes arrived:
|
||||
totalBytes = bytesWrittenSinceCheck.addAndGet(bytes);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue