You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

252 lines
7.8 KiB

4 years ago
4 years ago
  1. package shell
  2. import (
  3. "bytes"
  4. "context"
  5. "flag"
  6. "fmt"
  7. "github.com/chrislusf/seaweedfs/weed/operation"
  8. "github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
  9. "github.com/chrislusf/seaweedfs/weed/storage/needle_map"
  10. "io"
  11. "math"
  12. "sort"
  13. )
  14. func init() {
  15. Commands = append(Commands, &commandVolumeCheckDisk{})
  16. }
  17. type commandVolumeCheckDisk struct {
  18. env *CommandEnv
  19. }
  20. func (c *commandVolumeCheckDisk) Name() string {
  21. return "volume.check.disk"
  22. }
  23. func (c *commandVolumeCheckDisk) Help() string {
  24. return `check all replicated volumes to find and fix inconsistencies
  25. How it works:
  26. find all volumes that are replicated
  27. for each volume id, if there are more than 2 replicas, find one pair with the largest 2 in file count.
  28. for the pair volume A and B
  29. append entries in A and not in B to B
  30. append entries in B and not in A to A
  31. `
  32. }
  33. func (c *commandVolumeCheckDisk) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
  34. if err = commandEnv.confirmIsLocked(); err != nil {
  35. return
  36. }
  37. fsckCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
  38. slowMode := fsckCommand.Bool("slow", false, "slow mode checks all replicas even file counts are the same")
  39. verbose := fsckCommand.Bool("v", false, "verbose mode")
  40. applyChanges := fsckCommand.Bool("force", false, "apply the fix")
  41. nonRepairThreshold := fsckCommand.Float64("nonRepairThreshold", 0.3, "repair when missing keys is not more than this limit")
  42. if err = fsckCommand.Parse(args); err != nil {
  43. return nil
  44. }
  45. c.env = commandEnv
  46. // collect topology information
  47. topologyInfo, _, err := collectTopologyInfo(commandEnv)
  48. if err != nil {
  49. return err
  50. }
  51. volumeReplicas, _ := collectVolumeReplicaLocations(topologyInfo)
  52. // pick 1 pairs of volume replica
  53. fileCount := func(replica *VolumeReplica) uint64 {
  54. return replica.info.FileCount - replica.info.DeleteCount
  55. }
  56. aDB, bDB := needle_map.NewMemDb(), needle_map.NewMemDb()
  57. defer aDB.Close()
  58. defer bDB.Close()
  59. for _, replicas := range volumeReplicas {
  60. sort.Slice(replicas, func(i, j int) bool {
  61. return fileCount(replicas[i]) > fileCount(replicas[j])
  62. })
  63. for len(replicas) >= 2 {
  64. a, b := replicas[0], replicas[1]
  65. if !*slowMode {
  66. if fileCount(a) == fileCount(b) {
  67. replicas = replicas[1:]
  68. continue
  69. }
  70. }
  71. if a.info.ReadOnly || b.info.ReadOnly {
  72. fmt.Fprintf(writer, "skipping readonly volume %d on %s and %s\n", a.info.Id, a.location.dataNode.Id, b.location.dataNode.Id)
  73. continue
  74. }
  75. // reset index db
  76. aDB.Close()
  77. bDB.Close()
  78. aDB, bDB = needle_map.NewMemDb(), needle_map.NewMemDb()
  79. // read index db
  80. if err := c.readIndexDatabase(aDB, a.info.Collection, a.info.Id, a.location.dataNode.Id, *verbose, writer); err != nil {
  81. return err
  82. }
  83. if err := c.readIndexDatabase(bDB, b.info.Collection, b.info.Id, b.location.dataNode.Id, *verbose, writer); err != nil {
  84. return err
  85. }
  86. // find and make up the differnces
  87. if err := c.doVolumeCheckDisk(aDB, bDB, a, b, *verbose, writer, *applyChanges, *nonRepairThreshold); err != nil {
  88. return err
  89. }
  90. if err := c.doVolumeCheckDisk(bDB, aDB, b, a, *verbose, writer, *applyChanges, *nonRepairThreshold); err != nil {
  91. return err
  92. }
  93. replicas = replicas[1:]
  94. }
  95. }
  96. return nil
  97. }
  98. func (c *commandVolumeCheckDisk) doVolumeCheckDisk(subtrahend, minuend *needle_map.MemDb, source, target *VolumeReplica, verbose bool, writer io.Writer, applyChanges bool, nonRepairThreshold float64) error {
  99. // find missing keys
  100. // hash join, can be more efficient
  101. var missingNeedles []needle_map.NeedleValue
  102. var counter int
  103. subtrahend.AscendingVisit(func(value needle_map.NeedleValue) error {
  104. counter++
  105. if _, found := minuend.Get(value.Key); !found {
  106. missingNeedles = append(missingNeedles, value)
  107. }
  108. return nil
  109. })
  110. fmt.Fprintf(writer, "volume %d %s has %d entries, %s missed %d entries\n", source.info.Id, source.location.dataNode.Id, counter, target.location.dataNode.Id, len(missingNeedles))
  111. missingNeedlesFraction := float64(len(missingNeedles)) / float64(counter)
  112. if missingNeedlesFraction > nonRepairThreshold {
  113. return fmt.Errorf(
  114. "failed to start repair volume %d, percentage of missing keys is greater than the threshold: %.2f > %.2f",
  115. source.info.Id, missingNeedlesFraction, nonRepairThreshold)
  116. }
  117. for _, needleValue := range missingNeedles {
  118. needleBlob, err := c.readSourceNeedleBlob(source.location.dataNode.Id, source.info.Id, needleValue)
  119. if err != nil {
  120. return err
  121. }
  122. if !applyChanges {
  123. continue
  124. }
  125. if verbose {
  126. fmt.Fprintf(writer, "read %d,%x %s => %s \n", source.info.Id, needleValue.Key, source.location.dataNode.Id, target.location.dataNode.Id)
  127. }
  128. if err := c.writeNeedleBlobToTarget(target.location.dataNode.Id, source.info.Id, needleValue, needleBlob); err != nil {
  129. return err
  130. }
  131. }
  132. return nil
  133. }
  134. func (c *commandVolumeCheckDisk) readSourceNeedleBlob(sourceVolumeServer string, volumeId uint32, needleValue needle_map.NeedleValue) (needleBlob []byte, err error) {
  135. err = operation.WithVolumeServerClient(sourceVolumeServer, c.env.option.GrpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
  136. resp, err := client.ReadNeedleBlob(context.Background(), &volume_server_pb.ReadNeedleBlobRequest{
  137. VolumeId: volumeId,
  138. NeedleId: uint64(needleValue.Key),
  139. Offset: needleValue.Offset.ToActualOffset(),
  140. Size: int32(needleValue.Size),
  141. })
  142. if err != nil {
  143. return err
  144. }
  145. needleBlob = resp.NeedleBlob
  146. return nil
  147. })
  148. return
  149. }
  150. func (c *commandVolumeCheckDisk) writeNeedleBlobToTarget(targetVolumeServer string, volumeId uint32, needleValue needle_map.NeedleValue, needleBlob []byte) error {
  151. return operation.WithVolumeServerClient(targetVolumeServer, c.env.option.GrpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
  152. _, err := client.WriteNeedleBlob(context.Background(), &volume_server_pb.WriteNeedleBlobRequest{
  153. VolumeId: volumeId,
  154. NeedleId: uint64(needleValue.Key),
  155. Size: int32(needleValue.Size),
  156. NeedleBlob: needleBlob,
  157. })
  158. return err
  159. })
  160. }
  161. func (c *commandVolumeCheckDisk) readIndexDatabase(db *needle_map.MemDb, collection string, volumeId uint32, volumeServer string, verbose bool, writer io.Writer) error {
  162. var buf bytes.Buffer
  163. if err := c.copyVolumeIndexFile(collection, volumeId, volumeServer, &buf, verbose, writer); err != nil {
  164. return err
  165. }
  166. if verbose {
  167. fmt.Fprintf(writer, "load collection %s volume %d index size %d from %s ...\n", collection, volumeId, buf.Len(), volumeServer)
  168. }
  169. return db.LoadFromReaderAt(bytes.NewReader(buf.Bytes()))
  170. }
  171. func (c *commandVolumeCheckDisk) copyVolumeIndexFile(collection string, volumeId uint32, volumeServer string, buf *bytes.Buffer, verbose bool, writer io.Writer) error {
  172. return operation.WithVolumeServerClient(volumeServer, c.env.option.GrpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
  173. ext := ".idx"
  174. copyFileClient, err := volumeServerClient.CopyFile(context.Background(), &volume_server_pb.CopyFileRequest{
  175. VolumeId: volumeId,
  176. Ext: ".idx",
  177. CompactionRevision: math.MaxUint32,
  178. StopOffset: math.MaxInt64,
  179. Collection: collection,
  180. IsEcVolume: false,
  181. IgnoreSourceFileNotFound: false,
  182. })
  183. if err != nil {
  184. return fmt.Errorf("failed to start copying volume %d%s: %v", volumeId, ext, err)
  185. }
  186. err = writeToBuffer(copyFileClient, buf)
  187. if err != nil {
  188. return fmt.Errorf("failed to copy %d%s from %s: %v", volumeId, ext, volumeServer, err)
  189. }
  190. return nil
  191. })
  192. }
  193. func writeToBuffer(client volume_server_pb.VolumeServer_CopyFileClient, buf *bytes.Buffer) error {
  194. for {
  195. resp, receiveErr := client.Recv()
  196. if receiveErr == io.EOF {
  197. break
  198. }
  199. if receiveErr != nil {
  200. return fmt.Errorf("receiving: %v", receiveErr)
  201. }
  202. buf.Write(resp.FileContent)
  203. }
  204. return nil
  205. }