mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
keep system log data
This commit is contained in:
parent
d5364218b2
commit
377870f4a9
|
@ -134,14 +134,10 @@ func (c *commandVolumeFsck) Do(args []string, commandEnv *CommandEnv, writer io.
|
|||
delete(volumeIdToVInfo, volumeId)
|
||||
continue
|
||||
}
|
||||
// or skip /topics/.system/log without collection name
|
||||
if (*c.collection != "" && vinfo.collection != *c.collection) || vinfo.collection == "" {
|
||||
if *c.collection != "" && vinfo.collection != *c.collection {
|
||||
delete(volumeIdToVInfo, volumeId)
|
||||
continue
|
||||
}
|
||||
if *c.volumeId > 0 && *c.collection == "" {
|
||||
*c.collection = vinfo.collection
|
||||
}
|
||||
cutoffFrom := time.Now().Add(-*cutoffTimeAgo).UnixNano()
|
||||
err = c.collectOneVolumeFileIds(dataNodeId, volumeId, vinfo, uint64(cutoffFrom))
|
||||
if err != nil {
|
||||
|
@ -548,7 +544,7 @@ func (c *commandVolumeFsck) oneVolumeFileIdsSubtractFilerFileIds(dataNodeId stri
|
|||
return
|
||||
}
|
||||
|
||||
voluemAddr := pb.NewServerAddressWithGrpcPort(dataNodeId, 0)
|
||||
volumeAddr := pb.NewServerAddressWithGrpcPort(dataNodeId, 0)
|
||||
if err = c.readFilerFileIdFile(volumeId, func(nId types.NeedleId, itemPath util.FullPath) {
|
||||
inUseCount++
|
||||
if *c.verifyNeedle {
|
||||
|
@ -557,7 +553,7 @@ func (c *commandVolumeFsck) oneVolumeFileIdsSubtractFilerFileIds(dataNodeId stri
|
|||
if v.Size > newSize {
|
||||
v.Size = newSize
|
||||
}
|
||||
if _, err := readSourceNeedleBlob(c.env.option.GrpcDialOption, voluemAddr, volumeId, *v); err != nil {
|
||||
if _, err := readSourceNeedleBlob(c.env.option.GrpcDialOption, volumeAddr, volumeId, *v); err != nil {
|
||||
fmt.Fprintf(c.writer, "failed to read file %s NeedleBlob %+v: %+v", itemPath, nId, err)
|
||||
if *c.forcePurging {
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue