2014-03-16 06:03:49 +00:00
|
|
|
package topology
|
|
|
|
|
|
|
|
import (
|
2022-04-04 08:50:56 +00:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2015-05-03 19:37:49 +00:00
|
|
|
"github.com/chrislusf/raft"
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2019-04-19 04:43:36 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
2022-04-04 08:50:56 +00:00
|
|
|
hashicorpRaft "github.com/hashicorp/raft"
|
2014-03-16 06:03:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type MaxVolumeIdCommand struct {
|
2019-04-19 04:43:36 +00:00
|
|
|
MaxVolumeId needle.VolumeId `json:"maxVolumeId"`
|
2014-03-16 06:03:49 +00:00
|
|
|
}
|
|
|
|
|
2019-04-19 04:43:36 +00:00
|
|
|
func NewMaxVolumeIdCommand(value needle.VolumeId) *MaxVolumeIdCommand {
|
2014-03-16 06:03:49 +00:00
|
|
|
return &MaxVolumeIdCommand{
|
|
|
|
MaxVolumeId: value,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *MaxVolumeIdCommand) CommandName() string {
|
|
|
|
return "MaxVolumeId"
|
|
|
|
}
|
|
|
|
|
2022-04-04 12:51:51 +00:00
|
|
|
// deprecatedCommandApply represents the old interface to apply a command to the server.
|
2014-03-16 06:03:49 +00:00
|
|
|
func (c *MaxVolumeIdCommand) Apply(server raft.Server) (interface{}, error) {
|
|
|
|
topo := server.Context().(*Topology)
|
|
|
|
before := topo.GetMaxVolumeId()
|
|
|
|
topo.UpAdjustMaxVolumeId(c.MaxVolumeId)
|
|
|
|
|
2018-11-18 19:51:38 +00:00
|
|
|
glog.V(1).Infoln("max volume id", before, "==>", topo.GetMaxVolumeId())
|
2014-03-16 06:03:49 +00:00
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|
2022-04-04 08:50:56 +00:00
|
|
|
|
|
|
|
func (s *MaxVolumeIdCommand) Persist(sink hashicorpRaft.SnapshotSink) error {
|
|
|
|
b, err := json.Marshal(s)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("marshal: %v", err)
|
|
|
|
}
|
|
|
|
_, err = sink.Write(b)
|
|
|
|
if err != nil {
|
|
|
|
sink.Cancel()
|
|
|
|
return fmt.Errorf("sink.Write(): %v", err)
|
|
|
|
}
|
|
|
|
return sink.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *MaxVolumeIdCommand) Release() {
|
|
|
|
}
|