Browse Source

printout meta data size

pull/1449/head
Chris Lu 4 years ago
parent
commit
f76a2b2c8a
  1. 4
      weed/shell/command_fs_meta_cat.go

4
weed/shell/command_fs_meta_cat.go

@ -2,6 +2,7 @@ package shell
import (
"fmt"
"github.com/golang/protobuf/proto"
"io"
"sort"
@ -69,6 +70,9 @@ func (c *commandFsMetaCat) Do(args []string, commandEnv *CommandEnv, writer io.W
fmt.Fprintf(writer, "%s\n", text)
bytes, err := proto.Marshal(respLookupEntry.Entry)
fmt.Fprintf(writer, "chunks %d meta size: %d\n", len(respLookupEntry.Entry.Chunks), len(bytes))
return nil
})

Loading…
Cancel
Save