2019-04-20 18:35:20 +00:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"log"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/volume_server_pb"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-06-05 08:30:24 +00:00
|
|
|
Commands = append(Commands, &commandVolumeMove{})
|
2019-04-20 18:35:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type commandVolumeMove struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandVolumeMove) Name() string {
|
|
|
|
return "volume.move"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandVolumeMove) Help() string {
|
2020-01-01 20:38:29 +00:00
|
|
|
return `move a live volume from one volume server to another volume server
|
2019-04-20 18:35:20 +00:00
|
|
|
|
|
|
|
volume.move <source volume server host:port> <target volume server host:port> <volume id>
|
|
|
|
|
|
|
|
This command move a live volume from one volume server to another volume server. Here are the steps:
|
|
|
|
|
|
|
|
1. This command asks the target volume server to copy the source volume from source volume server, remember the last entry's timestamp.
|
|
|
|
2. This command asks the target volume server to mount the new volume
|
|
|
|
Now the master will mark this volume id as readonly.
|
|
|
|
3. This command asks the target volume server to tail the source volume for updates after the timestamp, for 1 minutes to drain the requests.
|
|
|
|
4. This command asks the source volume server to unmount the source volume
|
|
|
|
Now the master will mark this volume id as writable.
|
|
|
|
5. This command asks the source volume server to delete the source volume
|
|
|
|
|
|
|
|
`
|
|
|
|
}
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
func (c *commandVolumeMove) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
2019-04-20 18:35:20 +00:00
|
|
|
|
2020-04-23 20:37:31 +00:00
|
|
|
if err = commandEnv.confirmIsLocked(); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-04-20 18:35:20 +00:00
|
|
|
if len(args) != 3 {
|
|
|
|
fmt.Fprintf(writer, "received args: %+v\n", args)
|
|
|
|
return fmt.Errorf("need 3 args of <source volume server host:port> <target volume server host:port> <volume id>")
|
|
|
|
}
|
|
|
|
sourceVolumeServer, targetVolumeServer, volumeIdString := args[0], args[1], args[2]
|
|
|
|
|
|
|
|
volumeId, err := needle.NewVolumeId(volumeIdString)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("wrong volume id format %s: %v", volumeId, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if sourceVolumeServer == targetVolumeServer {
|
|
|
|
return fmt.Errorf("source and target volume servers are the same!")
|
|
|
|
}
|
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
return LiveMoveVolume(commandEnv.option.GrpcDialOption, volumeId, sourceVolumeServer, targetVolumeServer, 5*time.Second)
|
2019-04-20 19:05:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// LiveMoveVolume moves one volume from one source volume server to one target volume server, with idleTimeout to drain the incoming requests.
|
2020-02-26 05:50:12 +00:00
|
|
|
func LiveMoveVolume(grpcDialOption grpc.DialOption, volumeId needle.VolumeId, sourceVolumeServer, targetVolumeServer string, idleTimeout time.Duration) (err error) {
|
2019-04-20 19:05:28 +00:00
|
|
|
|
2019-04-20 18:35:20 +00:00
|
|
|
log.Printf("copying volume %d from %s to %s", volumeId, sourceVolumeServer, targetVolumeServer)
|
2020-02-26 05:50:12 +00:00
|
|
|
lastAppendAtNs, err := copyVolume(grpcDialOption, volumeId, sourceVolumeServer, targetVolumeServer)
|
2019-04-20 18:35:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("copy volume %d from %s to %s: %v", volumeId, sourceVolumeServer, targetVolumeServer, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("tailing volume %d from %s to %s", volumeId, sourceVolumeServer, targetVolumeServer)
|
2020-02-26 05:50:12 +00:00
|
|
|
if err = tailVolume(grpcDialOption, volumeId, sourceVolumeServer, targetVolumeServer, lastAppendAtNs, idleTimeout); err != nil {
|
2019-04-20 18:35:20 +00:00
|
|
|
return fmt.Errorf("tail volume %d from %s to %s: %v", volumeId, sourceVolumeServer, targetVolumeServer, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("deleting volume %d from %s", volumeId, sourceVolumeServer)
|
2020-02-26 05:50:12 +00:00
|
|
|
if err = deleteVolume(grpcDialOption, volumeId, sourceVolumeServer); err != nil {
|
2019-04-20 18:35:20 +00:00
|
|
|
return fmt.Errorf("delete volume %d from %s: %v", volumeId, sourceVolumeServer, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("moved volume %d from %s to %s", volumeId, sourceVolumeServer, targetVolumeServer)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
func copyVolume(grpcDialOption grpc.DialOption, volumeId needle.VolumeId, sourceVolumeServer, targetVolumeServer string) (lastAppendAtNs uint64, err error) {
|
2019-04-20 18:35:20 +00:00
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
err = operation.WithVolumeServerClient(targetVolumeServer, grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
|
|
|
|
resp, replicateErr := volumeServerClient.VolumeCopy(context.Background(), &volume_server_pb.VolumeCopyRequest{
|
2019-04-20 18:35:20 +00:00
|
|
|
VolumeId: uint32(volumeId),
|
|
|
|
SourceDataNode: sourceVolumeServer,
|
|
|
|
})
|
|
|
|
if replicateErr == nil {
|
|
|
|
lastAppendAtNs = resp.LastAppendAtNs
|
|
|
|
}
|
|
|
|
return replicateErr
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
func tailVolume(grpcDialOption grpc.DialOption, volumeId needle.VolumeId, sourceVolumeServer, targetVolumeServer string, lastAppendAtNs uint64, idleTimeout time.Duration) (err error) {
|
2019-04-20 18:35:20 +00:00
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
return operation.WithVolumeServerClient(targetVolumeServer, grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
|
|
|
|
_, replicateErr := volumeServerClient.VolumeTailReceiver(context.Background(), &volume_server_pb.VolumeTailReceiverRequest{
|
2019-04-20 18:35:20 +00:00
|
|
|
VolumeId: uint32(volumeId),
|
|
|
|
SinceNs: lastAppendAtNs,
|
2019-04-20 19:05:28 +00:00
|
|
|
IdleTimeoutSeconds: uint32(idleTimeout.Seconds()),
|
2019-04-20 18:35:20 +00:00
|
|
|
SourceVolumeServer: sourceVolumeServer,
|
|
|
|
})
|
|
|
|
return replicateErr
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
func deleteVolume(grpcDialOption grpc.DialOption, volumeId needle.VolumeId, sourceVolumeServer string) (err error) {
|
|
|
|
return operation.WithVolumeServerClient(sourceVolumeServer, grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
|
|
|
|
_, deleteErr := volumeServerClient.VolumeDelete(context.Background(), &volume_server_pb.VolumeDeleteRequest{
|
2019-04-20 18:35:20 +00:00
|
|
|
VolumeId: uint32(volumeId),
|
|
|
|
})
|
2019-04-21 03:31:35 +00:00
|
|
|
return deleteErr
|
2019-04-20 18:35:20 +00:00
|
|
|
})
|
|
|
|
}
|