2019-05-25 02:52:23 +08:00
|
|
|
package shell
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2019-06-01 14:41:17 +08:00
|
|
|
"time"
|
2019-05-25 02:52:23 +08:00
|
|
|
|
2024-09-25 07:15:54 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
|
|
|
|
2019-12-22 20:31:36 +08:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2022-07-29 15:17:28 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/operation"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/master_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/erasure_coding"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/needle"
|
2019-05-25 02:52:23 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-06-05 16:30:24 +08:00
|
|
|
Commands = append(Commands, &commandEcEncode{})
|
2019-05-25 02:52:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type commandEcEncode struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandEcEncode) Name() string {
|
|
|
|
return "ec.encode"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *commandEcEncode) Help() string {
|
|
|
|
return `apply erasure coding to a volume
|
|
|
|
|
2021-11-02 08:22:47 +08:00
|
|
|
ec.encode [-collection=""] [-fullPercent=95 -quietFor=1h]
|
2019-06-05 15:13:13 +08:00
|
|
|
ec.encode [-collection=""] [-volumeId=<volume_id>]
|
|
|
|
|
2019-05-25 02:52:23 +08:00
|
|
|
This command will:
|
|
|
|
1. freeze one volume
|
|
|
|
2. apply erasure coding to the volume
|
2024-12-11 05:30:13 +08:00
|
|
|
3. (optionally) re-balance encoded shards across multiple volume servers
|
2019-05-25 02:52:23 +08:00
|
|
|
|
|
|
|
The erasure coding is 10.4. So ideally you have more than 14 volume servers, and you can afford
|
|
|
|
to lose 4 volume servers.
|
|
|
|
|
|
|
|
If the number of volumes are not high, the worst case is that you only have 4 volume servers,
|
|
|
|
and the shards are spread as 4,4,3,3, respectively. You can afford to lose one volume server.
|
|
|
|
|
|
|
|
If you only have less than 4 volume servers, with erasure coding, at least you can afford to
|
|
|
|
have 4 corrupted shard files.
|
|
|
|
|
2024-12-11 05:30:13 +08:00
|
|
|
Re-balancing algorithm:
|
|
|
|
` + ecBalanceAlgorithmDescription
|
2019-05-25 02:52:23 +08:00
|
|
|
}
|
|
|
|
|
2024-09-30 01:38:22 +08:00
|
|
|
func (c *commandEcEncode) HasTag(CommandTag) bool {
|
2024-09-29 11:22:57 +08:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-06-05 16:30:24 +08:00
|
|
|
func (c *commandEcEncode) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
2019-05-25 02:52:23 +08:00
|
|
|
|
|
|
|
encodeCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
|
2019-05-26 05:02:06 +08:00
|
|
|
volumeId := encodeCommand.Int("volumeId", 0, "the volume id")
|
|
|
|
collection := encodeCommand.String("collection", "", "the collection name")
|
2019-06-05 15:13:13 +08:00
|
|
|
fullPercentage := encodeCommand.Float64("fullPercent", 95, "the volume reaches the percentage of max volume size")
|
2019-06-01 14:41:17 +08:00
|
|
|
quietPeriod := encodeCommand.Duration("quietFor", time.Hour, "select volumes without no writes for this period")
|
2024-12-11 05:30:13 +08:00
|
|
|
// TODO: Add concurrency support to EcBalance and reenable this switch?
|
|
|
|
//parallelCopy := encodeCommand.Bool("parallelCopy", true, "copy shards in parallel")
|
2023-10-06 02:13:48 +08:00
|
|
|
forceChanges := encodeCommand.Bool("force", false, "force the encoding even if the cluster has less than recommended 4 nodes")
|
2024-12-11 05:30:13 +08:00
|
|
|
shardReplicaPlacement := encodeCommand.String("shardReplicaPlacement", "", "replica placement for EC shards, or master default if empty")
|
|
|
|
applyBalancing := encodeCommand.Bool("rebalance", false, "re-balance EC shards after creation")
|
|
|
|
|
2019-05-25 02:52:23 +08:00
|
|
|
if err = encodeCommand.Parse(args); err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2021-12-11 05:24:38 +08:00
|
|
|
if err = commandEnv.confirmIsLocked(args); err != nil {
|
2021-09-14 13:13:34 +08:00
|
|
|
return
|
|
|
|
}
|
2024-12-11 05:30:13 +08:00
|
|
|
rp, err := parseReplicaPlacementArg(commandEnv, *shardReplicaPlacement)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-09-14 13:13:34 +08:00
|
|
|
|
2023-10-06 02:13:48 +08:00
|
|
|
// collect topology information
|
|
|
|
topologyInfo, _, err := collectTopologyInfo(commandEnv, 0)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !*forceChanges {
|
|
|
|
var nodeCount int
|
2024-11-19 22:33:18 +08:00
|
|
|
eachDataNode(topologyInfo, func(dc DataCenterId, rack RackId, dn *master_pb.DataNodeInfo) {
|
2023-10-06 02:13:48 +08:00
|
|
|
nodeCount++
|
|
|
|
})
|
|
|
|
if nodeCount < erasure_coding.ParityShardsCount {
|
|
|
|
glog.V(0).Infof("skip erasure coding with %d nodes, less than recommended %d nodes", nodeCount, erasure_coding.ParityShardsCount)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-12-11 05:30:13 +08:00
|
|
|
var volumeIds []needle.VolumeId
|
|
|
|
if vid := needle.VolumeId(*volumeId); vid != 0 {
|
|
|
|
// volumeId is provided
|
|
|
|
volumeIds = append(volumeIds, vid)
|
|
|
|
} else {
|
|
|
|
// apply to all volumes in the collection
|
|
|
|
volumeIds, err = collectVolumeIdsForEcEncode(commandEnv, *collection, *fullPercentage, *quietPeriod)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-06-01 06:48:40 +08:00
|
|
|
}
|
|
|
|
|
2024-12-11 05:30:13 +08:00
|
|
|
var collections []string
|
|
|
|
if *collection != "" {
|
|
|
|
collections = []string{*collection}
|
|
|
|
} else {
|
2024-12-13 00:41:33 +08:00
|
|
|
collections = collectCollectionsForVolumeIds(topologyInfo, volumeIds)
|
2019-06-01 06:48:40 +08:00
|
|
|
}
|
2024-12-11 05:30:13 +08:00
|
|
|
|
|
|
|
// encode all requested volumes...
|
2019-06-01 06:48:40 +08:00
|
|
|
for _, vid := range volumeIds {
|
2024-12-11 05:30:13 +08:00
|
|
|
if err = doEcEncode(commandEnv, *collection, vid); err != nil {
|
|
|
|
return fmt.Errorf("ec encode for volume %d: %v", vid, err)
|
2019-06-01 06:48:40 +08:00
|
|
|
}
|
|
|
|
}
|
2024-12-11 05:30:13 +08:00
|
|
|
// ...then re-balance ec shards.
|
|
|
|
if err := EcBalance(commandEnv, collections, "", rp, *applyBalancing); err != nil {
|
|
|
|
return fmt.Errorf("re-balance ec shards for collection(s) %v: %v", collections, err)
|
|
|
|
}
|
2019-06-01 06:48:40 +08:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-12-11 05:30:13 +08:00
|
|
|
func doEcEncode(commandEnv *CommandEnv, collection string, vid needle.VolumeId) error {
|
2022-08-23 05:12:23 +08:00
|
|
|
if !commandEnv.isLocked() {
|
|
|
|
return fmt.Errorf("lock is lost")
|
|
|
|
}
|
|
|
|
|
2019-05-25 17:02:44 +08:00
|
|
|
// find volume location
|
2023-07-06 15:32:58 +08:00
|
|
|
locations, found := commandEnv.MasterClient.GetLocationsClone(uint32(vid))
|
2023-02-10 09:30:44 +08:00
|
|
|
if !found {
|
2019-06-01 06:48:40 +08:00
|
|
|
return fmt.Errorf("volume %d not found", vid)
|
2019-05-25 02:52:23 +08:00
|
|
|
}
|
|
|
|
|
2019-12-25 08:52:21 +08:00
|
|
|
// fmt.Printf("found ec %d shards on %v\n", vid, locations)
|
|
|
|
|
2019-06-27 14:02:22 +08:00
|
|
|
// mark the volume as readonly
|
2024-12-11 05:30:13 +08:00
|
|
|
if err := markVolumeReplicasWritable(commandEnv.option.GrpcDialOption, vid, locations, false, false); err != nil {
|
2019-11-25 15:13:40 +08:00
|
|
|
return fmt.Errorf("mark volume %d as readonly on %s: %v", vid, locations[0].Url, err)
|
2019-06-27 14:02:22 +08:00
|
|
|
}
|
|
|
|
|
2019-05-25 17:02:44 +08:00
|
|
|
// generate ec shards
|
2024-12-11 05:30:13 +08:00
|
|
|
if err := generateEcShards(commandEnv.option.GrpcDialOption, vid, collection, locations[0].ServerAddress()); err != nil {
|
2019-06-01 06:48:40 +08:00
|
|
|
return fmt.Errorf("generate ec shards for volume %d on %s: %v", vid, locations[0].Url, err)
|
2019-05-25 17:02:44 +08:00
|
|
|
}
|
|
|
|
|
2019-06-01 06:48:40 +08:00
|
|
|
return nil
|
2019-05-25 02:52:23 +08:00
|
|
|
}
|
|
|
|
|
2021-09-13 13:47:52 +08:00
|
|
|
func generateEcShards(grpcDialOption grpc.DialOption, volumeId needle.VolumeId, collection string, sourceVolumeServer pb.ServerAddress) error {
|
2019-05-25 02:52:23 +08:00
|
|
|
|
2020-06-19 00:52:35 +08:00
|
|
|
fmt.Printf("generateEcShards %s %d on %s ...\n", collection, volumeId, sourceVolumeServer)
|
|
|
|
|
2021-12-26 16:15:03 +08:00
|
|
|
err := operation.WithVolumeServerClient(false, sourceVolumeServer, grpcDialOption, func(volumeServerClient volume_server_pb.VolumeServerClient) error {
|
2020-02-26 13:50:12 +08:00
|
|
|
_, genErr := volumeServerClient.VolumeEcShardsGenerate(context.Background(), &volume_server_pb.VolumeEcShardsGenerateRequest{
|
2019-05-26 05:02:06 +08:00
|
|
|
VolumeId: uint32(volumeId),
|
|
|
|
Collection: collection,
|
2019-05-25 02:52:23 +08:00
|
|
|
})
|
|
|
|
return genErr
|
|
|
|
})
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|
2019-05-25 17:02:44 +08:00
|
|
|
|
2020-02-26 13:50:12 +08:00
|
|
|
func collectVolumeIdsForEcEncode(commandEnv *CommandEnv, selectedCollection string, fullPercentage float64, quietPeriod time.Duration) (vids []needle.VolumeId, err error) {
|
2021-02-22 16:28:42 +08:00
|
|
|
// collect topology information
|
2022-02-08 16:53:55 +08:00
|
|
|
topologyInfo, volumeSizeLimitMb, err := collectTopologyInfo(commandEnv, 0)
|
2019-06-01 06:48:40 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-03 17:26:31 +08:00
|
|
|
quietSeconds := int64(quietPeriod / time.Second)
|
2019-06-01 14:41:17 +08:00
|
|
|
nowUnixSeconds := time.Now().Unix()
|
|
|
|
|
2023-10-23 03:59:34 +08:00
|
|
|
fmt.Printf("collect volumes quiet for: %d seconds and %.1f%% full\n", quietSeconds, fullPercentage)
|
2019-06-03 17:26:31 +08:00
|
|
|
|
2019-06-01 06:48:40 +08:00
|
|
|
vidMap := make(map[uint32]bool)
|
2024-11-19 22:33:18 +08:00
|
|
|
eachDataNode(topologyInfo, func(dc DataCenterId, rack RackId, dn *master_pb.DataNodeInfo) {
|
2021-02-16 18:47:02 +08:00
|
|
|
for _, diskInfo := range dn.DiskInfos {
|
|
|
|
for _, v := range diskInfo.VolumeInfos {
|
2024-06-03 05:16:05 +08:00
|
|
|
// ignore remote volumes
|
|
|
|
if v.RemoteStorageName != "" && v.RemoteStorageKey != "" {
|
|
|
|
continue
|
|
|
|
}
|
2021-02-16 18:47:02 +08:00
|
|
|
if v.Collection == selectedCollection && v.ModifiedAtSecond+quietSeconds < nowUnixSeconds {
|
2021-02-22 16:28:42 +08:00
|
|
|
if float64(v.Size) > fullPercentage/100*float64(volumeSizeLimitMb)*1024*1024 {
|
2024-10-25 13:42:38 +08:00
|
|
|
if good, found := vidMap[v.Id]; found {
|
|
|
|
if good {
|
2024-10-25 13:44:53 +08:00
|
|
|
if diskInfo.FreeVolumeCount < 2 {
|
2024-10-29 02:28:40 +08:00
|
|
|
glog.V(0).Infof("skip %s %d on %s, no free disk", v.Collection, v.Id, dn.Id)
|
2024-10-25 13:42:38 +08:00
|
|
|
vidMap[v.Id] = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2024-10-25 13:44:53 +08:00
|
|
|
if diskInfo.FreeVolumeCount < 2 {
|
2024-10-31 23:30:35 +08:00
|
|
|
glog.V(0).Infof("skip %s %d on %s, no free disk", v.Collection, v.Id, dn.Id)
|
2024-10-25 13:42:38 +08:00
|
|
|
vidMap[v.Id] = false
|
|
|
|
} else {
|
|
|
|
vidMap[v.Id] = true
|
|
|
|
}
|
|
|
|
}
|
2021-02-16 18:47:02 +08:00
|
|
|
}
|
2019-06-01 06:48:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-23 01:56:54 +08:00
|
|
|
})
|
2019-06-01 06:48:40 +08:00
|
|
|
|
2024-10-25 13:42:38 +08:00
|
|
|
for vid, good := range vidMap {
|
|
|
|
if good {
|
|
|
|
vids = append(vids, needle.VolumeId(vid))
|
|
|
|
}
|
2019-06-01 06:48:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|