add printouts for synchronizing metadata which can be slow for large folders

This commit is contained in:
Chris Lu
2020-05-18 10:31:12 -07:00
parent 0c856e8387
commit ac48c899e8
2 changed files with 19 additions and 15 deletions

View File

@@ -10,6 +10,7 @@ import (
)
func InitMetaCache(mc *MetaCache, client filer_pb.FilerClient, path string) error {
glog.V(0).Infof("synchronizing meta data ...")
filer_pb.TraverseBfs(client, util.FullPath(path), func(parentPath util.FullPath, pbEntry *filer_pb.Entry) {
entry := filer2.FromPbEntry(string(parentPath), pbEntry)
if err := mc.InsertEntry(context.Background(), entry); err != nil {