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.

410 lines
13 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
4 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. package storage
  2. import (
  3. "context"
  4. "fmt"
  5. "github.com/seaweedfs/seaweedfs/weed/pb"
  6. "golang.org/x/exp/slices"
  7. "io"
  8. "os"
  9. "sync"
  10. "time"
  11. "github.com/klauspost/reedsolomon"
  12. "github.com/seaweedfs/seaweedfs/weed/glog"
  13. "github.com/seaweedfs/seaweedfs/weed/operation"
  14. "github.com/seaweedfs/seaweedfs/weed/pb/master_pb"
  15. "github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
  16. "github.com/seaweedfs/seaweedfs/weed/stats"
  17. "github.com/seaweedfs/seaweedfs/weed/storage/erasure_coding"
  18. "github.com/seaweedfs/seaweedfs/weed/storage/needle"
  19. "github.com/seaweedfs/seaweedfs/weed/storage/types"
  20. )
  21. func (s *Store) CollectErasureCodingHeartbeat() *master_pb.Heartbeat {
  22. var ecShardMessages []*master_pb.VolumeEcShardInformationMessage
  23. collectionEcShardSize := make(map[string]int64)
  24. for _, location := range s.Locations {
  25. location.ecVolumesLock.RLock()
  26. for _, ecShards := range location.ecVolumes {
  27. ecShardMessages = append(ecShardMessages, ecShards.ToVolumeEcShardInformationMessage()...)
  28. for _, ecShard := range ecShards.Shards {
  29. collectionEcShardSize[ecShards.Collection] += ecShard.Size()
  30. }
  31. }
  32. location.ecVolumesLock.RUnlock()
  33. }
  34. for col, size := range collectionEcShardSize {
  35. stats.VolumeServerDiskSizeGauge.WithLabelValues(col, "ec").Set(float64(size))
  36. }
  37. return &master_pb.Heartbeat{
  38. EcShards: ecShardMessages,
  39. HasNoEcShards: len(ecShardMessages) == 0,
  40. }
  41. }
  42. func (s *Store) MountEcShards(collection string, vid needle.VolumeId, shardId erasure_coding.ShardId) error {
  43. for _, location := range s.Locations {
  44. if ecVolume, err := location.LoadEcShard(collection, vid, shardId); err == nil {
  45. glog.V(0).Infof("MountEcShards %d.%d", vid, shardId)
  46. var shardBits erasure_coding.ShardBits
  47. s.NewEcShardsChan <- master_pb.VolumeEcShardInformationMessage{
  48. Id: uint32(vid),
  49. Collection: collection,
  50. EcIndexBits: uint32(shardBits.AddShardId(shardId)),
  51. DiskType: string(location.DiskType),
  52. ExpireAtSec: ecVolume.ExpireAtSec,
  53. }
  54. return nil
  55. } else if err == os.ErrNotExist {
  56. continue
  57. } else {
  58. return fmt.Errorf("%s load ec shard %d.%d: %v", location.Directory, vid, shardId, err)
  59. }
  60. }
  61. return fmt.Errorf("MountEcShards %d.%d not found on disk", vid, shardId)
  62. }
  63. func (s *Store) UnmountEcShards(vid needle.VolumeId, shardId erasure_coding.ShardId) error {
  64. ecShard, found := s.findEcShard(vid, shardId)
  65. if !found {
  66. return nil
  67. }
  68. var shardBits erasure_coding.ShardBits
  69. message := master_pb.VolumeEcShardInformationMessage{
  70. Id: uint32(vid),
  71. Collection: ecShard.Collection,
  72. EcIndexBits: uint32(shardBits.AddShardId(shardId)),
  73. DiskType: string(ecShard.DiskType),
  74. }
  75. for _, location := range s.Locations {
  76. if deleted := location.UnloadEcShard(vid, shardId); deleted {
  77. glog.V(0).Infof("UnmountEcShards %d.%d", vid, shardId)
  78. s.DeletedEcShardsChan <- message
  79. return nil
  80. }
  81. }
  82. return fmt.Errorf("UnmountEcShards %d.%d not found on disk", vid, shardId)
  83. }
  84. func (s *Store) findEcShard(vid needle.VolumeId, shardId erasure_coding.ShardId) (*erasure_coding.EcVolumeShard, bool) {
  85. for _, location := range s.Locations {
  86. if v, found := location.FindEcShard(vid, shardId); found {
  87. return v, found
  88. }
  89. }
  90. return nil, false
  91. }
  92. func (s *Store) FindEcVolume(vid needle.VolumeId) (*erasure_coding.EcVolume, bool) {
  93. for _, location := range s.Locations {
  94. if s, found := location.FindEcVolume(vid); found {
  95. return s, true
  96. }
  97. }
  98. return nil, false
  99. }
  100. // shardFiles is a list of shard files, which is used to return the shard locations
  101. func (s *Store) CollectEcShards(vid needle.VolumeId, shardFileNames []string) (ecVolume *erasure_coding.EcVolume, found bool) {
  102. for _, location := range s.Locations {
  103. if s, foundShards := location.CollectEcShards(vid, shardFileNames); foundShards {
  104. ecVolume = s
  105. found = true
  106. }
  107. }
  108. return
  109. }
  110. func (s *Store) DestroyEcVolume(vid needle.VolumeId) {
  111. for _, location := range s.Locations {
  112. location.DestroyEcVolume(vid)
  113. }
  114. }
  115. func (s *Store) ReadEcShardNeedle(vid needle.VolumeId, n *needle.Needle, onReadSizeFn func(size types.Size)) (int, error) {
  116. for _, location := range s.Locations {
  117. if localEcVolume, found := location.FindEcVolume(vid); found {
  118. offset, size, intervals, err := localEcVolume.LocateEcShardNeedle(n.Id, localEcVolume.Version)
  119. if err != nil {
  120. return 0, fmt.Errorf("locate in local ec volume: %v", err)
  121. }
  122. if size.IsDeleted() {
  123. return 0, ErrorDeleted
  124. }
  125. if onReadSizeFn != nil {
  126. onReadSizeFn(size)
  127. }
  128. glog.V(3).Infof("read ec volume %d offset %d size %d intervals:%+v", vid, offset.ToActualOffset(), size, intervals)
  129. if len(intervals) > 1 {
  130. glog.V(3).Infof("ReadEcShardNeedle needle id %s intervals:%+v", n.String(), intervals)
  131. }
  132. bytes, isDeleted, err := s.readEcShardIntervals(vid, n.Id, localEcVolume, intervals)
  133. if err != nil {
  134. return 0, fmt.Errorf("ReadEcShardIntervals: %v", err)
  135. }
  136. if isDeleted {
  137. return 0, ErrorDeleted
  138. }
  139. err = n.ReadBytes(bytes, offset.ToActualOffset(), size, localEcVolume.Version)
  140. if err != nil {
  141. return 0, fmt.Errorf("readbytes: %v", err)
  142. }
  143. return len(bytes), nil
  144. }
  145. }
  146. return 0, fmt.Errorf("ec shard %d not found", vid)
  147. }
  148. func (s *Store) readEcShardIntervals(vid needle.VolumeId, needleId types.NeedleId, ecVolume *erasure_coding.EcVolume, intervals []erasure_coding.Interval) (data []byte, is_deleted bool, err error) {
  149. if err = s.cachedLookupEcShardLocations(ecVolume); err != nil {
  150. return nil, false, fmt.Errorf("failed to locate shard via master grpc %s: %v", s.MasterAddress, err)
  151. }
  152. for i, interval := range intervals {
  153. if d, isDeleted, e := s.readOneEcShardInterval(needleId, ecVolume, interval); e != nil {
  154. return nil, isDeleted, e
  155. } else {
  156. if isDeleted {
  157. is_deleted = true
  158. }
  159. if i == 0 {
  160. data = d
  161. } else {
  162. data = append(data, d...)
  163. }
  164. }
  165. }
  166. return
  167. }
  168. func (s *Store) readOneEcShardInterval(needleId types.NeedleId, ecVolume *erasure_coding.EcVolume, interval erasure_coding.Interval) (data []byte, is_deleted bool, err error) {
  169. shardId, actualOffset := interval.ToShardIdAndOffset(erasure_coding.ErasureCodingLargeBlockSize, erasure_coding.ErasureCodingSmallBlockSize)
  170. data = make([]byte, interval.Size)
  171. if shard, found := ecVolume.FindEcVolumeShard(shardId); found {
  172. if n, err = shard.ReadAt(data, actualOffset); err != nil {
  173. if n != interval.Size {
  174. glog.V(0).Infof("read local ec shard %d.%d offset %d: %v", ecVolume.VolumeId, shardId, actualOffset, err)
  175. return
  176. }
  177. }
  178. } else {
  179. ecVolume.ShardLocationsLock.RLock()
  180. sourceDataNodes, hasShardIdLocation := ecVolume.ShardLocations[shardId]
  181. ecVolume.ShardLocationsLock.RUnlock()
  182. // try reading directly
  183. if hasShardIdLocation {
  184. _, is_deleted, err = s.readRemoteEcShardInterval(sourceDataNodes, needleId, ecVolume.VolumeId, shardId, data, actualOffset)
  185. if err == nil {
  186. return
  187. }
  188. glog.V(0).Infof("clearing ec shard %d.%d locations: %v", ecVolume.VolumeId, shardId, err)
  189. }
  190. // try reading by recovering from other shards
  191. _, is_deleted, err = s.recoverOneRemoteEcShardInterval(needleId, ecVolume, shardId, data, actualOffset)
  192. if err == nil {
  193. return
  194. }
  195. glog.V(0).Infof("recover ec shard %d.%d : %v", ecVolume.VolumeId, shardId, err)
  196. }
  197. return
  198. }
  199. func forgetShardId(ecVolume *erasure_coding.EcVolume, shardId erasure_coding.ShardId) {
  200. // failed to access the source data nodes, clear it up
  201. ecVolume.ShardLocationsLock.Lock()
  202. delete(ecVolume.ShardLocations, shardId)
  203. ecVolume.ShardLocationsLock.Unlock()
  204. }
  205. func (s *Store) cachedLookupEcShardLocations(ecVolume *erasure_coding.EcVolume) (err error) {
  206. shardCount := len(ecVolume.ShardLocations)
  207. if shardCount < erasure_coding.DataShardsCount &&
  208. ecVolume.ShardLocationsRefreshTime.Add(11*time.Second).After(time.Now()) ||
  209. shardCount == erasure_coding.TotalShardsCount &&
  210. ecVolume.ShardLocationsRefreshTime.Add(37*time.Minute).After(time.Now()) ||
  211. shardCount >= erasure_coding.DataShardsCount &&
  212. ecVolume.ShardLocationsRefreshTime.Add(7*time.Minute).After(time.Now()) {
  213. // still fresh
  214. return nil
  215. }
  216. glog.V(3).Infof("lookup and cache ec volume %d locations", ecVolume.VolumeId)
  217. err = operation.WithMasterServerClient(false, s.MasterAddress, s.grpcDialOption, func(masterClient master_pb.SeaweedClient) error {
  218. req := &master_pb.LookupEcVolumeRequest{
  219. VolumeId: uint32(ecVolume.VolumeId),
  220. }
  221. resp, err := masterClient.LookupEcVolume(context.Background(), req)
  222. if err != nil {
  223. return fmt.Errorf("lookup ec volume %d: %v", ecVolume.VolumeId, err)
  224. }
  225. if len(resp.ShardIdLocations) < erasure_coding.DataShardsCount {
  226. return fmt.Errorf("only %d shards found but %d required", len(resp.ShardIdLocations), erasure_coding.DataShardsCount)
  227. }
  228. ecVolume.ShardLocationsLock.Lock()
  229. for _, shardIdLocations := range resp.ShardIdLocations {
  230. shardId := erasure_coding.ShardId(shardIdLocations.ShardId)
  231. delete(ecVolume.ShardLocations, shardId)
  232. for _, loc := range shardIdLocations.Locations {
  233. ecVolume.ShardLocations[shardId] = append(ecVolume.ShardLocations[shardId], pb.NewServerAddressFromLocation(loc))
  234. }
  235. }
  236. ecVolume.ShardLocationsRefreshTime = time.Now()
  237. ecVolume.ShardLocationsLock.Unlock()
  238. return nil
  239. })
  240. return
  241. }
  242. func (s *Store) readRemoteEcShardInterval(sourceDataNodes []pb.ServerAddress, needleId types.NeedleId, vid needle.VolumeId, shardId erasure_coding.ShardId, buf []byte, offset int64) (n int, is_deleted bool, err error) {
  243. if len(sourceDataNodes) == 0 {
  244. return 0, false, fmt.Errorf("failed to find ec shard %d.%d", vid, shardId)
  245. }
  246. for _, sourceDataNode := range sourceDataNodes {
  247. glog.V(3).Infof("read remote ec shard %d.%d from %s", vid, shardId, sourceDataNode)
  248. n, is_deleted, err = s.doReadRemoteEcShardInterval(sourceDataNode, needleId, vid, shardId, buf, offset)
  249. if err == nil {
  250. return
  251. }
  252. glog.V(1).Infof("read remote ec shard %d.%d from %s: %v", vid, shardId, sourceDataNode, err)
  253. }
  254. return
  255. }
  256. func (s *Store) doReadRemoteEcShardInterval(sourceDataNode pb.ServerAddress, needleId types.NeedleId, vid needle.VolumeId, shardId erasure_coding.ShardId, buf []byte, offset int64) (n int, is_deleted bool, err error) {
  257. err = operation.WithVolumeServerClient(false, sourceDataNode, s.grpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
  258. // copy data slice
  259. shardReadClient, err := client.VolumeEcShardRead(context.Background(), &volume_server_pb.VolumeEcShardReadRequest{
  260. VolumeId: uint32(vid),
  261. ShardId: uint32(shardId),
  262. Offset: offset,
  263. Size: int64(len(buf)),
  264. FileKey: uint64(needleId),
  265. })
  266. if err != nil {
  267. return fmt.Errorf("failed to start reading ec shard %d.%d from %s: %v", vid, shardId, sourceDataNode, err)
  268. }
  269. for {
  270. resp, receiveErr := shardReadClient.Recv()
  271. if receiveErr == io.EOF {
  272. break
  273. }
  274. if receiveErr != nil {
  275. return fmt.Errorf("receiving ec shard %d.%d from %s: %v", vid, shardId, sourceDataNode, receiveErr)
  276. }
  277. if resp.IsDeleted {
  278. is_deleted = true
  279. }
  280. copy(buf[n:n+len(resp.Data)], resp.Data)
  281. n += len(resp.Data)
  282. }
  283. return nil
  284. })
  285. if err != nil {
  286. return 0, is_deleted, fmt.Errorf("read ec shard %d.%d from %s: %v", vid, shardId, sourceDataNode, err)
  287. }
  288. return
  289. }
  290. func (s *Store) recoverOneRemoteEcShardInterval(needleId types.NeedleId, ecVolume *erasure_coding.EcVolume, shardIdToRecover erasure_coding.ShardId, buf []byte, offset int64) (n int, is_deleted bool, err error) {
  291. glog.V(3).Infof("recover ec shard %d.%d from other locations", ecVolume.VolumeId, shardIdToRecover)
  292. enc, err := reedsolomon.New(erasure_coding.DataShardsCount, erasure_coding.ParityShardsCount)
  293. if err != nil {
  294. return 0, false, fmt.Errorf("failed to create encoder: %v", err)
  295. }
  296. bufs := make([][]byte, erasure_coding.TotalShardsCount)
  297. var wg sync.WaitGroup
  298. ecVolume.ShardLocationsLock.RLock()
  299. for shardId, locations := range ecVolume.ShardLocations {
  300. // skip current shard or empty shard
  301. if shardId == shardIdToRecover {
  302. continue
  303. }
  304. if len(locations) == 0 {
  305. glog.V(3).Infof("readRemoteEcShardInterval missing %d.%d from %+v", ecVolume.VolumeId, shardId, locations)
  306. continue
  307. }
  308. // read from remote locations
  309. wg.Add(1)
  310. go func(shardId erasure_coding.ShardId, locations []pb.ServerAddress) {
  311. defer wg.Done()
  312. data := make([]byte, len(buf))
  313. nRead, isDeleted, readErr := s.readRemoteEcShardInterval(locations, needleId, ecVolume.VolumeId, shardId, data, offset)
  314. if readErr != nil {
  315. glog.V(3).Infof("recover: readRemoteEcShardInterval %d.%d %d bytes from %+v: %v", ecVolume.VolumeId, shardId, nRead, locations, readErr)
  316. forgetShardId(ecVolume, shardId)
  317. }
  318. if isDeleted {
  319. is_deleted = true
  320. }
  321. if nRead == len(buf) {
  322. bufs[shardId] = data
  323. }
  324. }(shardId, locations)
  325. }
  326. ecVolume.ShardLocationsLock.RUnlock()
  327. wg.Wait()
  328. if err = enc.ReconstructData(bufs); err != nil {
  329. glog.V(3).Infof("recovered ec shard %d.%d failed: %v", ecVolume.VolumeId, shardIdToRecover, err)
  330. return 0, false, err
  331. }
  332. glog.V(4).Infof("recovered ec shard %d.%d from other locations", ecVolume.VolumeId, shardIdToRecover)
  333. copy(buf, bufs[shardIdToRecover])
  334. return len(buf), is_deleted, nil
  335. }
  336. func (s *Store) EcVolumes() (ecVolumes []*erasure_coding.EcVolume) {
  337. for _, location := range s.Locations {
  338. location.ecVolumesLock.RLock()
  339. for _, v := range location.ecVolumes {
  340. ecVolumes = append(ecVolumes, v)
  341. }
  342. location.ecVolumesLock.RUnlock()
  343. }
  344. slices.SortFunc(ecVolumes, func(a, b *erasure_coding.EcVolume) int {
  345. return int(b.VolumeId - a.VolumeId)
  346. })
  347. return ecVolumes
  348. }