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

selectively export files

This commit is contained in:
Chris Lu 2018-11-04 12:07:33 -08:00
parent ff4189ab25
commit 6c45787a37
2 changed files with 3 additions and 2 deletions

View file

@ -34,6 +34,7 @@ var (
// filerExportOutputFile = cmdFilerExport.Flag.String("output", "", "the output file. If empty, only list out the directory tree")
filerExportSourceStore = cmdFilerExport.Flag.String("sourceStore", "", "the source store name in filer.toml")
filerExportTargetStore = cmdFilerExport.Flag.String("targetStore", "", "the target store name in filer.toml, or \"notification\" to export all files to message queue")
dir = cmdFilerExport.Flag.String("dir", "/", "only process files under this directory")
dirListLimit = cmdFilerExport.Flag.Int("dirListLimit", 100000, "limit directory list size")
dryRun = cmdFilerExport.Flag.Bool("dryRun", false, "not actually moving data")
)
@ -127,7 +128,7 @@ func runFilerExport(cmd *Command, args []string) bool {
}
}
doTraverse(&stat, sourceStore, filer2.FullPath("/"), 0, fn)
doTraverse(&stat, sourceStore, filer2.FullPath(*dir), 0, fn)
glog.Infof("processed %d directories, %d files", stat.directoryCount, stat.fileCount)

View file

@ -116,7 +116,7 @@ func runFilerReplicate(cmd *Command, args []string) bool {
if err = replicator.Replicate(key, m); err != nil {
glog.Errorf("replicate %s: %+v", key, err)
} else {
glog.V(4).Infof("replicated %s", key)
glog.V(1).Infof("replicated %s", key)
}
}