zhangyue19921010 commented on issue #10649:
URL: https://github.com/apache/druid/issues/10649#issuecomment-803902129
According to the Code
```
/**
* Remove a segment file from this location. The given file argument must
be a file rather than directory.
*/
public synchronized void removeFile(File file)
{
if (files.remove(file)) {
currSizeBytes -= FileUtils.sizeOf(file);
} else {
log.warn("File[%s] is not found under this location[%s]", file, path);
}
}
```
This kind of warn will log during removing segment files. Generally it can
be ignored IMO.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]