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.

485 lines
15 KiB

6 years ago
6 years ago
6 years ago
12 years ago
12 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
  1. package storage
  2. import (
  3. "fmt"
  4. "path/filepath"
  5. "strings"
  6. "sync/atomic"
  7. "google.golang.org/grpc"
  8. "github.com/chrislusf/seaweedfs/weed/glog"
  9. "github.com/chrislusf/seaweedfs/weed/pb"
  10. "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
  11. "github.com/chrislusf/seaweedfs/weed/stats"
  12. "github.com/chrislusf/seaweedfs/weed/storage/erasure_coding"
  13. "github.com/chrislusf/seaweedfs/weed/storage/needle"
  14. "github.com/chrislusf/seaweedfs/weed/storage/super_block"
  15. . "github.com/chrislusf/seaweedfs/weed/storage/types"
  16. )
  17. const (
  18. MAX_TTL_VOLUME_REMOVAL_DELAY = 10 // 10 minutes
  19. )
  20. type ReadOption struct {
  21. ReadDeleted bool
  22. }
  23. /*
  24. * A VolumeServer contains one Store
  25. */
  26. type Store struct {
  27. MasterAddress string
  28. grpcDialOption grpc.DialOption
  29. volumeSizeLimit uint64 // read from the master
  30. Ip string
  31. Port int
  32. PublicUrl string
  33. Locations []*DiskLocation
  34. dataCenter string // optional informaton, overwriting master setting if exists
  35. rack string // optional information, overwriting master setting if exists
  36. connected bool
  37. NeedleMapType NeedleMapType
  38. NewVolumesChan chan master_pb.VolumeShortInformationMessage
  39. DeletedVolumesChan chan master_pb.VolumeShortInformationMessage
  40. NewEcShardsChan chan master_pb.VolumeEcShardInformationMessage
  41. DeletedEcShardsChan chan master_pb.VolumeEcShardInformationMessage
  42. }
  43. func (s *Store) String() (str string) {
  44. str = fmt.Sprintf("Ip:%s, Port:%d, PublicUrl:%s, dataCenter:%s, rack:%s, connected:%v, volumeSizeLimit:%d", s.Ip, s.Port, s.PublicUrl, s.dataCenter, s.rack, s.connected, s.GetVolumeSizeLimit())
  45. return
  46. }
  47. func NewStore(grpcDialOption grpc.DialOption, port int, ip, publicUrl string, dirnames []string, maxVolumeCounts []int, minFreeSpacePercents []float32, idxFolder string, needleMapKind NeedleMapType) (s *Store) {
  48. s = &Store{grpcDialOption: grpcDialOption, Port: port, Ip: ip, PublicUrl: publicUrl, NeedleMapType: needleMapKind}
  49. s.Locations = make([]*DiskLocation, 0)
  50. for i := 0; i < len(dirnames); i++ {
  51. location := NewDiskLocation(dirnames[i], maxVolumeCounts[i], minFreeSpacePercents[i], idxFolder)
  52. location.loadExistingVolumes(needleMapKind)
  53. s.Locations = append(s.Locations, location)
  54. stats.VolumeServerMaxVolumeCounter.Add(float64(maxVolumeCounts[i]))
  55. }
  56. s.NewVolumesChan = make(chan master_pb.VolumeShortInformationMessage, 3)
  57. s.DeletedVolumesChan = make(chan master_pb.VolumeShortInformationMessage, 3)
  58. s.NewEcShardsChan = make(chan master_pb.VolumeEcShardInformationMessage, 3)
  59. s.DeletedEcShardsChan = make(chan master_pb.VolumeEcShardInformationMessage, 3)
  60. return
  61. }
  62. func (s *Store) AddVolume(volumeId needle.VolumeId, collection string, needleMapKind NeedleMapType, replicaPlacement string, ttlString string, preallocate int64, MemoryMapMaxSizeMb uint32) error {
  63. rt, e := super_block.NewReplicaPlacementFromString(replicaPlacement)
  64. if e != nil {
  65. return e
  66. }
  67. ttl, e := needle.ReadTTL(ttlString)
  68. if e != nil {
  69. return e
  70. }
  71. e = s.addVolume(volumeId, collection, needleMapKind, rt, ttl, preallocate, MemoryMapMaxSizeMb)
  72. return e
  73. }
  74. func (s *Store) DeleteCollection(collection string) (e error) {
  75. for _, location := range s.Locations {
  76. e = location.DeleteCollectionFromDiskLocation(collection)
  77. if e != nil {
  78. return
  79. }
  80. // let the heartbeat send the list of volumes, instead of sending the deleted volume ids to DeletedVolumesChan
  81. }
  82. return
  83. }
  84. func (s *Store) findVolume(vid needle.VolumeId) *Volume {
  85. for _, location := range s.Locations {
  86. if v, found := location.FindVolume(vid); found {
  87. return v
  88. }
  89. }
  90. return nil
  91. }
  92. func (s *Store) FindFreeLocation() (ret *DiskLocation) {
  93. max := 0
  94. for _, location := range s.Locations {
  95. currentFreeCount := location.MaxVolumeCount - location.VolumesLen()
  96. currentFreeCount *= erasure_coding.DataShardsCount
  97. currentFreeCount -= location.EcVolumesLen()
  98. currentFreeCount /= erasure_coding.DataShardsCount
  99. if currentFreeCount > max {
  100. max = currentFreeCount
  101. ret = location
  102. }
  103. }
  104. return ret
  105. }
  106. func (s *Store) addVolume(vid needle.VolumeId, collection string, needleMapKind NeedleMapType, replicaPlacement *super_block.ReplicaPlacement, ttl *needle.TTL, preallocate int64, memoryMapMaxSizeMb uint32) error {
  107. if s.findVolume(vid) != nil {
  108. return fmt.Errorf("Volume Id %d already exists!", vid)
  109. }
  110. if location := s.FindFreeLocation(); location != nil {
  111. glog.V(0).Infof("In dir %s adds volume:%v collection:%s replicaPlacement:%v ttl:%v",
  112. location.Directory, vid, collection, replicaPlacement, ttl)
  113. if volume, err := NewVolume(location.Directory, location.IdxDirectory, collection, vid, needleMapKind, replicaPlacement, ttl, preallocate, memoryMapMaxSizeMb); err == nil {
  114. location.SetVolume(vid, volume)
  115. glog.V(0).Infof("add volume %d", vid)
  116. s.NewVolumesChan <- master_pb.VolumeShortInformationMessage{
  117. Id: uint32(vid),
  118. Collection: collection,
  119. ReplicaPlacement: uint32(replicaPlacement.Byte()),
  120. Version: uint32(volume.Version()),
  121. Ttl: ttl.ToUint32(),
  122. }
  123. return nil
  124. } else {
  125. return err
  126. }
  127. }
  128. return fmt.Errorf("No more free space left")
  129. }
  130. func (s *Store) VolumeInfos() (allStats []*VolumeInfo) {
  131. for _, location := range s.Locations {
  132. stats := collectStatsForOneLocation(location)
  133. allStats = append(allStats, stats...)
  134. }
  135. sortVolumeInfos(allStats)
  136. return allStats
  137. }
  138. func collectStatsForOneLocation(location *DiskLocation) (stats []*VolumeInfo) {
  139. location.volumesLock.RLock()
  140. defer location.volumesLock.RUnlock()
  141. for k, v := range location.volumes {
  142. s := collectStatForOneVolume(k, v)
  143. stats = append(stats, s)
  144. }
  145. return stats
  146. }
  147. func collectStatForOneVolume(vid needle.VolumeId, v *Volume) (s *VolumeInfo) {
  148. s = &VolumeInfo{
  149. Id: vid,
  150. Collection: v.Collection,
  151. ReplicaPlacement: v.ReplicaPlacement,
  152. Version: v.Version(),
  153. ReadOnly: v.IsReadOnly(),
  154. Ttl: v.Ttl,
  155. CompactRevision: uint32(v.CompactionRevision),
  156. }
  157. s.RemoteStorageName, s.RemoteStorageKey = v.RemoteStorageNameKey()
  158. v.dataFileAccessLock.RLock()
  159. defer v.dataFileAccessLock.RUnlock()
  160. if v.nm == nil {
  161. return
  162. }
  163. s.FileCount = v.nm.FileCount()
  164. s.DeleteCount = v.nm.DeletedCount()
  165. s.DeletedByteCount = v.nm.DeletedSize()
  166. s.Size = v.nm.ContentSize()
  167. return
  168. }
  169. func (s *Store) SetDataCenter(dataCenter string) {
  170. s.dataCenter = dataCenter
  171. }
  172. func (s *Store) SetRack(rack string) {
  173. s.rack = rack
  174. }
  175. func (s *Store) GetDataCenter() string {
  176. return s.dataCenter
  177. }
  178. func (s *Store) GetRack() string {
  179. return s.rack
  180. }
  181. func (s *Store) CollectHeartbeat() *master_pb.Heartbeat {
  182. var volumeMessages []*master_pb.VolumeInformationMessage
  183. maxVolumeCount := 0
  184. var maxFileKey NeedleId
  185. collectionVolumeSize := make(map[string]uint64)
  186. collectionVolumeReadOnlyCount := make(map[string]map[string]uint8)
  187. for _, location := range s.Locations {
  188. var deleteVids []needle.VolumeId
  189. maxVolumeCount = maxVolumeCount + location.MaxVolumeCount
  190. location.volumesLock.RLock()
  191. for _, v := range location.volumes {
  192. curMaxFileKey, volumeMessage := v.ToVolumeInformationMessage()
  193. if maxFileKey < curMaxFileKey {
  194. maxFileKey = curMaxFileKey
  195. }
  196. if !v.expired(volumeMessage.Size, s.GetVolumeSizeLimit()) {
  197. volumeMessages = append(volumeMessages, volumeMessage)
  198. } else {
  199. if v.expiredLongEnough(MAX_TTL_VOLUME_REMOVAL_DELAY) {
  200. deleteVids = append(deleteVids, v.Id)
  201. } else {
  202. glog.V(0).Infof("volume %d is expired", v.Id)
  203. }
  204. if v.lastIoError != nil {
  205. deleteVids = append(deleteVids, v.Id)
  206. } else {
  207. glog.Warningf("volume %d has IO error", v.Id)
  208. }
  209. }
  210. collectionVolumeSize[v.Collection] += volumeMessage.Size
  211. if _, exist := collectionVolumeReadOnlyCount[v.Collection]; !exist {
  212. collectionVolumeReadOnlyCount[v.Collection] = map[string]uint8{
  213. "IsReadOnly": 0,
  214. "noWriteOrDelete": 0,
  215. "noWriteCanDelete": 0,
  216. "isDiskSpaceLow": 0,
  217. }
  218. }
  219. if v.IsReadOnly() {
  220. collectionVolumeReadOnlyCount[v.Collection]["IsReadOnly"] += 1
  221. if v.noWriteOrDelete {
  222. collectionVolumeReadOnlyCount[v.Collection]["noWriteOrDelete"] += 1
  223. }
  224. if v.noWriteCanDelete {
  225. collectionVolumeReadOnlyCount[v.Collection]["noWriteCanDelete"] += 1
  226. }
  227. if v.location.isDiskSpaceLow {
  228. collectionVolumeReadOnlyCount[v.Collection]["isDiskSpaceLow"] += 1
  229. }
  230. }
  231. }
  232. location.volumesLock.RUnlock()
  233. if len(deleteVids) > 0 {
  234. // delete expired volumes.
  235. location.volumesLock.Lock()
  236. for _, vid := range deleteVids {
  237. found, err := location.deleteVolumeById(vid)
  238. if found {
  239. if err == nil {
  240. glog.V(0).Infof("volume %d is deleted", vid)
  241. } else {
  242. glog.V(0).Infof("delete volume %d: %v", vid, err)
  243. }
  244. }
  245. }
  246. location.volumesLock.Unlock()
  247. }
  248. }
  249. for col, size := range collectionVolumeSize {
  250. stats.VolumeServerDiskSizeGauge.WithLabelValues(col, "normal").Set(float64(size))
  251. }
  252. for col, types := range collectionVolumeReadOnlyCount {
  253. for t, count := range types {
  254. stats.VolumeServerReadOnlyVolumeGauge.WithLabelValues(col, t).Set(float64(count))
  255. }
  256. }
  257. return &master_pb.Heartbeat{
  258. Ip: s.Ip,
  259. Port: uint32(s.Port),
  260. PublicUrl: s.PublicUrl,
  261. MaxVolumeCount: uint32(maxVolumeCount),
  262. MaxFileKey: NeedleIdToUint64(maxFileKey),
  263. DataCenter: s.dataCenter,
  264. Rack: s.rack,
  265. Volumes: volumeMessages,
  266. HasNoVolumes: len(volumeMessages) == 0,
  267. }
  268. }
  269. func (s *Store) Close() {
  270. for _, location := range s.Locations {
  271. location.Close()
  272. }
  273. }
  274. func (s *Store) WriteVolumeNeedle(i needle.VolumeId, n *needle.Needle, fsync bool) (isUnchanged bool, err error) {
  275. if v := s.findVolume(i); v != nil {
  276. if v.IsReadOnly() {
  277. err = fmt.Errorf("volume %d is read only", i)
  278. return
  279. }
  280. _, _, isUnchanged, err = v.writeNeedle2(n, fsync)
  281. return
  282. }
  283. glog.V(0).Infoln("volume", i, "not found!")
  284. err = fmt.Errorf("volume %d not found on %s:%d", i, s.Ip, s.Port)
  285. return
  286. }
  287. func (s *Store) DeleteVolumeNeedle(i needle.VolumeId, n *needle.Needle) (Size, error) {
  288. if v := s.findVolume(i); v != nil {
  289. if v.noWriteOrDelete {
  290. return 0, fmt.Errorf("volume %d is read only", i)
  291. }
  292. return v.deleteNeedle2(n)
  293. }
  294. return 0, fmt.Errorf("volume %d not found on %s:%d", i, s.Ip, s.Port)
  295. }
  296. func (s *Store) ReadVolumeNeedle(i needle.VolumeId, n *needle.Needle, readOption *ReadOption) (int, error) {
  297. if v := s.findVolume(i); v != nil {
  298. return v.readNeedle(n, readOption)
  299. }
  300. return 0, fmt.Errorf("volume %d not found", i)
  301. }
  302. func (s *Store) GetVolume(i needle.VolumeId) *Volume {
  303. return s.findVolume(i)
  304. }
  305. func (s *Store) HasVolume(i needle.VolumeId) bool {
  306. v := s.findVolume(i)
  307. return v != nil
  308. }
  309. func (s *Store) MarkVolumeReadonly(i needle.VolumeId) error {
  310. v := s.findVolume(i)
  311. if v == nil {
  312. return fmt.Errorf("volume %d not found", i)
  313. }
  314. v.noWriteLock.Lock()
  315. v.noWriteOrDelete = true
  316. v.noWriteLock.Unlock()
  317. return nil
  318. }
  319. func (s *Store) MarkVolumeWritable(i needle.VolumeId) error {
  320. v := s.findVolume(i)
  321. if v == nil {
  322. return fmt.Errorf("volume %d not found", i)
  323. }
  324. v.noWriteLock.Lock()
  325. v.noWriteOrDelete = false
  326. v.noWriteLock.Unlock()
  327. return nil
  328. }
  329. func (s *Store) MountVolume(i needle.VolumeId) error {
  330. for _, location := range s.Locations {
  331. if found := location.LoadVolume(i, s.NeedleMapType); found == true {
  332. glog.V(0).Infof("mount volume %d", i)
  333. v := s.findVolume(i)
  334. s.NewVolumesChan <- master_pb.VolumeShortInformationMessage{
  335. Id: uint32(v.Id),
  336. Collection: v.Collection,
  337. ReplicaPlacement: uint32(v.ReplicaPlacement.Byte()),
  338. Version: uint32(v.Version()),
  339. Ttl: v.Ttl.ToUint32(),
  340. }
  341. return nil
  342. }
  343. }
  344. return fmt.Errorf("volume %d not found on disk", i)
  345. }
  346. func (s *Store) UnmountVolume(i needle.VolumeId) error {
  347. v := s.findVolume(i)
  348. if v == nil {
  349. return nil
  350. }
  351. message := master_pb.VolumeShortInformationMessage{
  352. Id: uint32(v.Id),
  353. Collection: v.Collection,
  354. ReplicaPlacement: uint32(v.ReplicaPlacement.Byte()),
  355. Version: uint32(v.Version()),
  356. Ttl: v.Ttl.ToUint32(),
  357. }
  358. for _, location := range s.Locations {
  359. if err := location.UnloadVolume(i); err == nil {
  360. glog.V(0).Infof("UnmountVolume %d", i)
  361. s.DeletedVolumesChan <- message
  362. return nil
  363. }
  364. }
  365. return fmt.Errorf("volume %d not found on disk", i)
  366. }
  367. func (s *Store) DeleteVolume(i needle.VolumeId) error {
  368. v := s.findVolume(i)
  369. if v == nil {
  370. return fmt.Errorf("delete volume %d not found on disk", i)
  371. }
  372. message := master_pb.VolumeShortInformationMessage{
  373. Id: uint32(v.Id),
  374. Collection: v.Collection,
  375. ReplicaPlacement: uint32(v.ReplicaPlacement.Byte()),
  376. Version: uint32(v.Version()),
  377. Ttl: v.Ttl.ToUint32(),
  378. }
  379. for _, location := range s.Locations {
  380. if err := location.DeleteVolume(i); err == nil {
  381. glog.V(0).Infof("DeleteVolume %d", i)
  382. s.DeletedVolumesChan <- message
  383. return nil
  384. } else {
  385. glog.Errorf("DeleteVolume %d: %v", i, err)
  386. }
  387. }
  388. return fmt.Errorf("volume %d not found on disk", i)
  389. }
  390. func (s *Store) ConfigureVolume(i needle.VolumeId, replication string) error {
  391. for _, location := range s.Locations {
  392. fileInfo, found := location.LocateVolume(i)
  393. if !found {
  394. continue
  395. }
  396. // load, modify, save
  397. baseFileName := strings.TrimSuffix(fileInfo.Name(), filepath.Ext(fileInfo.Name()))
  398. vifFile := filepath.Join(location.Directory, baseFileName+".vif")
  399. volumeInfo, _, err := pb.MaybeLoadVolumeInfo(vifFile)
  400. if err != nil {
  401. return fmt.Errorf("volume %d fail to load vif", i)
  402. }
  403. volumeInfo.Replication = replication
  404. err = pb.SaveVolumeInfo(vifFile, volumeInfo)
  405. if err != nil {
  406. return fmt.Errorf("volume %d fail to save vif", i)
  407. }
  408. return nil
  409. }
  410. return fmt.Errorf("volume %d not found on disk", i)
  411. }
  412. func (s *Store) SetVolumeSizeLimit(x uint64) {
  413. atomic.StoreUint64(&s.volumeSizeLimit, x)
  414. }
  415. func (s *Store) GetVolumeSizeLimit() uint64 {
  416. return atomic.LoadUint64(&s.volumeSizeLimit)
  417. }
  418. func (s *Store) MaybeAdjustVolumeMax() (hasChanges bool) {
  419. volumeSizeLimit := s.GetVolumeSizeLimit()
  420. for _, diskLocation := range s.Locations {
  421. if diskLocation.OriginalMaxVolumeCount == 0 {
  422. currentMaxVolumeCount := diskLocation.MaxVolumeCount
  423. diskStatus := stats.NewDiskStatus(diskLocation.Directory)
  424. unusedSpace := diskLocation.UnUsedSpace(volumeSizeLimit)
  425. unclaimedSpaces := int64(diskStatus.Free) - int64(unusedSpace)
  426. volCount := diskLocation.VolumesLen()
  427. maxVolumeCount := volCount
  428. if unclaimedSpaces > int64(volumeSizeLimit) {
  429. maxVolumeCount += int(uint64(unclaimedSpaces)/volumeSizeLimit) - 1
  430. }
  431. diskLocation.MaxVolumeCount = maxVolumeCount
  432. glog.V(2).Infof("disk %s max %d unclaimedSpace:%dMB, unused:%dMB volumeSizeLimit:%dMB",
  433. diskLocation.Directory, maxVolumeCount, unclaimedSpaces/1024/1024, unusedSpace/1024/1024, volumeSizeLimit/1024/1024)
  434. hasChanges = hasChanges || currentMaxVolumeCount != diskLocation.MaxVolumeCount
  435. }
  436. }
  437. return
  438. }