2016-06-03 01:09:14 +00:00
|
|
|
package command
|
2015-05-26 07:58:41 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2019-04-19 04:43:36 +00:00
|
|
|
|
2019-09-12 13:18:21 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
2019-12-23 20:48:20 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/super_block"
|
2019-09-12 13:18:21 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2015-05-26 07:58:41 +00:00
|
|
|
|
2019-09-12 13:18:21 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage"
|
2015-05-26 07:58:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
s BackupOptions
|
|
|
|
)
|
|
|
|
|
|
|
|
type BackupOptions struct {
|
2019-08-16 03:05:22 +00:00
|
|
|
master *string
|
|
|
|
collection *string
|
|
|
|
dir *string
|
|
|
|
volumeId *int
|
|
|
|
ttl *string
|
|
|
|
replication *string
|
2015-05-26 07:58:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cmdBackup.Run = runBackup // break init cycle
|
|
|
|
s.master = cmdBackup.Flag.String("server", "localhost:9333", "SeaweedFS master location")
|
|
|
|
s.collection = cmdBackup.Flag.String("collection", "", "collection name")
|
|
|
|
s.dir = cmdBackup.Flag.String("dir", ".", "directory to store volume data files")
|
|
|
|
s.volumeId = cmdBackup.Flag.Int("volumeId", -1, "a volume id. The volume .dat and .idx files should already exist in the dir.")
|
2019-08-16 03:05:22 +00:00
|
|
|
s.ttl = cmdBackup.Flag.String("ttl", "", `backup volume's time to live, format:
|
|
|
|
3m: 3 minutes
|
|
|
|
4h: 4 hours
|
|
|
|
5d: 5 days
|
|
|
|
6w: 6 weeks
|
|
|
|
7M: 7 months
|
|
|
|
8y: 8 years
|
|
|
|
default is the same with origin`)
|
|
|
|
s.replication = cmdBackup.Flag.String("replication", "", "backup volume's replication, default is the same with origin")
|
2015-05-26 07:58:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var cmdBackup = &Command{
|
|
|
|
UsageLine: "backup -dir=. -volumeId=234 -server=localhost:9333",
|
|
|
|
Short: "incrementally backup a volume to local folder",
|
|
|
|
Long: `Incrementally backup volume data.
|
2019-04-11 09:18:53 +00:00
|
|
|
|
2015-05-26 07:58:41 +00:00
|
|
|
It is expected that you use this inside a script, to loop through
|
|
|
|
all possible volume ids that needs to be backup to local folder.
|
2019-04-11 09:18:53 +00:00
|
|
|
|
2015-05-26 07:58:41 +00:00
|
|
|
The volume id does not need to exist locally or even remotely.
|
|
|
|
This will help to backup future new volumes.
|
2019-04-11 09:18:53 +00:00
|
|
|
|
2015-05-26 07:58:41 +00:00
|
|
|
Usually backing up is just copying the .dat (and .idx) files.
|
2019-01-17 01:17:19 +00:00
|
|
|
But it's tricky to incrementally copy the differences.
|
2019-04-11 09:18:53 +00:00
|
|
|
|
2015-05-26 07:58:41 +00:00
|
|
|
The complexity comes when there are multiple addition, deletion and compaction.
|
2019-02-06 13:59:15 +00:00
|
|
|
This tool will handle them correctly and efficiently, avoiding unnecessary data transportation.
|
2015-05-26 07:58:41 +00:00
|
|
|
`,
|
|
|
|
}
|
|
|
|
|
|
|
|
func runBackup(cmd *Command, args []string) bool {
|
2019-02-18 20:11:52 +00:00
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
util.LoadConfiguration("security", false)
|
2020-01-29 17:09:55 +00:00
|
|
|
grpcDialOption := security.LoadClientTLS(util.GetViper(), "grpc.client")
|
2019-02-18 20:11:52 +00:00
|
|
|
|
2015-05-26 07:58:41 +00:00
|
|
|
if *s.volumeId == -1 {
|
|
|
|
return false
|
|
|
|
}
|
2019-04-19 04:43:36 +00:00
|
|
|
vid := needle.VolumeId(*s.volumeId)
|
2015-05-26 07:58:41 +00:00
|
|
|
|
|
|
|
// find volume location, replication, ttl info
|
2021-02-18 04:57:08 +00:00
|
|
|
lookup, err := operation.Lookup(func() string { return *s.master }, vid.String())
|
2015-05-26 07:58:41 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error looking up volume %d: %v\n", vid, err)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
volumeServer := lookup.Locations[0].Url
|
|
|
|
|
2019-02-18 20:11:52 +00:00
|
|
|
stats, err := operation.GetVolumeSyncStatus(volumeServer, grpcDialOption, uint32(vid))
|
2015-05-26 07:58:41 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error get volume %d status: %v\n", vid, err)
|
|
|
|
return true
|
|
|
|
}
|
2019-08-16 03:05:22 +00:00
|
|
|
var ttl *needle.TTL
|
|
|
|
if *s.ttl != "" {
|
|
|
|
ttl, err = needle.ReadTTL(*s.ttl)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error generate volume %d ttl %s: %v\n", vid, *s.ttl, err)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ttl, err = needle.ReadTTL(stats.Ttl)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error get volume %d ttl %s: %v\n", vid, stats.Ttl, err)
|
|
|
|
return true
|
|
|
|
}
|
2015-05-26 07:58:41 +00:00
|
|
|
}
|
2019-12-23 20:48:20 +00:00
|
|
|
var replication *super_block.ReplicaPlacement
|
2019-08-16 03:05:22 +00:00
|
|
|
if *s.replication != "" {
|
2019-12-23 20:48:20 +00:00
|
|
|
replication, err = super_block.NewReplicaPlacementFromString(*s.replication)
|
2019-08-16 03:05:22 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error generate volume %d replication %s : %v\n", vid, *s.replication, err)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
} else {
|
2019-12-23 20:48:20 +00:00
|
|
|
replication, err = super_block.NewReplicaPlacementFromString(stats.Replication)
|
2019-08-16 03:05:22 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error get volume %d replication %s : %v\n", vid, stats.Replication, err)
|
|
|
|
return true
|
|
|
|
}
|
2015-05-26 07:58:41 +00:00
|
|
|
}
|
2020-11-27 11:17:10 +00:00
|
|
|
v, err := storage.NewVolume(util.ResolvePath(*s.dir), util.ResolvePath(*s.dir), *s.collection, vid, storage.NeedleMapInMemory, replication, ttl, 0, 0)
|
2015-05-26 07:58:41 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error creating or reading from volume %d: %v\n", vid, err)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-04-19 19:29:49 +00:00
|
|
|
if v.SuperBlock.CompactionRevision < uint16(stats.CompactRevision) {
|
2020-03-11 17:32:17 +00:00
|
|
|
if err = v.Compact2(30*1024*1024*1024, 0); err != nil {
|
2019-03-25 16:16:12 +00:00
|
|
|
fmt.Printf("Compact Volume before synchronizing %v\n", err)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if err = v.CommitCompact(); err != nil {
|
|
|
|
fmt.Printf("Commit Compact before synchronizing %v\n", err)
|
|
|
|
return true
|
|
|
|
}
|
2019-04-19 19:29:49 +00:00
|
|
|
v.SuperBlock.CompactionRevision = uint16(stats.CompactRevision)
|
2019-10-29 07:35:16 +00:00
|
|
|
v.DataBackend.WriteAt(v.SuperBlock.Bytes(), 0)
|
2019-03-25 16:16:12 +00:00
|
|
|
}
|
|
|
|
|
2019-04-19 07:39:34 +00:00
|
|
|
datSize, _, _ := v.FileStat()
|
|
|
|
|
|
|
|
if datSize > stats.TailOffset {
|
2019-03-25 16:16:12 +00:00
|
|
|
// remove the old data
|
|
|
|
v.Destroy()
|
|
|
|
// recreate an empty volume
|
2020-11-27 11:17:10 +00:00
|
|
|
v, err = storage.NewVolume(util.ResolvePath(*s.dir), util.ResolvePath(*s.dir), *s.collection, vid, storage.NeedleMapInMemory, replication, ttl, 0, 0)
|
2019-03-25 16:16:12 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Error creating or reading from volume %d: %v\n", vid, err)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
defer v.Close()
|
|
|
|
|
2019-04-18 05:04:49 +00:00
|
|
|
if err := v.IncrementalBackup(volumeServer, grpcDialOption); err != nil {
|
2015-05-26 07:58:41 +00:00
|
|
|
fmt.Printf("Error synchronizing volume %d: %v\n", vid, err)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|