allocate_volume.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package topology
  2. import (
  3. "context"
  4. "github.com/seaweedfs/seaweedfs/weed/operation"
  5. "github.com/seaweedfs/seaweedfs/weed/pb/volume_server_pb"
  6. "github.com/seaweedfs/seaweedfs/weed/storage/needle"
  7. "google.golang.org/grpc"
  8. )
  9. type AllocateVolumeResult struct {
  10. Error string
  11. }
  12. func AllocateVolume(dn *DataNode, grpcDialOption grpc.DialOption, vid needle.VolumeId, option *VolumeGrowOption) error {
  13. return operation.WithVolumeServerClient(false, dn.ServerAddress(), grpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
  14. _, allocateErr := client.AllocateVolume(context.Background(), &volume_server_pb.AllocateVolumeRequest{
  15. VolumeId: uint32(vid),
  16. Collection: option.Collection,
  17. Replication: option.ReplicaPlacement.String(),
  18. Ttl: option.Ttl.String(),
  19. Preallocate: option.Preallocate,
  20. MemoryMapMaxSizeMb: option.MemoryMapMaxSizeMb,
  21. DiskType: string(option.DiskType),
  22. Version: option.Version,
  23. })
  24. return allocateErr
  25. })
  26. }
  27. func DeleteVolume(dn *DataNode, grpcDialOption grpc.DialOption, vid needle.VolumeId) error {
  28. return operation.WithVolumeServerClient(false, dn.ServerAddress(), grpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
  29. _, allocateErr := client.VolumeDelete(context.Background(), &volume_server_pb.VolumeDeleteRequest{
  30. VolumeId: uint32(vid),
  31. })
  32. return allocateErr
  33. })
  34. }