1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-20 02:10:20 +02:00

backup do not need to use preallocation

fix https://github.com/chrislusf/seaweedfs/issues/3044
This commit is contained in:
chrislu 2022-05-13 13:46:52 -07:00
parent 8f103ae613
commit 735038b2c1

View file

@ -120,7 +120,7 @@ func runBackup(cmd *Command, args []string) bool {
}
if v.SuperBlock.CompactionRevision < uint16(stats.CompactRevision) {
if err = v.Compact2(30*1024*1024*1024, 0, nil); err != nil {
if err = v.Compact2(0, 0, nil); err != nil {
fmt.Printf("Compact Volume before synchronizing %v\n", err)
return true
}