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.

480 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
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, 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).Infoln("volume", v.Id, "is expired.")
  203. }
  204. }
  205. collectionVolumeSize[v.Collection] += volumeMessage.Size
  206. if _, exist := collectionVolumeReadOnlyCount[v.Collection]; !exist {
  207. collectionVolumeReadOnlyCount[v.Collection] = map[string]uint8{
  208. "IsReadOnly": 0,
  209. "noWriteOrDelete": 0,
  210. "noWriteCanDelete": 0,
  211. "isDiskSpaceLow": 0,
  212. }
  213. }
  214. if v.IsReadOnly() {
  215. collectionVolumeReadOnlyCount[v.Collection]["IsReadOnly"] += 1
  216. if v.noWriteOrDelete {
  217. collectionVolumeReadOnlyCount[v.Collection]["noWriteOrDelete"] += 1
  218. }
  219. if v.noWriteCanDelete {
  220. collectionVolumeReadOnlyCount[v.Collection]["noWriteCanDelete"] += 1
  221. }
  222. if v.location.isDiskSpaceLow {
  223. collectionVolumeReadOnlyCount[v.Collection]["isDiskSpaceLow"] += 1
  224. }
  225. }
  226. }
  227. location.volumesLock.RUnlock()
  228. if len(deleteVids) > 0 {
  229. // delete expired volumes.
  230. location.volumesLock.Lock()
  231. for _, vid := range deleteVids {
  232. found, err := location.deleteVolumeById(vid)
  233. if found {
  234. if err == nil {
  235. glog.V(0).Infof("volume %d is deleted", vid)
  236. } else {
  237. glog.V(0).Infof("delete volume %d: %v", vid, err)
  238. }
  239. }
  240. }
  241. location.volumesLock.Unlock()
  242. }
  243. }
  244. for col, size := range collectionVolumeSize {
  245. stats.VolumeServerDiskSizeGauge.WithLabelValues(col, "normal").Set(float64(size))
  246. }
  247. for col, types := range collectionVolumeReadOnlyCount {
  248. for t, count := range types {
  249. stats.VolumeServerReadOnlyVolumeGauge.WithLabelValues(col, t).Set(float64(count))
  250. }
  251. }
  252. return &master_pb.Heartbeat{
  253. Ip: s.Ip,
  254. Port: uint32(s.Port),
  255. PublicUrl: s.PublicUrl,
  256. MaxVolumeCount: uint32(maxVolumeCount),
  257. MaxFileKey: NeedleIdToUint64(maxFileKey),
  258. DataCenter: s.dataCenter,
  259. Rack: s.rack,
  260. Volumes: volumeMessages,
  261. HasNoVolumes: len(volumeMessages) == 0,
  262. }
  263. }
  264. func (s *Store) Close() {
  265. for _, location := range s.Locations {
  266. location.Close()
  267. }
  268. }
  269. func (s *Store) WriteVolumeNeedle(i needle.VolumeId, n *needle.Needle, fsync bool) (isUnchanged bool, err error) {
  270. if v := s.findVolume(i); v != nil {
  271. if v.IsReadOnly() {
  272. err = fmt.Errorf("volume %d is read only", i)
  273. return
  274. }
  275. _, _, isUnchanged, err = v.writeNeedle2(n, fsync)
  276. return
  277. }
  278. glog.V(0).Infoln("volume", i, "not found!")
  279. err = fmt.Errorf("volume %d not found on %s:%d", i, s.Ip, s.Port)
  280. return
  281. }
  282. func (s *Store) DeleteVolumeNeedle(i needle.VolumeId, n *needle.Needle) (Size, error) {
  283. if v := s.findVolume(i); v != nil {
  284. if v.noWriteOrDelete {
  285. return 0, fmt.Errorf("volume %d is read only", i)
  286. }
  287. return v.deleteNeedle2(n)
  288. }
  289. return 0, fmt.Errorf("volume %d not found on %s:%d", i, s.Ip, s.Port)
  290. }
  291. func (s *Store) ReadVolumeNeedle(i needle.VolumeId, n *needle.Needle, readOption *ReadOption) (int, error) {
  292. if v := s.findVolume(i); v != nil {
  293. return v.readNeedle(n, readOption)
  294. }
  295. return 0, fmt.Errorf("volume %d not found", i)
  296. }
  297. func (s *Store) GetVolume(i needle.VolumeId) *Volume {
  298. return s.findVolume(i)
  299. }
  300. func (s *Store) HasVolume(i needle.VolumeId) bool {
  301. v := s.findVolume(i)
  302. return v != nil
  303. }
  304. func (s *Store) MarkVolumeReadonly(i needle.VolumeId) error {
  305. v := s.findVolume(i)
  306. if v == nil {
  307. return fmt.Errorf("volume %d not found", i)
  308. }
  309. v.noWriteLock.Lock()
  310. v.noWriteOrDelete = true
  311. v.noWriteLock.Unlock()
  312. return nil
  313. }
  314. func (s *Store) MarkVolumeWritable(i needle.VolumeId) error {
  315. v := s.findVolume(i)
  316. if v == nil {
  317. return fmt.Errorf("volume %d not found", i)
  318. }
  319. v.noWriteLock.Lock()
  320. v.noWriteOrDelete = false
  321. v.noWriteLock.Unlock()
  322. return nil
  323. }
  324. func (s *Store) MountVolume(i needle.VolumeId) error {
  325. for _, location := range s.Locations {
  326. if found := location.LoadVolume(i, s.NeedleMapType); found == true {
  327. glog.V(0).Infof("mount volume %d", i)
  328. v := s.findVolume(i)
  329. s.NewVolumesChan <- master_pb.VolumeShortInformationMessage{
  330. Id: uint32(v.Id),
  331. Collection: v.Collection,
  332. ReplicaPlacement: uint32(v.ReplicaPlacement.Byte()),
  333. Version: uint32(v.Version()),
  334. Ttl: v.Ttl.ToUint32(),
  335. }
  336. return nil
  337. }
  338. }
  339. return fmt.Errorf("volume %d not found on disk", i)
  340. }
  341. func (s *Store) UnmountVolume(i needle.VolumeId) error {
  342. v := s.findVolume(i)
  343. if v == nil {
  344. return nil
  345. }
  346. message := master_pb.VolumeShortInformationMessage{
  347. Id: uint32(v.Id),
  348. Collection: v.Collection,
  349. ReplicaPlacement: uint32(v.ReplicaPlacement.Byte()),
  350. Version: uint32(v.Version()),
  351. Ttl: v.Ttl.ToUint32(),
  352. }
  353. for _, location := range s.Locations {
  354. if err := location.UnloadVolume(i); err == nil {
  355. glog.V(0).Infof("UnmountVolume %d", i)
  356. s.DeletedVolumesChan <- message
  357. return nil
  358. }
  359. }
  360. return fmt.Errorf("volume %d not found on disk", i)
  361. }
  362. func (s *Store) DeleteVolume(i needle.VolumeId) error {
  363. v := s.findVolume(i)
  364. if v == nil {
  365. return fmt.Errorf("delete volume %d not found on disk", i)
  366. }
  367. message := master_pb.VolumeShortInformationMessage{
  368. Id: uint32(v.Id),
  369. Collection: v.Collection,
  370. ReplicaPlacement: uint32(v.ReplicaPlacement.Byte()),
  371. Version: uint32(v.Version()),
  372. Ttl: v.Ttl.ToUint32(),
  373. }
  374. for _, location := range s.Locations {
  375. if err := location.DeleteVolume(i); err == nil {
  376. glog.V(0).Infof("DeleteVolume %d", i)
  377. s.DeletedVolumesChan <- message
  378. return nil
  379. } else {
  380. glog.Errorf("DeleteVolume %d: %v", i, err)
  381. }
  382. }
  383. return fmt.Errorf("volume %d not found on disk", i)
  384. }
  385. func (s *Store) ConfigureVolume(i needle.VolumeId, replication string) error {
  386. for _, location := range s.Locations {
  387. fileInfo, found := location.LocateVolume(i)
  388. if !found {
  389. continue
  390. }
  391. // load, modify, save
  392. baseFileName := strings.TrimSuffix(fileInfo.Name(), filepath.Ext(fileInfo.Name()))
  393. vifFile := filepath.Join(location.Directory, baseFileName+".vif")
  394. volumeInfo, _, err := pb.MaybeLoadVolumeInfo(vifFile)
  395. if err != nil {
  396. return fmt.Errorf("volume %d fail to load vif", i)
  397. }
  398. volumeInfo.Replication = replication
  399. err = pb.SaveVolumeInfo(vifFile, volumeInfo)
  400. if err != nil {
  401. return fmt.Errorf("volume %d fail to save vif", i)
  402. }
  403. return nil
  404. }
  405. return fmt.Errorf("volume %d not found on disk", i)
  406. }
  407. func (s *Store) SetVolumeSizeLimit(x uint64) {
  408. atomic.StoreUint64(&s.volumeSizeLimit, x)
  409. }
  410. func (s *Store) GetVolumeSizeLimit() uint64 {
  411. return atomic.LoadUint64(&s.volumeSizeLimit)
  412. }
  413. func (s *Store) MaybeAdjustVolumeMax() (hasChanges bool) {
  414. volumeSizeLimit := s.GetVolumeSizeLimit()
  415. for _, diskLocation := range s.Locations {
  416. if diskLocation.OriginalMaxVolumeCount == 0 {
  417. currentMaxVolumeCount := diskLocation.MaxVolumeCount
  418. diskStatus := stats.NewDiskStatus(diskLocation.Directory)
  419. unusedSpace := diskLocation.UnUsedSpace(volumeSizeLimit)
  420. unclaimedSpaces := int64(diskStatus.Free) - int64(unusedSpace)
  421. volCount := diskLocation.VolumesLen()
  422. maxVolumeCount := volCount
  423. if unclaimedSpaces > int64(volumeSizeLimit) {
  424. maxVolumeCount += int(uint64(unclaimedSpaces)/volumeSizeLimit) - 1
  425. }
  426. diskLocation.MaxVolumeCount = maxVolumeCount
  427. glog.V(2).Infof("disk %s max %d unclaimedSpace:%dMB, unused:%dMB volumeSizeLimit:%dMB",
  428. diskLocation.Directory, maxVolumeCount, unclaimedSpaces/1024/1024, unusedSpace/1024/1024, volumeSizeLimit/1024/1024)
  429. hasChanges = hasChanges || currentMaxVolumeCount != diskLocation.MaxVolumeCount
  430. }
  431. }
  432. return
  433. }