seaweedfs/weed/command/filer_replication.go

149 lines
4.2 KiB
Go
Raw Normal View History

2018-09-17 07:27:56 +00:00
package command
import (
2019-03-16 00:20:24 +00:00
"context"
2018-10-06 20:01:38 +00:00
"strings"
"github.com/seaweedfs/seaweedfs/weed/glog"
"github.com/seaweedfs/seaweedfs/weed/replication"
"github.com/seaweedfs/seaweedfs/weed/replication/sink"
"github.com/seaweedfs/seaweedfs/weed/replication/sub"
"github.com/seaweedfs/seaweedfs/weed/util"
2018-09-17 07:27:56 +00:00
)
func init() {
cmdFilerReplicate.Run = runFilerReplicate // break init cycle
}
var cmdFilerReplicate = &Command{
UsageLine: "filer.replicate",
Short: "replicate file changes to another destination",
Long: `replicate file changes to another destination
filer.replicate listens on filer notifications. If any file is updated, it will fetch the updated content,
and write to the other destination.
2019-02-10 05:07:12 +00:00
Run "weed scaffold -config=replication" to generate a replication.toml file and customize the parameters.
2018-09-17 07:27:56 +00:00
`,
}
func runFilerReplicate(cmd *Command, args []string) bool {
util.LoadConfiguration("security", false)
util.LoadConfiguration("replication", true)
util.LoadConfiguration("notification", true)
config := util.GetViper()
2018-09-17 07:27:56 +00:00
var notificationInput sub.NotificationInput
2018-09-17 07:27:56 +00:00
2018-12-06 08:44:41 +00:00
validateOneEnabledInput(config)
for _, input := range sub.NotificationInputs {
2018-09-17 07:27:56 +00:00
if config.GetBool("notification." + input.GetName() + ".enabled") {
if err := input.Initialize(config, "notification."+input.GetName()+"."); err != nil {
2018-09-17 07:27:56 +00:00
glog.Fatalf("Failed to initialize notification input for %s: %+v",
input.GetName(), err)
}
glog.V(0).Infof("Configure notification input to %s", input.GetName())
notificationInput = input
break
}
}
2018-10-30 09:29:11 +00:00
if notificationInput == nil {
println("No notification is defined in notification.toml file.")
println("Please follow 'weed scaffold -config=notification' to see example notification configurations.")
2018-10-30 09:29:11 +00:00
return true
}
2018-09-23 07:40:36 +00:00
// avoid recursive replication
if config.GetBool("notification.source.filer.enabled") && config.GetBool("notification.sink.filer.enabled") {
if config.GetString("source.filer.grpcAddress") == config.GetString("sink.filer.grpcAddress") {
fromDir := config.GetString("source.filer.directory")
toDir := config.GetString("sink.filer.directory")
2018-09-23 07:40:36 +00:00
if strings.HasPrefix(toDir, fromDir) {
glog.Fatalf("recursive replication! source directory %s includes the sink directory %s", fromDir, toDir)
}
}
}
dataSink := findSink(config)
2018-10-04 06:36:52 +00:00
2018-10-06 20:01:38 +00:00
if dataSink == nil {
println("no data sink configured in replication.toml:")
2018-10-06 20:01:38 +00:00
for _, sk := range sink.Sinks {
println(" " + sk.GetName())
}
return true
}
replicator := replication.NewReplicator(config, "source.filer.", dataSink)
2018-09-17 07:27:56 +00:00
for {
2021-01-26 19:08:44 +00:00
key, m, onSuccessFn, onFailureFn, err := notificationInput.ReceiveMessage()
2018-09-17 07:27:56 +00:00
if err != nil {
2018-09-17 09:23:21 +00:00
glog.Errorf("receive %s: %+v", key, err)
2021-01-26 19:08:44 +00:00
if onFailureFn != nil {
onFailureFn()
}
2018-09-17 07:27:56 +00:00
continue
}
if key == "" {
// long poll received no messages
2021-01-26 19:08:44 +00:00
if onSuccessFn != nil {
onSuccessFn()
}
continue
}
2018-09-22 07:12:10 +00:00
if m.OldEntry != nil && m.NewEntry == nil {
glog.V(1).Infof("delete: %s", key)
2018-09-22 07:12:10 +00:00
} else if m.OldEntry == nil && m.NewEntry != nil {
glog.V(1).Infof(" add: %s", key)
2018-09-22 07:12:10 +00:00
} else {
glog.V(1).Infof("modify: %s", key)
}
2019-03-16 00:20:24 +00:00
if err = replicator.Replicate(context.Background(), key, m); err != nil {
2018-09-17 09:23:21 +00:00
glog.Errorf("replicate %s: %+v", key, err)
2021-01-26 19:08:44 +00:00
if onFailureFn != nil {
onFailureFn()
}
2018-11-04 19:58:59 +00:00
} else {
2018-11-04 20:07:33 +00:00
glog.V(1).Infof("replicated %s", key)
2021-01-26 19:08:44 +00:00
if onSuccessFn != nil {
onSuccessFn()
}
2018-09-17 07:27:56 +00:00
}
}
}
2018-12-06 08:44:41 +00:00
func findSink(config *util.ViperProxy) sink.ReplicationSink {
var dataSink sink.ReplicationSink
for _, sk := range sink.Sinks {
if config.GetBool("sink." + sk.GetName() + ".enabled") {
if err := sk.Initialize(config, "sink."+sk.GetName()+"."); err != nil {
glog.Fatalf("Failed to initialize sink for %s: %+v",
sk.GetName(), err)
}
glog.V(0).Infof("Configure sink to %s", sk.GetName())
dataSink = sk
break
}
}
return dataSink
}
2021-01-12 10:28:13 +00:00
func validateOneEnabledInput(config *util.ViperProxy) {
2018-12-06 08:44:41 +00:00
enabledInput := ""
for _, input := range sub.NotificationInputs {
if config.GetBool("notification." + input.GetName() + ".enabled") {
if enabledInput == "" {
enabledInput = input.GetName()
} else {
glog.Fatalf("Notification input is enabled for both %s and %s", enabledInput, input.GetName())
}
}
}
}