seaweedfs/weed-fs/src/pkg/topology/node.go

19 lines
245 B
Go
Raw Normal View History

2012-08-24 03:56:09 +00:00
package topology
import (
)
type VolumeId uint32
2012-08-24 03:56:09 +00:00
type VolumeInfo struct {
Id VolumeId
2012-08-24 03:56:09 +00:00
Size int64
}
type Node struct {
volumes map[VolumeId]VolumeInfo
2012-08-24 03:56:09 +00:00
volumeLimit int
Ip string
2012-08-24 03:56:09 +00:00
Port int
PublicUrl string
}