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.

258 lines
7.9 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. replicas = replicas[1:]
  74. continue
  75. }
  76. // reset index db
  77. aDB.Close()
  78. bDB.Close()
  79. aDB, bDB = needle_map.NewMemDb(), needle_map.NewMemDb()
  80. // read index db
  81. if err := c.readIndexDatabase(aDB, a.info.Collection, a.info.Id, a.location.dataNode.Id, *verbose, writer); err != nil {
  82. return err
  83. }
  84. if err := c.readIndexDatabase(bDB, b.info.Collection, b.info.Id, b.location.dataNode.Id, *verbose, writer); err != nil {
  85. return err
  86. }
  87. // find and make up the differnces
  88. if err := c.doVolumeCheckDisk(aDB, bDB, a, b, *verbose, writer, *applyChanges, *nonRepairThreshold); err != nil {
  89. return err
  90. }
  91. if err := c.doVolumeCheckDisk(bDB, aDB, b, a, *verbose, writer, *applyChanges, *nonRepairThreshold); err != nil {
  92. return err
  93. }
  94. replicas = replicas[1:]
  95. }
  96. }
  97. return nil
  98. }
  99. func (c *commandVolumeCheckDisk) doVolumeCheckDisk(subtrahend, minuend *needle_map.MemDb, source, target *VolumeReplica, verbose bool, writer io.Writer, applyChanges bool, nonRepairThreshold float64) error {
  100. // find missing keys
  101. // hash join, can be more efficient
  102. var missingNeedles []needle_map.NeedleValue
  103. var counter int
  104. subtrahend.AscendingVisit(func(value needle_map.NeedleValue) error {
  105. counter++
  106. if _, found := minuend.Get(value.Key); !found {
  107. missingNeedles = append(missingNeedles, value)
  108. }
  109. return nil
  110. })
  111. 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))
  112. if counter == 0 || len(missingNeedles) == 0 {
  113. return nil
  114. }
  115. missingNeedlesFraction := float64(len(missingNeedles)) / float64(counter)
  116. if missingNeedlesFraction > nonRepairThreshold {
  117. return fmt.Errorf(
  118. "failed to start repair volume %d, percentage of missing keys is greater than the threshold: %.2f > %.2f",
  119. source.info.Id, missingNeedlesFraction, nonRepairThreshold)
  120. }
  121. for _, needleValue := range missingNeedles {
  122. needleBlob, err := c.readSourceNeedleBlob(source.location.dataNode.Id, source.info.Id, needleValue)
  123. if err != nil {
  124. return err
  125. }
  126. if !applyChanges {
  127. continue
  128. }
  129. if verbose {
  130. fmt.Fprintf(writer, "read %d,%x %s => %s \n", source.info.Id, needleValue.Key, source.location.dataNode.Id, target.location.dataNode.Id)
  131. }
  132. if err := c.writeNeedleBlobToTarget(target.location.dataNode.Id, source.info.Id, needleValue, needleBlob); err != nil {
  133. return err
  134. }
  135. }
  136. return nil
  137. }
  138. func (c *commandVolumeCheckDisk) readSourceNeedleBlob(sourceVolumeServer string, volumeId uint32, needleValue needle_map.NeedleValue) (needleBlob []byte, err error) {
  139. err = operation.WithVolumeServerClient(sourceVolumeServer, c.env.option.GrpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
  140. resp, err := client.ReadNeedleBlob(context.Background(), &volume_server_pb.ReadNeedleBlobRequest{
  141. VolumeId: volumeId,
  142. NeedleId: uint64(needleValue.Key),
  143. Offset: needleValue.Offset.ToActualOffset(),
  144. Size: int32(needleValue.Size),
  145. })
  146. if err != nil {
  147. return err
  148. }
  149. needleBlob = resp.NeedleBlob
  150. return nil
  151. })
  152. return
  153. }
  154. func (c *commandVolumeCheckDisk) writeNeedleBlobToTarget(targetVolumeServer string, volumeId uint32, needleValue needle_map.NeedleValue, needleBlob []byte) error {
  155. return operation.WithVolumeServerClient(targetVolumeServer, c.env.option.GrpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
  156. _, err := client.WriteNeedleBlob(context.Background(), &volume_server_pb.WriteNeedleBlobRequest{
  157. VolumeId: volumeId,
  158. NeedleId: uint64(needleValue.Key),
  159. Size: int32(needleValue.Size),
  160. NeedleBlob: needleBlob,
  161. })
  162. return err
  163. })
  164. }
  165. func (c *commandVolumeCheckDisk) readIndexDatabase(db *needle_map.MemDb, collection string, volumeId uint32, volumeServer string, verbose bool, writer io.Writer) error {
  166. var buf bytes.Buffer
  167. if err := c.copyVolumeIndexFile(collection, volumeId, volumeServer, &buf, verbose, writer); err != nil {
  168. return err
  169. }
  170. if verbose {
  171. fmt.Fprintf(writer, "load collection %s volume %d index size %d from %s ...\n", collection, volumeId, buf.Len(), volumeServer)
  172. }
  173. return db.LoadFromReaderAt(bytes.NewReader(buf.Bytes()))
  174. }
  175. func (c *commandVolumeCheckDisk) copyVolumeIndexFile(collection string, volumeId uint32, volumeServer string, buf *bytes.Buffer, verbose bool, writer io.Writer) error {
  176. return operation.WithVolumeServerClient(volumeServer, c.env.option.GrpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
  177. ext := ".idx"
  178. copyFileClient, err := volumeServerClient.CopyFile(context.Background(), &volume_server_pb.CopyFileRequest{
  179. VolumeId: volumeId,
  180. Ext: ".idx",
  181. CompactionRevision: math.MaxUint32,
  182. StopOffset: math.MaxInt64,
  183. Collection: collection,
  184. IsEcVolume: false,
  185. IgnoreSourceFileNotFound: false,
  186. })
  187. if err != nil {
  188. return fmt.Errorf("failed to start copying volume %d%s: %v", volumeId, ext, err)
  189. }
  190. err = writeToBuffer(copyFileClient, buf)
  191. if err != nil {
  192. return fmt.Errorf("failed to copy %d%s from %s: %v", volumeId, ext, volumeServer, err)
  193. }
  194. return nil
  195. })
  196. }
  197. func writeToBuffer(client volume_server_pb.VolumeServer_CopyFileClient, buf *bytes.Buffer) error {
  198. for {
  199. resp, receiveErr := client.Recv()
  200. if receiveErr == io.EOF {
  201. break
  202. }
  203. if receiveErr != nil {
  204. return fmt.Errorf("receiving: %v", receiveErr)
  205. }
  206. buf.Write(resp.FileContent)
  207. }
  208. return nil
  209. }