2013-08-14 06:26:51 +00:00
|
|
|
package operation
|
|
|
|
|
|
|
|
import (
|
2018-11-23 08:26:15 +00:00
|
|
|
"context"
|
2015-03-09 08:10:01 +00:00
|
|
|
"fmt"
|
2021-09-13 05:47:52 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb"
|
2020-11-16 00:58:48 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
2020-02-25 06:28:45 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2018-11-20 19:35:45 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
|
2019-02-15 08:09:19 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
2013-08-14 06:26:51 +00:00
|
|
|
)
|
|
|
|
|
2016-06-26 02:50:18 +00:00
|
|
|
type VolumeAssignRequest struct {
|
2019-11-10 12:11:03 +00:00
|
|
|
Count uint64
|
|
|
|
Replication string
|
|
|
|
Collection string
|
|
|
|
Ttl string
|
2020-12-16 17:14:05 +00:00
|
|
|
DiskType string
|
2019-11-10 12:11:03 +00:00
|
|
|
DataCenter string
|
|
|
|
Rack string
|
|
|
|
DataNode string
|
|
|
|
WritableVolumeCount uint32
|
2016-06-26 02:50:18 +00:00
|
|
|
}
|
|
|
|
|
2013-08-14 06:26:51 +00:00
|
|
|
type AssignResult struct {
|
2021-09-13 05:47:52 +00:00
|
|
|
Fid string `json:"fid,omitempty"`
|
|
|
|
Url string `json:"url,omitempty"`
|
|
|
|
PublicUrl string `json:"publicUrl,omitempty"`
|
|
|
|
GrpcPort int `json:"grpcPort,omitempty"`
|
|
|
|
Count uint64 `json:"count,omitempty"`
|
|
|
|
Error string `json:"error,omitempty"`
|
|
|
|
Auth security.EncodedJwt `json:"auth,omitempty"`
|
|
|
|
Replicas []Location `json:"replicas,omitempty"`
|
2013-08-14 06:26:51 +00:00
|
|
|
}
|
|
|
|
|
2021-02-18 04:55:55 +00:00
|
|
|
func Assign(masterFn GetMasterFn, grpcDialOption grpc.DialOption, primaryRequest *VolumeAssignRequest, alternativeRequests ...*VolumeAssignRequest) (*AssignResult, error) {
|
2018-11-20 19:35:45 +00:00
|
|
|
|
2018-07-10 06:18:20 +00:00
|
|
|
var requests []*VolumeAssignRequest
|
|
|
|
requests = append(requests, primaryRequest)
|
|
|
|
requests = append(requests, alternativeRequests...)
|
2016-06-23 03:19:09 +00:00
|
|
|
|
2018-07-10 06:18:20 +00:00
|
|
|
var lastError error
|
2018-11-20 19:35:45 +00:00
|
|
|
ret := &AssignResult{}
|
|
|
|
|
2018-07-10 06:18:20 +00:00
|
|
|
for i, request := range requests {
|
|
|
|
if request == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-02-18 04:55:55 +00:00
|
|
|
lastError = WithMasterServerClient(masterFn(), grpcDialOption, func(masterClient master_pb.SeaweedClient) error {
|
2019-01-10 08:43:44 +00:00
|
|
|
|
2018-11-20 19:35:45 +00:00
|
|
|
req := &master_pb.AssignRequest{
|
2020-11-17 08:36:21 +00:00
|
|
|
Count: request.Count,
|
|
|
|
Replication: request.Replication,
|
|
|
|
Collection: request.Collection,
|
|
|
|
Ttl: request.Ttl,
|
2020-12-16 17:14:05 +00:00
|
|
|
DiskType: request.DiskType,
|
2020-11-17 08:36:21 +00:00
|
|
|
DataCenter: request.DataCenter,
|
|
|
|
Rack: request.Rack,
|
|
|
|
DataNode: request.DataNode,
|
|
|
|
WritableVolumeCount: request.WritableVolumeCount,
|
2018-11-20 19:35:45 +00:00
|
|
|
}
|
2019-02-20 09:01:01 +00:00
|
|
|
resp, grpcErr := masterClient.Assign(context.Background(), req)
|
2018-11-20 19:35:45 +00:00
|
|
|
if grpcErr != nil {
|
|
|
|
return grpcErr
|
|
|
|
}
|
|
|
|
|
2021-10-11 08:24:30 +00:00
|
|
|
if resp.Error != "" {
|
|
|
|
return fmt.Errorf("assignRequest: %v", resp.Error)
|
|
|
|
}
|
|
|
|
|
2018-11-20 19:35:45 +00:00
|
|
|
ret.Count = resp.Count
|
|
|
|
ret.Fid = resp.Fid
|
2021-09-13 05:47:52 +00:00
|
|
|
ret.Url = resp.Location.Url
|
|
|
|
ret.PublicUrl = resp.Location.PublicUrl
|
|
|
|
ret.GrpcPort = int(resp.Location.GrpcPort)
|
2018-11-20 19:35:45 +00:00
|
|
|
ret.Error = resp.Error
|
2019-02-15 08:09:19 +00:00
|
|
|
ret.Auth = security.EncodedJwt(resp.Auth)
|
2021-09-08 22:54:55 +00:00
|
|
|
for _, r := range resp.Replicas {
|
2021-09-13 05:47:52 +00:00
|
|
|
ret.Replicas = append(ret.Replicas, Location{
|
2021-09-06 06:32:25 +00:00
|
|
|
Url: r.Url,
|
|
|
|
PublicUrl: r.PublicUrl,
|
|
|
|
})
|
|
|
|
}
|
2018-11-20 19:35:45 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
if lastError != nil {
|
|
|
|
continue
|
2018-07-10 06:18:20 +00:00
|
|
|
}
|
2018-11-20 19:35:45 +00:00
|
|
|
|
2018-07-10 06:18:20 +00:00
|
|
|
if ret.Count <= 0 {
|
|
|
|
lastError = fmt.Errorf("assign failure %d: %v", i+1, ret.Error)
|
|
|
|
continue
|
|
|
|
}
|
2018-11-20 19:35:45 +00:00
|
|
|
|
2021-04-14 10:29:28 +00:00
|
|
|
break
|
2013-08-14 06:26:51 +00:00
|
|
|
}
|
2018-11-20 19:35:45 +00:00
|
|
|
|
|
|
|
return ret, lastError
|
2013-08-14 06:26:51 +00:00
|
|
|
}
|
2019-02-15 08:09:19 +00:00
|
|
|
|
2021-09-13 05:47:52 +00:00
|
|
|
func LookupJwt(master pb.ServerAddress, grpcDialOption grpc.DialOption, fileId string) (token security.EncodedJwt) {
|
2019-02-15 08:09:19 +00:00
|
|
|
|
2021-08-13 04:40:33 +00:00
|
|
|
WithMasterServerClient(master, grpcDialOption, func(masterClient master_pb.SeaweedClient) error {
|
2019-02-15 08:09:19 +00:00
|
|
|
|
2021-08-13 04:40:33 +00:00
|
|
|
resp, grpcErr := masterClient.LookupVolume(context.Background(), &master_pb.LookupVolumeRequest{
|
|
|
|
VolumeOrFileIds: []string{fileId},
|
|
|
|
})
|
|
|
|
if grpcErr != nil {
|
|
|
|
return grpcErr
|
2019-02-15 08:09:19 +00:00
|
|
|
}
|
|
|
|
|
2021-08-13 04:40:33 +00:00
|
|
|
if len(resp.VolumeIdLocations) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
token = security.EncodedJwt(resp.VolumeIdLocations[0].Auth)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
2019-02-15 08:09:19 +00:00
|
|
|
}
|
2020-11-16 00:58:48 +00:00
|
|
|
|
|
|
|
type StorageOption struct {
|
2020-11-17 09:00:02 +00:00
|
|
|
Replication string
|
2020-12-16 17:14:05 +00:00
|
|
|
DiskType string
|
2020-11-17 09:00:02 +00:00
|
|
|
Collection string
|
|
|
|
DataCenter string
|
|
|
|
Rack string
|
|
|
|
TtlSeconds int32
|
|
|
|
Fsync bool
|
|
|
|
VolumeGrowthCount uint32
|
2020-11-16 00:58:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (so *StorageOption) TtlString() string {
|
|
|
|
return needle.SecondsToTTL(so.TtlSeconds)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (so *StorageOption) ToAssignRequests(count int) (ar *VolumeAssignRequest, altRequest *VolumeAssignRequest) {
|
|
|
|
ar = &VolumeAssignRequest{
|
2020-11-17 09:00:02 +00:00
|
|
|
Count: uint64(count),
|
|
|
|
Replication: so.Replication,
|
|
|
|
Collection: so.Collection,
|
|
|
|
Ttl: so.TtlString(),
|
2020-12-16 17:14:05 +00:00
|
|
|
DiskType: so.DiskType,
|
2020-11-17 09:00:02 +00:00
|
|
|
DataCenter: so.DataCenter,
|
|
|
|
Rack: so.Rack,
|
|
|
|
WritableVolumeCount: so.VolumeGrowthCount,
|
2020-11-16 00:58:48 +00:00
|
|
|
}
|
|
|
|
if so.DataCenter != "" || so.Rack != "" {
|
|
|
|
altRequest = &VolumeAssignRequest{
|
2020-11-17 09:00:02 +00:00
|
|
|
Count: uint64(count),
|
|
|
|
Replication: so.Replication,
|
|
|
|
Collection: so.Collection,
|
|
|
|
Ttl: so.TtlString(),
|
2020-12-16 17:14:05 +00:00
|
|
|
DiskType: so.DiskType,
|
2020-11-17 09:00:02 +00:00
|
|
|
DataCenter: "",
|
|
|
|
Rack: "",
|
|
|
|
WritableVolumeCount: so.VolumeGrowthCount,
|
2020-11-16 00:58:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|