123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- package weed_server
- import (
- "context"
- "fmt"
- "github.com/chrislusf/raft"
- "github.com/chrislusf/seaweedfs/weed/pb/master_pb"
- "github.com/chrislusf/seaweedfs/weed/security"
- "github.com/chrislusf/seaweedfs/weed/storage"
- "github.com/chrislusf/seaweedfs/weed/storage/needle"
- "github.com/chrislusf/seaweedfs/weed/topology"
- )
- func (ms *MasterServer) LookupVolume(ctx context.Context, req *master_pb.LookupVolumeRequest) (*master_pb.LookupVolumeResponse, error) {
- if !ms.Topo.IsLeader() {
- return nil, raft.NotLeaderError
- }
- resp := &master_pb.LookupVolumeResponse{}
- volumeLocations := ms.lookupVolumeId(req.VolumeIds, req.Collection)
- for _, result := range volumeLocations {
- var locations []*master_pb.Location
- for _, loc := range result.Locations {
- locations = append(locations, &master_pb.Location{
- Url: loc.Url,
- PublicUrl: loc.PublicUrl,
- })
- }
- resp.VolumeIdLocations = append(resp.VolumeIdLocations, &master_pb.LookupVolumeResponse_VolumeIdLocation{
- VolumeId: result.VolumeId,
- Locations: locations,
- Error: result.Error,
- })
- }
- return resp, nil
- }
- func (ms *MasterServer) Assign(ctx context.Context, req *master_pb.AssignRequest) (*master_pb.AssignResponse, error) {
- if !ms.Topo.IsLeader() {
- return nil, raft.NotLeaderError
- }
- if req.Count == 0 {
- req.Count = 1
- }
- if req.Replication == "" {
- req.Replication = ms.option.DefaultReplicaPlacement
- }
- replicaPlacement, err := storage.NewReplicaPlacementFromString(req.Replication)
- if err != nil {
- return nil, err
- }
- ttl, err := needle.ReadTTL(req.Ttl)
- if err != nil {
- return nil, err
- }
- option := &topology.VolumeGrowOption{
- Collection: req.Collection,
- ReplicaPlacement: replicaPlacement,
- Ttl: ttl,
- Prealloacte: ms.preallocateSize,
- DataCenter: req.DataCenter,
- Rack: req.Rack,
- DataNode: req.DataNode,
- MemoryMapMaxSizeMb: req.MemoryMapMaxSizeMb,
- }
- if !ms.Topo.HasWritableVolume(option) {
- if ms.Topo.FreeSpace() <= 0 {
- return nil, fmt.Errorf("No free volumes left!")
- }
- ms.vgLock.Lock()
- if !ms.Topo.HasWritableVolume(option) {
- if _, err = ms.vg.AutomaticGrowByType(option, ms.grpcDialOption, ms.Topo, int(req.WritableVolumeCount)); err != nil {
- ms.vgLock.Unlock()
- return nil, fmt.Errorf("Cannot grow volume group! %v", err)
- }
- }
- ms.vgLock.Unlock()
- }
- fid, count, dn, err := ms.Topo.PickForWrite(req.Count, option)
- if err != nil {
- return nil, fmt.Errorf("%v", err)
- }
- return &master_pb.AssignResponse{
- Fid: fid,
- Url: dn.Url(),
- PublicUrl: dn.PublicUrl,
- Count: count,
- Auth: string(security.GenJwt(ms.guard.SigningKey, ms.guard.ExpiresAfterSec, fid)),
- }, nil
- }
- func (ms *MasterServer) Statistics(ctx context.Context, req *master_pb.StatisticsRequest) (*master_pb.StatisticsResponse, error) {
- if !ms.Topo.IsLeader() {
- return nil, raft.NotLeaderError
- }
- if req.Replication == "" {
- req.Replication = ms.option.DefaultReplicaPlacement
- }
- replicaPlacement, err := storage.NewReplicaPlacementFromString(req.Replication)
- if err != nil {
- return nil, err
- }
- ttl, err := needle.ReadTTL(req.Ttl)
- if err != nil {
- return nil, err
- }
- volumeLayout := ms.Topo.GetVolumeLayout(req.Collection, replicaPlacement, ttl)
- stats := volumeLayout.Stats()
- resp := &master_pb.StatisticsResponse{
- TotalSize: stats.TotalSize,
- UsedSize: stats.UsedSize,
- FileCount: stats.FileCount,
- }
- return resp, nil
- }
- func (ms *MasterServer) VolumeList(ctx context.Context, req *master_pb.VolumeListRequest) (*master_pb.VolumeListResponse, error) {
- if !ms.Topo.IsLeader() {
- return nil, raft.NotLeaderError
- }
- resp := &master_pb.VolumeListResponse{
- TopologyInfo: ms.Topo.ToTopologyInfo(),
- VolumeSizeLimitMb: uint64(ms.option.VolumeSizeLimitMB),
- }
- return resp, nil
- }
- func (ms *MasterServer) LookupEcVolume(ctx context.Context, req *master_pb.LookupEcVolumeRequest) (*master_pb.LookupEcVolumeResponse, error) {
- if !ms.Topo.IsLeader() {
- return nil, raft.NotLeaderError
- }
- resp := &master_pb.LookupEcVolumeResponse{}
- ecLocations, found := ms.Topo.LookupEcShards(needle.VolumeId(req.VolumeId))
- if !found {
- return resp, fmt.Errorf("ec volume %d not found", req.VolumeId)
- }
- resp.VolumeId = req.VolumeId
- for shardId, shardLocations := range ecLocations.Locations {
- var locations []*master_pb.Location
- for _, dn := range shardLocations {
- locations = append(locations, &master_pb.Location{
- Url: string(dn.Id()),
- PublicUrl: dn.PublicUrl,
- })
- }
- resp.ShardIdLocations = append(resp.ShardIdLocations, &master_pb.LookupEcVolumeResponse_EcShardIdLocation{
- ShardId: uint32(shardId),
- Locations: locations,
- })
- }
- return resp, nil
- }
- func (ms *MasterServer) GetMasterConfiguration(ctx context.Context, req *master_pb.GetMasterConfigurationRequest) (*master_pb.GetMasterConfigurationResponse, error) {
- resp := &master_pb.GetMasterConfigurationResponse{
- MetricsAddress: ms.option.MetricsAddress,
- MetricsIntervalSeconds: uint32(ms.option.MetricsIntervalSec),
- }
- return resp, nil
- }
|