mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-20 02:09:56 +08:00
add comments
This commit is contained in:
@@ -61,13 +61,18 @@ func (v *Volume) Destroy() (err error) {
|
||||
}
|
||||
|
||||
func removeVolumeFiles(filename string) {
|
||||
// basic
|
||||
os.Remove(filename + ".dat")
|
||||
os.Remove(filename + ".idx")
|
||||
os.Remove(filename + ".vif")
|
||||
// sorted index file
|
||||
os.Remove(filename + ".sdx")
|
||||
// compaction
|
||||
os.Remove(filename + ".cpd")
|
||||
os.Remove(filename + ".cpx")
|
||||
// level db indx file
|
||||
os.RemoveAll(filename + ".ldb")
|
||||
// marker for damaged or incomplete volume
|
||||
os.Remove(filename + ".note")
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user