mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-01-18 06:30:07 +08:00
Sort VolumeInfos by VolumeId in Store.Status();
Ordered VolumeInfos is more Human-readable, especially when there is a lot of volumes.
This commit is contained in:
parent
c42d33e800
commit
b7a18580b8
@ -223,7 +223,9 @@ func (s *Store) Status() []*VolumeInfo {
|
||||
var stats []*VolumeInfo
|
||||
for _, location := range s.Locations {
|
||||
for k, v := range location.volumes {
|
||||
s := &VolumeInfo{Id: VolumeId(k), Size: v.ContentSize(),
|
||||
s := &VolumeInfo{
|
||||
Id: VolumeId(k),
|
||||
Size: v.ContentSize(),
|
||||
Collection: v.Collection,
|
||||
ReplicaPlacement: v.ReplicaPlacement,
|
||||
Version: v.Version(),
|
||||
@ -235,6 +237,7 @@ func (s *Store) Status() []*VolumeInfo {
|
||||
stats = append(stats, s)
|
||||
}
|
||||
}
|
||||
sortVolumeInfos(stats)
|
||||
return stats
|
||||
}
|
||||
|
||||
|
@ -3,6 +3,7 @@ package storage
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/chrislusf/seaweedfs/go/operation"
|
||||
"sort"
|
||||
)
|
||||
|
||||
type VolumeInfo struct {
|
||||
@ -42,3 +43,23 @@ func (vi VolumeInfo) String() string {
|
||||
return fmt.Sprintf("Id:%d, Size:%d, ReplicaPlacement:%s, Collection:%s, Version:%v, FileCount:%d, DeleteCount:%d, DeletedByteCount:%d, ReadOnly:%v",
|
||||
vi.Id, vi.Size, vi.ReplicaPlacement, vi.Collection, vi.Version, vi.FileCount, vi.DeleteCount, vi.DeletedByteCount, vi.ReadOnly)
|
||||
}
|
||||
|
||||
/*VolumesInfo sorting*/
|
||||
|
||||
type volumeInfos []*VolumeInfo
|
||||
|
||||
func (vis volumeInfos) Len() int {
|
||||
return len(vis)
|
||||
}
|
||||
|
||||
func (vis volumeInfos) Less(i, j int) bool {
|
||||
return vis[i].Id < vis[j].Id
|
||||
}
|
||||
|
||||
func (vis volumeInfos) Swap(i, j int) {
|
||||
vis[i], vis[j] = vis[j], vis[i]
|
||||
}
|
||||
|
||||
func sortVolumeInfos(vis volumeInfos) {
|
||||
sort.Sort(vis)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user