2019-11-12 14:18:09 +00:00
|
|
|
package fs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
|
|
|
"github.com/VictoriaMetrics/metrics"
|
|
|
|
)
|
|
|
|
|
2019-12-02 19:34:35 +00:00
|
|
|
func mustRemoveAll(path string, done func()) bool {
|
2019-11-12 14:18:09 +00:00
|
|
|
err := os.RemoveAll(path)
|
2021-02-26 21:21:59 +00:00
|
|
|
if err == nil || isStaleNFSFileHandleError(err) {
|
2019-11-12 14:18:09 +00:00
|
|
|
// Make sure the parent directory doesn't contain references
|
|
|
|
// to the current directory.
|
|
|
|
mustSyncParentDirIfExists(path)
|
2019-12-02 19:34:35 +00:00
|
|
|
done()
|
2019-11-12 14:18:09 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
if !isTemporaryNFSError(err) {
|
|
|
|
logger.Panicf("FATAL: cannot remove %q: %s", path, err)
|
|
|
|
}
|
|
|
|
// NFS prevents from removing directories with open files.
|
|
|
|
// See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/61 .
|
|
|
|
// Schedule for later directory removal.
|
|
|
|
nfsDirRemoveFailedAttempts.Inc()
|
2019-12-02 19:34:35 +00:00
|
|
|
w := &removeDirWork{
|
|
|
|
path: path,
|
|
|
|
done: done,
|
|
|
|
}
|
2019-11-12 14:18:09 +00:00
|
|
|
select {
|
2019-12-02 19:34:35 +00:00
|
|
|
case removeDirCh <- w:
|
2019-11-12 14:18:09 +00:00
|
|
|
default:
|
|
|
|
logger.Panicf("FATAL: cannot schedule %s for removal, since the removal queue is full (%d entries)", path, cap(removeDirCh))
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-08-06 12:30:59 +00:00
|
|
|
var (
|
|
|
|
nfsDirRemoveFailedAttempts = metrics.NewCounter(`vm_nfs_dir_remove_failed_attempts_total`)
|
|
|
|
_ = metrics.NewGauge(`vm_nfs_pending_dirs_to_remove`, func() float64 {
|
|
|
|
return float64(len(removeDirCh))
|
|
|
|
})
|
|
|
|
)
|
2019-11-12 14:18:09 +00:00
|
|
|
|
2019-12-02 19:34:35 +00:00
|
|
|
type removeDirWork struct {
|
|
|
|
path string
|
|
|
|
done func()
|
|
|
|
}
|
|
|
|
|
|
|
|
var removeDirCh = make(chan *removeDirWork, 1024)
|
2019-11-12 14:18:09 +00:00
|
|
|
|
|
|
|
func dirRemover() {
|
|
|
|
const minSleepTime = 100 * time.Millisecond
|
|
|
|
const maxSleepTime = time.Second
|
|
|
|
sleepTime := minSleepTime
|
|
|
|
for {
|
2019-12-02 19:34:35 +00:00
|
|
|
var w *removeDirWork
|
2019-11-12 14:18:09 +00:00
|
|
|
select {
|
2019-12-02 19:34:35 +00:00
|
|
|
case w = <-removeDirCh:
|
2019-11-12 14:18:09 +00:00
|
|
|
default:
|
|
|
|
if atomic.LoadUint64(&stopDirRemover) != 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
time.Sleep(minSleepTime)
|
|
|
|
continue
|
|
|
|
}
|
2019-12-02 19:34:35 +00:00
|
|
|
if mustRemoveAll(w.path, w.done) {
|
2019-11-12 14:18:09 +00:00
|
|
|
sleepTime = minSleepTime
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Couldn't remove the directory at the path because of NFS lock.
|
|
|
|
// Sleep for a while and try again.
|
|
|
|
// Do not limit the amount of time required for deleting the directory,
|
|
|
|
// since this may break on laggy NFS.
|
|
|
|
// See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/162 .
|
|
|
|
time.Sleep(sleepTime)
|
|
|
|
if sleepTime < maxSleepTime {
|
|
|
|
sleepTime *= 2
|
2021-03-18 11:23:41 +00:00
|
|
|
} else if sleepTime > time.Second {
|
2020-08-09 09:06:57 +00:00
|
|
|
logger.Warnf("failed to remove directory %q due to NFS lock; retrying later in %.3f seconds", w.path, sleepTime.Seconds())
|
2019-11-12 14:18:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-26 21:21:59 +00:00
|
|
|
func isStaleNFSFileHandleError(err error) bool {
|
|
|
|
errStr := err.Error()
|
|
|
|
return strings.Contains(errStr, "stale NFS file handle")
|
|
|
|
}
|
|
|
|
|
2019-11-12 14:18:09 +00:00
|
|
|
func isTemporaryNFSError(err error) bool {
|
|
|
|
// See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/61 for details.
|
|
|
|
errStr := err.Error()
|
|
|
|
return strings.Contains(errStr, "directory not empty") || strings.Contains(errStr, "device or resource busy")
|
|
|
|
}
|
|
|
|
|
|
|
|
var dirRemoverWG sync.WaitGroup
|
|
|
|
var stopDirRemover uint64
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
dirRemoverWG.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer dirRemoverWG.Done()
|
|
|
|
dirRemover()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
// MustStopDirRemover must be called in the end of graceful shutdown
|
|
|
|
// in order to wait for removing the remaining directories from removeDirCh.
|
|
|
|
//
|
|
|
|
// It is expected that nobody calls MustRemoveAll when MustStopDirRemover
|
|
|
|
// is called.
|
|
|
|
func MustStopDirRemover() {
|
|
|
|
atomic.StoreUint64(&stopDirRemover, 1)
|
|
|
|
doneCh := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
dirRemoverWG.Wait()
|
|
|
|
close(doneCh)
|
|
|
|
}()
|
|
|
|
const maxWaitTime = 5 * time.Second
|
|
|
|
select {
|
|
|
|
case <-doneCh:
|
|
|
|
return
|
|
|
|
case <-time.After(maxWaitTime):
|
|
|
|
logger.Panicf("FATAL: cannot stop dirRemover in %s", maxWaitTime)
|
|
|
|
}
|
|
|
|
}
|