seaweedfs/go/storage/store.go

243 lines
7.1 KiB
Go
Raw Normal View History

package storage
import (
2013-02-27 06:54:22 +00:00
"code.google.com/p/weed-fs/go/util"
"encoding/json"
2013-07-04 05:14:16 +00:00
"fmt"
2012-09-13 08:33:47 +00:00
"io/ioutil"
"log"
"net/url"
"strconv"
"strings"
)
type Store struct {
volumes map[VolumeId]*Volume
dir string
Port int
2012-09-26 08:55:56 +00:00
Ip string
PublicUrl string
MaxVolumeCount int
masterNode string
dataCenter string //optional informaton, overwriting master setting if exists
rack string //optional information, overwriting master setting if exists
connected bool
volumeSizeLimit uint64 //read from the master
}
2012-09-26 08:55:56 +00:00
func NewStore(port int, ip, publicUrl, dirname string, maxVolumeCount int) (s *Store) {
s = &Store{Port: port, Ip: ip, PublicUrl: publicUrl, dir: dirname, MaxVolumeCount: maxVolumeCount}
2012-08-24 05:46:54 +00:00
s.volumes = make(map[VolumeId]*Volume)
2012-09-13 08:33:47 +00:00
s.loadExistingVolumes()
2012-09-23 21:51:25 +00:00
log.Println("Store started on dir:", dirname, "with", len(s.volumes), "volumes")
return
}
2012-09-26 08:55:56 +00:00
func (s *Store) AddVolume(volumeListString string, replicationType string) error {
2012-09-30 09:20:33 +00:00
rt, e := NewReplicationTypeFromString(replicationType)
2012-09-26 08:55:56 +00:00
if e != nil {
return e
}
for _, range_string := range strings.Split(volumeListString, ",") {
if strings.Index(range_string, "-") < 0 {
id_string := range_string
2012-11-07 09:51:43 +00:00
id, err := NewVolumeId(id_string)
if err != nil {
2013-07-04 05:14:16 +00:00
return fmt.Errorf("Volume Id %s is not a valid unsigned integer!", id_string)
}
e = s.addVolume(VolumeId(id), rt)
} else {
pair := strings.Split(range_string, "-")
start, start_err := strconv.ParseUint(pair[0], 10, 64)
if start_err != nil {
2013-07-04 05:14:16 +00:00
return fmt.Errorf("Volume Start Id %s is not a valid unsigned integer!", pair[0])
}
end, end_err := strconv.ParseUint(pair[1], 10, 64)
if end_err != nil {
2013-07-04 05:14:16 +00:00
return fmt.Errorf("Volume End Id %s is not a valid unsigned integer!", pair[1] )
}
for id := start; id <= end; id++ {
if err := s.addVolume(VolumeId(id), rt); err != nil {
2012-09-13 08:33:47 +00:00
e = err
2012-09-13 07:04:56 +00:00
}
}
}
}
2012-09-13 07:04:56 +00:00
return e
}
2013-01-17 08:56:56 +00:00
func (s *Store) addVolume(vid VolumeId, replicationType ReplicationType) (err error) {
if s.volumes[vid] != nil {
2013-07-04 05:14:16 +00:00
return fmt.Errorf("Volume Id %s already exists!", vid)
}
2012-09-13 08:33:47 +00:00
log.Println("In dir", s.dir, "adds volume =", vid, ", replicationType =", replicationType)
2013-01-17 08:56:56 +00:00
s.volumes[vid], err = NewVolume(s.dir, vid, replicationType)
return err
}
2012-11-07 09:51:43 +00:00
2012-11-24 01:03:27 +00:00
func (s *Store) CheckCompactVolume(volumeIdString string, garbageThresholdString string) (error, bool) {
vid, err := NewVolumeId(volumeIdString)
if err != nil {
2013-07-04 05:14:16 +00:00
return fmt.Errorf("Volume Id %s is not a valid unsigned integer!", volumeIdString), false
}
garbageThreshold, e := strconv.ParseFloat(garbageThresholdString, 32)
if e != nil {
2013-07-04 05:14:16 +00:00
return fmt.Errorf("garbageThreshold %s is not a valid float number!", garbageThresholdString), false
}
return nil, garbageThreshold < s.volumes[vid].garbageLevel()
2012-11-24 01:03:27 +00:00
}
2012-11-07 09:51:43 +00:00
func (s *Store) CompactVolume(volumeIdString string) error {
vid, err := NewVolumeId(volumeIdString)
if err != nil {
2013-07-04 05:14:16 +00:00
return fmt.Errorf("Volume Id %s is not a valid unsigned integer!", volumeIdString)
2012-11-07 09:51:43 +00:00
}
return s.volumes[vid].compact()
}
func (s *Store) CommitCompactVolume(volumeIdString string) error {
vid, err := NewVolumeId(volumeIdString)
if err != nil {
2013-07-04 05:14:16 +00:00
return fmt.Errorf("Volume Id %s is not a valid unsigned integer!", volumeIdString)
}
return s.volumes[vid].commitCompact()
2012-11-07 09:51:43 +00:00
}
func (s *Store) FreezeVolume(volumeIdString string) error {
vid, err := NewVolumeId(volumeIdString)
if err != nil {
2013-07-04 05:14:16 +00:00
return fmt.Errorf("Volume Id %s is not a valid unsigned integer!", volumeIdString)
}
if s.volumes[vid].readOnly {
2013-07-04 05:14:16 +00:00
return fmt.Errorf("Volume %s is already read-only", volumeIdString)
}
return s.volumes[vid].freeze()
}
2012-09-13 08:33:47 +00:00
func (s *Store) loadExistingVolumes() {
if dirs, err := ioutil.ReadDir(s.dir); err == nil {
for _, dir := range dirs {
name := dir.Name()
if !dir.IsDir() && strings.HasSuffix(name, ".dat") {
base := name[:len(name)-len(".dat")]
if vid, err := NewVolumeId(base); err == nil {
if s.volumes[vid] == nil {
2013-01-17 08:56:56 +00:00
if v, e := NewVolume(s.dir, vid, CopyNil); e == nil {
s.volumes[vid] = v
log.Println("In dir", s.dir, "read volume =", vid, "replicationType =", v.ReplicaType, "version =", v.Version(), "size =", v.Size())
2013-01-17 08:56:56 +00:00
}
2012-09-13 08:33:47 +00:00
}
}
}
}
}
}
func (s *Store) Status() []*VolumeInfo {
var stats []*VolumeInfo
for k, v := range s.volumes {
s := &VolumeInfo{Id: VolumeId(k), Size: v.ContentSize(),
RepType: v.ReplicaType, Version: v.Version(),
FileCount: v.nm.FileCount(),
DeleteCount: v.nm.DeletedCount(),
DeletedByteCount: v.nm.DeletedSize(),
ReadOnly: v.readOnly}
stats = append(stats, s)
}
return stats
}
type JoinResult struct {
VolumeSizeLimit uint64
}
func (s *Store) SetMaster(mserver string) {
2012-12-17 09:17:06 +00:00
s.masterNode = mserver
}
func (s *Store) SetDataCenter(dataCenter string) {
s.dataCenter = dataCenter
}
func (s *Store) SetRack(rack string) {
s.rack = rack
}
func (s *Store) Join() error {
2012-08-24 05:56:14 +00:00
stats := new([]*VolumeInfo)
for k, v := range s.volumes {
s := &VolumeInfo{Id: VolumeId(k), Size: uint64(v.Size()),
RepType: v.ReplicaType, Version: v.Version(),
FileCount: v.nm.FileCount(),
DeleteCount: v.nm.DeletedCount(),
DeletedByteCount: v.nm.DeletedSize(),
ReadOnly: v.readOnly}
*stats = append(*stats, s)
}
bytes, _ := json.Marshal(stats)
values := make(url.Values)
if !s.connected {
values.Add("init", "true")
}
values.Add("port", strconv.Itoa(s.Port))
2012-09-26 08:55:56 +00:00
values.Add("ip", s.Ip)
values.Add("publicUrl", s.PublicUrl)
values.Add("volumes", string(bytes))
values.Add("maxVolumeCount", strconv.Itoa(s.MaxVolumeCount))
values.Add("dataCenter", s.dataCenter)
values.Add("rack", s.rack)
jsonBlob, err := util.Post("http://"+s.masterNode+"/dir/join", values)
if err != nil {
return err
}
var ret JoinResult
if err := json.Unmarshal(jsonBlob, &ret); err != nil {
return err
}
s.volumeSizeLimit = ret.VolumeSizeLimit
s.connected = true
return nil
}
func (s *Store) Close() {
for _, v := range s.volumes {
v.Close()
}
}
func (s *Store) Write(i VolumeId, n *Needle) (size uint32, err error) {
2013-04-15 02:37:29 +00:00
if v := s.volumes[i]; v != nil {
2013-04-15 02:34:37 +00:00
if v.readOnly {
2013-07-04 05:14:16 +00:00
err = fmt.Errorf("Volume %s is read only!", i)
return
2013-04-15 02:34:37 +00:00
} else {
2013-07-04 05:14:16 +00:00
if s.volumeSizeLimit >= v.ContentSize()+uint64(size) {
size, err = v.write(n)
} else {
err = fmt.Errorf("Volume Size Limit %d Exceeded! Current size is %d", s.volumeSizeLimit, v.ContentSize())
}
2013-04-15 02:34:37 +00:00
if err != nil && s.volumeSizeLimit < v.ContentSize()+uint64(size) && s.volumeSizeLimit >= v.ContentSize() {
log.Println("volume", i, "size is", v.ContentSize(), "close to", s.volumeSizeLimit)
if err = s.Join(); err != nil {
log.Printf("error with Join: %s", err)
}
2013-02-27 06:54:22 +00:00
}
}
return
2012-09-11 00:08:52 +00:00
}
log.Println("volume", i, "not found!")
2013-07-04 05:14:16 +00:00
err = fmt.Errorf("Volume %s not found!", i)
return
}
func (s *Store) Delete(i VolumeId, n *Needle) (uint32, error) {
if v := s.volumes[i]; v != nil && !v.readOnly {
2012-09-11 00:08:52 +00:00
return v.delete(n)
}
return 0, nil
}
2012-08-24 05:46:54 +00:00
func (s *Store) Read(i VolumeId, n *Needle) (int, error) {
if v := s.volumes[i]; v != nil {
2012-09-11 00:08:52 +00:00
return v.read(n)
}
2013-07-04 05:14:16 +00:00
return 0, fmt.Errorf("Volume %s not found!", i)
2012-09-11 00:08:52 +00:00
}
2012-09-21 00:58:29 +00:00
func (s *Store) GetVolume(i VolumeId) *Volume {
2012-09-26 08:55:56 +00:00
return s.volumes[i]
2012-09-21 00:58:29 +00:00
}
2012-09-11 00:08:52 +00:00
func (s *Store) HasVolume(i VolumeId) bool {
2012-09-26 08:55:56 +00:00
_, ok := s.volumes[i]
return ok
}