allocate_volume.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. })
  23. return allocateErr
  24. })
  25. }
  26. func DeleteVolume(dn *DataNode, grpcDialOption grpc.DialOption, vid needle.VolumeId) error {
  27. return operation.WithVolumeServerClient(false, dn.ServerAddress(), grpcDialOption, func(client volume_server_pb.VolumeServerClient) error {
  28. _, allocateErr := client.VolumeDelete(context.Background(), &volume_server_pb.VolumeDeleteRequest{
  29. VolumeId: uint32(vid),
  30. })
  31. return allocateErr
  32. })
  33. }