mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2026-05-17 08:36:55 +03:00
lib/persistentqueue: properly re-create flock.lock file inside directory if persistent queue is broken.
Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/5249 Thanks to @Sniper91 for the bugreport and initial fix at https://github.com/VictoriaMetrics/VictoriaMetrics/pull/5233
This commit is contained in:
@@ -188,7 +188,9 @@ func tryOpeningQueue(path, name string, chunkFileSize, maxBlockSize, maxPendingB
|
||||
}
|
||||
|
||||
// path contents is broken or missing. Re-create it from scratch.
|
||||
fs.MustClose(q.flockF)
|
||||
fs.RemoveDirContents(path)
|
||||
q.flockF = fs.MustCreateFlockFile(path)
|
||||
mi.Reset()
|
||||
mi.Name = q.name
|
||||
if err := mi.WriteToFile(metainfoPath); err != nil {
|
||||
|
||||
Reference in New Issue
Block a user