forked from TrueCloudLab/frostfs-node
[#1086] services/control: implement RestoreShard
RPC
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
2ec4a3c897
commit
18cfd8b042
8 changed files with 763 additions and 122 deletions
19
pkg/local_object_storage/engine/restore.go
Normal file
19
pkg/local_object_storage/engine/restore.go
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
package engine
|
||||||
|
|
||||||
|
import "github.com/nspcc-dev/neofs-node/pkg/local_object_storage/shard"
|
||||||
|
|
||||||
|
// RestoreShard restores objects from dump to the shard with provided identifier.
|
||||||
|
//
|
||||||
|
// Returns an error if shard is not read-only.
|
||||||
|
func (e *StorageEngine) RestoreShard(id *shard.ID, prm *shard.RestorePrm) error {
|
||||||
|
e.mtx.RLock()
|
||||||
|
defer e.mtx.RUnlock()
|
||||||
|
|
||||||
|
sh, ok := e.shards[id.String()]
|
||||||
|
if !ok {
|
||||||
|
return errShardNotFound
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err := sh.Restore(prm)
|
||||||
|
return err
|
||||||
|
}
|
|
@ -148,3 +148,21 @@ func (w *dumpShardResponseWrapper) FromGRPCMessage(m grpc.Message) error {
|
||||||
w.DumpShardResponse = r
|
w.DumpShardResponse = r
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type restoreShardResponseWrapper struct {
|
||||||
|
*RestoreShardResponse
|
||||||
|
}
|
||||||
|
|
||||||
|
func (w *restoreShardResponseWrapper) ToGRPCMessage() grpc.Message {
|
||||||
|
return w.RestoreShardResponse
|
||||||
|
}
|
||||||
|
|
||||||
|
func (w *restoreShardResponseWrapper) FromGRPCMessage(m grpc.Message) error {
|
||||||
|
r, ok := m.(*RestoreShardResponse)
|
||||||
|
if !ok {
|
||||||
|
return message.NewUnexpectedMessageType(m, (*RestoreShardResponse)(nil))
|
||||||
|
}
|
||||||
|
|
||||||
|
w.RestoreShardResponse = r
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@ const (
|
||||||
rpcListShards = "ListShards"
|
rpcListShards = "ListShards"
|
||||||
rpcSetShardMode = "SetShardMode"
|
rpcSetShardMode = "SetShardMode"
|
||||||
rpcDumpShard = "DumpShard"
|
rpcDumpShard = "DumpShard"
|
||||||
|
rpcRestoreShard = "RestoreShard"
|
||||||
)
|
)
|
||||||
|
|
||||||
// HealthCheck executes ControlService.HealthCheck RPC.
|
// HealthCheck executes ControlService.HealthCheck RPC.
|
||||||
|
@ -158,3 +159,16 @@ func DumpShard(cli *client.Client, req *DumpShardRequest, opts ...client.CallOpt
|
||||||
|
|
||||||
return wResp.DumpShardResponse, nil
|
return wResp.DumpShardResponse, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// RestoreShard executes ControlService.DumpShard RPC.
|
||||||
|
func RestoreShard(cli *client.Client, req *RestoreShardRequest, opts ...client.CallOption) (*RestoreShardResponse, error) {
|
||||||
|
wResp := &restoreShardResponseWrapper{new(RestoreShardResponse)}
|
||||||
|
wReq := &requestWrapper{m: req}
|
||||||
|
|
||||||
|
err := client.SendUnary(cli, common.CallMethodInfoUnary(serviceName, rpcRestoreShard), wReq, wResp, opts...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return wResp.RestoreShardResponse, nil
|
||||||
|
}
|
||||||
|
|
37
pkg/services/control/server/restore.go
Normal file
37
pkg/services/control/server/restore.go
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
package control
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/shard"
|
||||||
|
"github.com/nspcc-dev/neofs-node/pkg/services/control"
|
||||||
|
"google.golang.org/grpc/codes"
|
||||||
|
"google.golang.org/grpc/status"
|
||||||
|
)
|
||||||
|
|
||||||
|
func (s *Server) RestoreShard(_ context.Context, req *control.RestoreShardRequest) (*control.RestoreShardResponse, error) {
|
||||||
|
err := s.isValidRequest(req)
|
||||||
|
if err != nil {
|
||||||
|
return nil, status.Error(codes.PermissionDenied, err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
shardID := shard.NewIDFromBytes(req.GetBody().GetShard_ID())
|
||||||
|
|
||||||
|
prm := new(shard.RestorePrm)
|
||||||
|
prm.WithPath(req.GetBody().GetFilepath())
|
||||||
|
prm.WithIgnoreErrors(req.GetBody().GetIgnoreErrors())
|
||||||
|
|
||||||
|
err = s.s.RestoreShard(shardID, prm)
|
||||||
|
if err != nil {
|
||||||
|
return nil, status.Error(codes.Internal, err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
resp := new(control.RestoreShardResponse)
|
||||||
|
resp.SetBody(new(control.RestoreShardResponse_Body))
|
||||||
|
|
||||||
|
err = SignMessage(s.key, resp)
|
||||||
|
if err != nil {
|
||||||
|
return nil, status.Error(codes.Internal, err.Error())
|
||||||
|
}
|
||||||
|
return resp, nil
|
||||||
|
}
|
|
@ -1079,3 +1079,172 @@ func (x *DumpShardResponse) ReadSignedData(buf []byte) ([]byte, error) {
|
||||||
func (x *DumpShardResponse) SignedDataSize() int {
|
func (x *DumpShardResponse) SignedDataSize() int {
|
||||||
return x.GetBody().StableSize()
|
return x.GetBody().StableSize()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetShardID sets shard ID for the restore shard request.
|
||||||
|
func (x *RestoreShardRequest_Body) SetShardID(id []byte) {
|
||||||
|
x.Shard_ID = id
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetFilepath sets filepath for the restore shard request.
|
||||||
|
func (x *RestoreShardRequest_Body) SetFilepath(p string) {
|
||||||
|
x.Filepath = p
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetIgnoreErrors sets ignore errors flag for the restore shard request.
|
||||||
|
func (x *RestoreShardRequest_Body) SetIgnoreErrors(ignore bool) {
|
||||||
|
x.IgnoreErrors = ignore
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
_ = iota
|
||||||
|
restoreShardReqBodyShardIDFNum
|
||||||
|
restoreShardReqBodyFilepathFNum
|
||||||
|
restoreShardReqBodyIgnoreErrorsFNum
|
||||||
|
)
|
||||||
|
|
||||||
|
// StableMarshal reads binary representation of request body binary format.
|
||||||
|
//
|
||||||
|
// If buffer length is less than StableSize(), new buffer is allocated.
|
||||||
|
//
|
||||||
|
// Returns any error encountered which did not allow writing the data completely.
|
||||||
|
// Otherwise, returns the buffer in which the data is written.
|
||||||
|
//
|
||||||
|
// Structures with the same field values have the same binary format.
|
||||||
|
func (x *RestoreShardRequest_Body) StableMarshal(buf []byte) ([]byte, error) {
|
||||||
|
if x == nil {
|
||||||
|
return []byte{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
if sz := x.StableSize(); len(buf) < sz {
|
||||||
|
buf = make([]byte, sz)
|
||||||
|
}
|
||||||
|
|
||||||
|
var (
|
||||||
|
offset, n int
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
|
||||||
|
n, err = proto.BytesMarshal(restoreShardReqBodyShardIDFNum, buf, x.Shard_ID)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
offset += n
|
||||||
|
|
||||||
|
n, err = proto.StringMarshal(restoreShardReqBodyFilepathFNum, buf[offset:], x.Filepath)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
offset += n
|
||||||
|
|
||||||
|
_, err = proto.BoolMarshal(restoreShardReqBodyIgnoreErrorsFNum, buf[offset:], x.IgnoreErrors)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return buf, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// StableSize returns binary size of the request body in protobuf binary format.
|
||||||
|
//
|
||||||
|
// Structures with the same field values have the same binary size.
|
||||||
|
func (x *RestoreShardRequest_Body) StableSize() int {
|
||||||
|
if x == nil {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
size := 0
|
||||||
|
|
||||||
|
size += proto.BytesSize(restoreShardReqBodyShardIDFNum, x.Shard_ID)
|
||||||
|
size += proto.StringSize(restoreShardReqBodyFilepathFNum, x.Filepath)
|
||||||
|
size += proto.BoolSize(restoreShardReqBodyIgnoreErrorsFNum, x.IgnoreErrors)
|
||||||
|
|
||||||
|
return size
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetBody sets request body.
|
||||||
|
func (x *RestoreShardRequest) SetBody(v *RestoreShardRequest_Body) {
|
||||||
|
if x != nil {
|
||||||
|
x.Body = v
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetSignature sets body signature of the request.
|
||||||
|
func (x *RestoreShardRequest) SetSignature(v *Signature) {
|
||||||
|
if x != nil {
|
||||||
|
x.Signature = v
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ReadSignedData reads signed data from request to buf.
|
||||||
|
//
|
||||||
|
// If buffer length is less than x.SignedDataSize(), new buffer is allocated.
|
||||||
|
//
|
||||||
|
// Returns any error encountered which did not allow writing the data completely.
|
||||||
|
// Otherwise, returns the buffer in which the data is written.
|
||||||
|
//
|
||||||
|
// Structures with the same field values have the same signed data.
|
||||||
|
func (x *RestoreShardRequest) ReadSignedData(buf []byte) ([]byte, error) {
|
||||||
|
return x.GetBody().StableMarshal(buf)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SignedDataSize returns size of the request signed data in bytes.
|
||||||
|
//
|
||||||
|
// Structures with the same field values have the same signed data size.
|
||||||
|
func (x *RestoreShardRequest) SignedDataSize() int {
|
||||||
|
return x.GetBody().StableSize()
|
||||||
|
}
|
||||||
|
|
||||||
|
// StableMarshal reads binary representation of the response body in protobuf binary format.
|
||||||
|
//
|
||||||
|
// If buffer length is less than x.StableSize(), new buffer is allocated.
|
||||||
|
//
|
||||||
|
// Returns any error encountered which did not allow writing the data completely.
|
||||||
|
// Otherwise, returns the buffer in which the data is written.
|
||||||
|
//
|
||||||
|
// Structures with the same field values have the same binary format.
|
||||||
|
func (x *RestoreShardResponse_Body) StableMarshal(buf []byte) ([]byte, error) {
|
||||||
|
return buf, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// StableSize returns binary size of the response body
|
||||||
|
// in protobuf binary format.
|
||||||
|
//
|
||||||
|
// Structures with the same field values have the same binary size.
|
||||||
|
func (x *RestoreShardResponse_Body) StableSize() int {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetBody sets response body.
|
||||||
|
func (x *RestoreShardResponse) SetBody(v *RestoreShardResponse_Body) {
|
||||||
|
if x != nil {
|
||||||
|
x.Body = v
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetSignature sets response body signature.
|
||||||
|
func (x *RestoreShardResponse) SetSignature(v *Signature) {
|
||||||
|
if x != nil {
|
||||||
|
x.Signature = v
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ReadSignedData reads signed data from response to buf.
|
||||||
|
//
|
||||||
|
// If buffer length is less than SignedDataSize(), new buffer is allocated.
|
||||||
|
//
|
||||||
|
// Returns any error encountered which did not allow writing the data completely.
|
||||||
|
// Otherwise, returns the buffer in which the data is written.
|
||||||
|
//
|
||||||
|
// Structures with the same field values have the same signed data.
|
||||||
|
func (x *RestoreShardResponse) ReadSignedData(buf []byte) ([]byte, error) {
|
||||||
|
return x.GetBody().StableMarshal(buf)
|
||||||
|
}
|
||||||
|
|
||||||
|
// SignedDataSize returns binary size of the signed data.
|
||||||
|
//
|
||||||
|
// Structures with the same field values have the same signed data size.
|
||||||
|
func (x *RestoreShardResponse) SignedDataSize() int {
|
||||||
|
return x.GetBody().StableSize()
|
||||||
|
}
|
||||||
|
|
552
pkg/services/control/service.pb.go
generated
552
pkg/services/control/service.pb.go
generated
|
@ -832,6 +832,122 @@ func (x *DumpShardResponse) GetSignature() *Signature {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// RestoreShard request.
|
||||||
|
type RestoreShardRequest struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
// Body of restore shard request message.
|
||||||
|
Body *RestoreShardRequest_Body `protobuf:"bytes,1,opt,name=body,proto3" json:"body,omitempty"`
|
||||||
|
// Body signature.
|
||||||
|
Signature *Signature `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardRequest) Reset() {
|
||||||
|
*x = RestoreShardRequest{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[14]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardRequest) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*RestoreShardRequest) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *RestoreShardRequest) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[14]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use RestoreShardRequest.ProtoReflect.Descriptor instead.
|
||||||
|
func (*RestoreShardRequest) Descriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{14}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardRequest) GetBody() *RestoreShardRequest_Body {
|
||||||
|
if x != nil {
|
||||||
|
return x.Body
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardRequest) GetSignature() *Signature {
|
||||||
|
if x != nil {
|
||||||
|
return x.Signature
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// RestoreShard response.
|
||||||
|
type RestoreShardResponse struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
// Body of restore shard response message.
|
||||||
|
Body *RestoreShardResponse_Body `protobuf:"bytes,1,opt,name=body,proto3" json:"body,omitempty"`
|
||||||
|
// Body signature.
|
||||||
|
Signature *Signature `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardResponse) Reset() {
|
||||||
|
*x = RestoreShardResponse{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[15]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardResponse) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*RestoreShardResponse) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *RestoreShardResponse) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[15]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use RestoreShardResponse.ProtoReflect.Descriptor instead.
|
||||||
|
func (*RestoreShardResponse) Descriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{15}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardResponse) GetBody() *RestoreShardResponse_Body {
|
||||||
|
if x != nil {
|
||||||
|
return x.Body
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardResponse) GetSignature() *Signature {
|
||||||
|
if x != nil {
|
||||||
|
return x.Signature
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// Health check request body.
|
// Health check request body.
|
||||||
type HealthCheckRequest_Body struct {
|
type HealthCheckRequest_Body struct {
|
||||||
state protoimpl.MessageState
|
state protoimpl.MessageState
|
||||||
|
@ -842,7 +958,7 @@ type HealthCheckRequest_Body struct {
|
||||||
func (x *HealthCheckRequest_Body) Reset() {
|
func (x *HealthCheckRequest_Body) Reset() {
|
||||||
*x = HealthCheckRequest_Body{}
|
*x = HealthCheckRequest_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[14]
|
mi := &file_pkg_services_control_service_proto_msgTypes[16]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -855,7 +971,7 @@ func (x *HealthCheckRequest_Body) String() string {
|
||||||
func (*HealthCheckRequest_Body) ProtoMessage() {}
|
func (*HealthCheckRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *HealthCheckRequest_Body) ProtoReflect() protoreflect.Message {
|
func (x *HealthCheckRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[14]
|
mi := &file_pkg_services_control_service_proto_msgTypes[16]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -886,7 +1002,7 @@ type HealthCheckResponse_Body struct {
|
||||||
func (x *HealthCheckResponse_Body) Reset() {
|
func (x *HealthCheckResponse_Body) Reset() {
|
||||||
*x = HealthCheckResponse_Body{}
|
*x = HealthCheckResponse_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[15]
|
mi := &file_pkg_services_control_service_proto_msgTypes[17]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -899,7 +1015,7 @@ func (x *HealthCheckResponse_Body) String() string {
|
||||||
func (*HealthCheckResponse_Body) ProtoMessage() {}
|
func (*HealthCheckResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *HealthCheckResponse_Body) ProtoReflect() protoreflect.Message {
|
func (x *HealthCheckResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[15]
|
mi := &file_pkg_services_control_service_proto_msgTypes[17]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -939,7 +1055,7 @@ type NetmapSnapshotRequest_Body struct {
|
||||||
func (x *NetmapSnapshotRequest_Body) Reset() {
|
func (x *NetmapSnapshotRequest_Body) Reset() {
|
||||||
*x = NetmapSnapshotRequest_Body{}
|
*x = NetmapSnapshotRequest_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[16]
|
mi := &file_pkg_services_control_service_proto_msgTypes[18]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -952,7 +1068,7 @@ func (x *NetmapSnapshotRequest_Body) String() string {
|
||||||
func (*NetmapSnapshotRequest_Body) ProtoMessage() {}
|
func (*NetmapSnapshotRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *NetmapSnapshotRequest_Body) ProtoReflect() protoreflect.Message {
|
func (x *NetmapSnapshotRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[16]
|
mi := &file_pkg_services_control_service_proto_msgTypes[18]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -981,7 +1097,7 @@ type NetmapSnapshotResponse_Body struct {
|
||||||
func (x *NetmapSnapshotResponse_Body) Reset() {
|
func (x *NetmapSnapshotResponse_Body) Reset() {
|
||||||
*x = NetmapSnapshotResponse_Body{}
|
*x = NetmapSnapshotResponse_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[17]
|
mi := &file_pkg_services_control_service_proto_msgTypes[19]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -994,7 +1110,7 @@ func (x *NetmapSnapshotResponse_Body) String() string {
|
||||||
func (*NetmapSnapshotResponse_Body) ProtoMessage() {}
|
func (*NetmapSnapshotResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *NetmapSnapshotResponse_Body) ProtoReflect() protoreflect.Message {
|
func (x *NetmapSnapshotResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[17]
|
mi := &file_pkg_services_control_service_proto_msgTypes[19]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -1030,7 +1146,7 @@ type SetNetmapStatusRequest_Body struct {
|
||||||
func (x *SetNetmapStatusRequest_Body) Reset() {
|
func (x *SetNetmapStatusRequest_Body) Reset() {
|
||||||
*x = SetNetmapStatusRequest_Body{}
|
*x = SetNetmapStatusRequest_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[18]
|
mi := &file_pkg_services_control_service_proto_msgTypes[20]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -1043,7 +1159,7 @@ func (x *SetNetmapStatusRequest_Body) String() string {
|
||||||
func (*SetNetmapStatusRequest_Body) ProtoMessage() {}
|
func (*SetNetmapStatusRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *SetNetmapStatusRequest_Body) ProtoReflect() protoreflect.Message {
|
func (x *SetNetmapStatusRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[18]
|
mi := &file_pkg_services_control_service_proto_msgTypes[20]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -1076,7 +1192,7 @@ type SetNetmapStatusResponse_Body struct {
|
||||||
func (x *SetNetmapStatusResponse_Body) Reset() {
|
func (x *SetNetmapStatusResponse_Body) Reset() {
|
||||||
*x = SetNetmapStatusResponse_Body{}
|
*x = SetNetmapStatusResponse_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[19]
|
mi := &file_pkg_services_control_service_proto_msgTypes[21]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -1089,7 +1205,7 @@ func (x *SetNetmapStatusResponse_Body) String() string {
|
||||||
func (*SetNetmapStatusResponse_Body) ProtoMessage() {}
|
func (*SetNetmapStatusResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *SetNetmapStatusResponse_Body) ProtoReflect() protoreflect.Message {
|
func (x *SetNetmapStatusResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[19]
|
mi := &file_pkg_services_control_service_proto_msgTypes[21]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -1119,7 +1235,7 @@ type DropObjectsRequest_Body struct {
|
||||||
func (x *DropObjectsRequest_Body) Reset() {
|
func (x *DropObjectsRequest_Body) Reset() {
|
||||||
*x = DropObjectsRequest_Body{}
|
*x = DropObjectsRequest_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[20]
|
mi := &file_pkg_services_control_service_proto_msgTypes[22]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -1132,7 +1248,7 @@ func (x *DropObjectsRequest_Body) String() string {
|
||||||
func (*DropObjectsRequest_Body) ProtoMessage() {}
|
func (*DropObjectsRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *DropObjectsRequest_Body) ProtoReflect() protoreflect.Message {
|
func (x *DropObjectsRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[20]
|
mi := &file_pkg_services_control_service_proto_msgTypes[22]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -1165,7 +1281,7 @@ type DropObjectsResponse_Body struct {
|
||||||
func (x *DropObjectsResponse_Body) Reset() {
|
func (x *DropObjectsResponse_Body) Reset() {
|
||||||
*x = DropObjectsResponse_Body{}
|
*x = DropObjectsResponse_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[21]
|
mi := &file_pkg_services_control_service_proto_msgTypes[23]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -1178,7 +1294,7 @@ func (x *DropObjectsResponse_Body) String() string {
|
||||||
func (*DropObjectsResponse_Body) ProtoMessage() {}
|
func (*DropObjectsResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *DropObjectsResponse_Body) ProtoReflect() protoreflect.Message {
|
func (x *DropObjectsResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[21]
|
mi := &file_pkg_services_control_service_proto_msgTypes[23]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -1204,7 +1320,7 @@ type ListShardsRequest_Body struct {
|
||||||
func (x *ListShardsRequest_Body) Reset() {
|
func (x *ListShardsRequest_Body) Reset() {
|
||||||
*x = ListShardsRequest_Body{}
|
*x = ListShardsRequest_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[22]
|
mi := &file_pkg_services_control_service_proto_msgTypes[24]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -1217,7 +1333,7 @@ func (x *ListShardsRequest_Body) String() string {
|
||||||
func (*ListShardsRequest_Body) ProtoMessage() {}
|
func (*ListShardsRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *ListShardsRequest_Body) ProtoReflect() protoreflect.Message {
|
func (x *ListShardsRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[22]
|
mi := &file_pkg_services_control_service_proto_msgTypes[24]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -1246,7 +1362,7 @@ type ListShardsResponse_Body struct {
|
||||||
func (x *ListShardsResponse_Body) Reset() {
|
func (x *ListShardsResponse_Body) Reset() {
|
||||||
*x = ListShardsResponse_Body{}
|
*x = ListShardsResponse_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[23]
|
mi := &file_pkg_services_control_service_proto_msgTypes[25]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -1259,7 +1375,7 @@ func (x *ListShardsResponse_Body) String() string {
|
||||||
func (*ListShardsResponse_Body) ProtoMessage() {}
|
func (*ListShardsResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *ListShardsResponse_Body) ProtoReflect() protoreflect.Message {
|
func (x *ListShardsResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[23]
|
mi := &file_pkg_services_control_service_proto_msgTypes[25]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -1297,7 +1413,7 @@ type SetShardModeRequest_Body struct {
|
||||||
func (x *SetShardModeRequest_Body) Reset() {
|
func (x *SetShardModeRequest_Body) Reset() {
|
||||||
*x = SetShardModeRequest_Body{}
|
*x = SetShardModeRequest_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[24]
|
mi := &file_pkg_services_control_service_proto_msgTypes[26]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -1310,7 +1426,7 @@ func (x *SetShardModeRequest_Body) String() string {
|
||||||
func (*SetShardModeRequest_Body) ProtoMessage() {}
|
func (*SetShardModeRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *SetShardModeRequest_Body) ProtoReflect() protoreflect.Message {
|
func (x *SetShardModeRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[24]
|
mi := &file_pkg_services_control_service_proto_msgTypes[26]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -1350,7 +1466,7 @@ type SetShardModeResponse_Body struct {
|
||||||
func (x *SetShardModeResponse_Body) Reset() {
|
func (x *SetShardModeResponse_Body) Reset() {
|
||||||
*x = SetShardModeResponse_Body{}
|
*x = SetShardModeResponse_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[25]
|
mi := &file_pkg_services_control_service_proto_msgTypes[27]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -1363,7 +1479,7 @@ func (x *SetShardModeResponse_Body) String() string {
|
||||||
func (*SetShardModeResponse_Body) ProtoMessage() {}
|
func (*SetShardModeResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *SetShardModeResponse_Body) ProtoReflect() protoreflect.Message {
|
func (x *SetShardModeResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[25]
|
mi := &file_pkg_services_control_service_proto_msgTypes[27]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -1396,7 +1512,7 @@ type DumpShardRequest_Body struct {
|
||||||
func (x *DumpShardRequest_Body) Reset() {
|
func (x *DumpShardRequest_Body) Reset() {
|
||||||
*x = DumpShardRequest_Body{}
|
*x = DumpShardRequest_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[26]
|
mi := &file_pkg_services_control_service_proto_msgTypes[28]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -1409,7 +1525,7 @@ func (x *DumpShardRequest_Body) String() string {
|
||||||
func (*DumpShardRequest_Body) ProtoMessage() {}
|
func (*DumpShardRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *DumpShardRequest_Body) ProtoReflect() protoreflect.Message {
|
func (x *DumpShardRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[26]
|
mi := &file_pkg_services_control_service_proto_msgTypes[28]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -1456,7 +1572,7 @@ type DumpShardResponse_Body struct {
|
||||||
func (x *DumpShardResponse_Body) Reset() {
|
func (x *DumpShardResponse_Body) Reset() {
|
||||||
*x = DumpShardResponse_Body{}
|
*x = DumpShardResponse_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[27]
|
mi := &file_pkg_services_control_service_proto_msgTypes[29]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -1469,7 +1585,7 @@ func (x *DumpShardResponse_Body) String() string {
|
||||||
func (*DumpShardResponse_Body) ProtoMessage() {}
|
func (*DumpShardResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *DumpShardResponse_Body) ProtoReflect() protoreflect.Message {
|
func (x *DumpShardResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[27]
|
mi := &file_pkg_services_control_service_proto_msgTypes[29]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -1485,6 +1601,112 @@ func (*DumpShardResponse_Body) Descriptor() ([]byte, []int) {
|
||||||
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{13, 0}
|
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{13, 0}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Request body structure.
|
||||||
|
type RestoreShardRequest_Body struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
// ID of the shard.
|
||||||
|
Shard_ID []byte `protobuf:"bytes,1,opt,name=shard_ID,json=shardID,proto3" json:"shard_ID,omitempty"`
|
||||||
|
// Path to the output.
|
||||||
|
Filepath string `protobuf:"bytes,2,opt,name=filepath,proto3" json:"filepath,omitempty"`
|
||||||
|
// Flag indicating whether object read errors should be ignored.
|
||||||
|
IgnoreErrors bool `protobuf:"varint,3,opt,name=ignore_errors,json=ignoreErrors,proto3" json:"ignore_errors,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardRequest_Body) Reset() {
|
||||||
|
*x = RestoreShardRequest_Body{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[30]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardRequest_Body) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*RestoreShardRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *RestoreShardRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[30]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use RestoreShardRequest_Body.ProtoReflect.Descriptor instead.
|
||||||
|
func (*RestoreShardRequest_Body) Descriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{14, 0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardRequest_Body) GetShard_ID() []byte {
|
||||||
|
if x != nil {
|
||||||
|
return x.Shard_ID
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardRequest_Body) GetFilepath() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Filepath
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardRequest_Body) GetIgnoreErrors() bool {
|
||||||
|
if x != nil {
|
||||||
|
return x.IgnoreErrors
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// Response body structure.
|
||||||
|
type RestoreShardResponse_Body struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardResponse_Body) Reset() {
|
||||||
|
*x = RestoreShardResponse_Body{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[31]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RestoreShardResponse_Body) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*RestoreShardResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *RestoreShardResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[31]
|
||||||
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use RestoreShardResponse_Body.ProtoReflect.Descriptor instead.
|
||||||
|
func (*RestoreShardResponse_Body) Descriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{15, 0}
|
||||||
|
}
|
||||||
|
|
||||||
var File_pkg_services_control_service_proto protoreflect.FileDescriptor
|
var File_pkg_services_control_service_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
var file_pkg_services_control_service_proto_rawDesc = []byte{
|
var file_pkg_services_control_service_proto_rawDesc = []byte{
|
||||||
|
@ -1641,7 +1863,30 @@ var file_pkg_services_control_service_proto_rawDesc = []byte{
|
||||||
0x74, 0x75, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x63, 0x6f, 0x6e,
|
0x74, 0x75, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x63, 0x6f, 0x6e,
|
||||||
0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x09,
|
0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x09,
|
||||||
0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x1a, 0x06, 0x0a, 0x04, 0x42, 0x6f, 0x64,
|
0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x1a, 0x06, 0x0a, 0x04, 0x42, 0x6f, 0x64,
|
||||||
0x79, 0x32, 0xa5, 0x04, 0x0a, 0x0e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x72,
|
0x79, 0x22, 0xe2, 0x01, 0x0a, 0x13, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x53, 0x68, 0x61,
|
||||||
|
0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x35, 0x0a, 0x04, 0x62, 0x6f, 0x64,
|
||||||
|
0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f,
|
||||||
|
0x6c, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
|
||||||
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x04, 0x62, 0x6f, 0x64, 0x79,
|
||||||
|
0x12, 0x30, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x02, 0x20,
|
||||||
|
0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x69,
|
||||||
|
0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
|
||||||
|
0x72, 0x65, 0x1a, 0x62, 0x0a, 0x04, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x68,
|
||||||
|
0x61, 0x72, 0x64, 0x5f, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x73, 0x68,
|
||||||
|
0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x70, 0x61, 0x74,
|
||||||
|
0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x70, 0x61, 0x74,
|
||||||
|
0x68, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f,
|
||||||
|
0x72, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65,
|
||||||
|
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x88, 0x01, 0x0a, 0x14, 0x52, 0x65, 0x73, 0x74, 0x6f,
|
||||||
|
0x72, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
||||||
|
0x36, 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e,
|
||||||
|
0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x53,
|
||||||
|
0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x42, 0x6f, 0x64,
|
||||||
|
0x79, 0x52, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x12, 0x30, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61,
|
||||||
|
0x74, 0x75, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x63, 0x6f, 0x6e,
|
||||||
|
0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x09,
|
||||||
|
0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x1a, 0x06, 0x0a, 0x04, 0x42, 0x6f, 0x64,
|
||||||
|
0x79, 0x32, 0xf2, 0x04, 0x0a, 0x0e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x72,
|
||||||
0x76, 0x69, 0x63, 0x65, 0x12, 0x48, 0x0a, 0x0b, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68,
|
0x76, 0x69, 0x63, 0x65, 0x12, 0x48, 0x0a, 0x0b, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68,
|
||||||
0x65, 0x63, 0x6b, 0x12, 0x1b, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x48, 0x65,
|
0x65, 0x63, 0x6b, 0x12, 0x1b, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x48, 0x65,
|
||||||
0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
||||||
|
@ -1675,11 +1920,16 @@ var file_pkg_services_control_service_proto_rawDesc = []byte{
|
||||||
0x72, 0x64, 0x12, 0x19, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x44, 0x75, 0x6d,
|
0x72, 0x64, 0x12, 0x19, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x44, 0x75, 0x6d,
|
||||||
0x70, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e,
|
0x70, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e,
|
||||||
0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x44, 0x75, 0x6d, 0x70, 0x53, 0x68, 0x61, 0x72,
|
0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x44, 0x75, 0x6d, 0x70, 0x53, 0x68, 0x61, 0x72,
|
||||||
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x36, 0x5a, 0x34, 0x67, 0x69, 0x74,
|
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4b, 0x0a, 0x0c, 0x52, 0x65, 0x73,
|
||||||
0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6e, 0x73, 0x70, 0x63, 0x63, 0x2d, 0x64, 0x65,
|
0x74, 0x6f, 0x72, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x12, 0x1c, 0x2e, 0x63, 0x6f, 0x6e, 0x74,
|
||||||
0x76, 0x2f, 0x6e, 0x65, 0x6f, 0x66, 0x73, 0x2d, 0x6e, 0x6f, 0x64, 0x65, 0x2f, 0x70, 0x6b, 0x67,
|
0x72, 0x6f, 0x6c, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64,
|
||||||
0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f,
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f,
|
||||||
0x6c, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
0x6c, 0x2e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x65,
|
||||||
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x36, 0x5a, 0x34, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62,
|
||||||
|
0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6e, 0x73, 0x70, 0x63, 0x63, 0x2d, 0x64, 0x65, 0x76, 0x2f, 0x6e,
|
||||||
|
0x65, 0x6f, 0x66, 0x73, 0x2d, 0x6e, 0x6f, 0x64, 0x65, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x73, 0x65,
|
||||||
|
0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x62, 0x06,
|
||||||
|
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -1694,7 +1944,7 @@ func file_pkg_services_control_service_proto_rawDescGZIP() []byte {
|
||||||
return file_pkg_services_control_service_proto_rawDescData
|
return file_pkg_services_control_service_proto_rawDescData
|
||||||
}
|
}
|
||||||
|
|
||||||
var file_pkg_services_control_service_proto_msgTypes = make([]protoimpl.MessageInfo, 28)
|
var file_pkg_services_control_service_proto_msgTypes = make([]protoimpl.MessageInfo, 32)
|
||||||
var file_pkg_services_control_service_proto_goTypes = []interface{}{
|
var file_pkg_services_control_service_proto_goTypes = []interface{}{
|
||||||
(*HealthCheckRequest)(nil), // 0: control.HealthCheckRequest
|
(*HealthCheckRequest)(nil), // 0: control.HealthCheckRequest
|
||||||
(*HealthCheckResponse)(nil), // 1: control.HealthCheckResponse
|
(*HealthCheckResponse)(nil), // 1: control.HealthCheckResponse
|
||||||
|
@ -1710,81 +1960,91 @@ var file_pkg_services_control_service_proto_goTypes = []interface{}{
|
||||||
(*SetShardModeResponse)(nil), // 11: control.SetShardModeResponse
|
(*SetShardModeResponse)(nil), // 11: control.SetShardModeResponse
|
||||||
(*DumpShardRequest)(nil), // 12: control.DumpShardRequest
|
(*DumpShardRequest)(nil), // 12: control.DumpShardRequest
|
||||||
(*DumpShardResponse)(nil), // 13: control.DumpShardResponse
|
(*DumpShardResponse)(nil), // 13: control.DumpShardResponse
|
||||||
(*HealthCheckRequest_Body)(nil), // 14: control.HealthCheckRequest.Body
|
(*RestoreShardRequest)(nil), // 14: control.RestoreShardRequest
|
||||||
(*HealthCheckResponse_Body)(nil), // 15: control.HealthCheckResponse.Body
|
(*RestoreShardResponse)(nil), // 15: control.RestoreShardResponse
|
||||||
(*NetmapSnapshotRequest_Body)(nil), // 16: control.NetmapSnapshotRequest.Body
|
(*HealthCheckRequest_Body)(nil), // 16: control.HealthCheckRequest.Body
|
||||||
(*NetmapSnapshotResponse_Body)(nil), // 17: control.NetmapSnapshotResponse.Body
|
(*HealthCheckResponse_Body)(nil), // 17: control.HealthCheckResponse.Body
|
||||||
(*SetNetmapStatusRequest_Body)(nil), // 18: control.SetNetmapStatusRequest.Body
|
(*NetmapSnapshotRequest_Body)(nil), // 18: control.NetmapSnapshotRequest.Body
|
||||||
(*SetNetmapStatusResponse_Body)(nil), // 19: control.SetNetmapStatusResponse.Body
|
(*NetmapSnapshotResponse_Body)(nil), // 19: control.NetmapSnapshotResponse.Body
|
||||||
(*DropObjectsRequest_Body)(nil), // 20: control.DropObjectsRequest.Body
|
(*SetNetmapStatusRequest_Body)(nil), // 20: control.SetNetmapStatusRequest.Body
|
||||||
(*DropObjectsResponse_Body)(nil), // 21: control.DropObjectsResponse.Body
|
(*SetNetmapStatusResponse_Body)(nil), // 21: control.SetNetmapStatusResponse.Body
|
||||||
(*ListShardsRequest_Body)(nil), // 22: control.ListShardsRequest.Body
|
(*DropObjectsRequest_Body)(nil), // 22: control.DropObjectsRequest.Body
|
||||||
(*ListShardsResponse_Body)(nil), // 23: control.ListShardsResponse.Body
|
(*DropObjectsResponse_Body)(nil), // 23: control.DropObjectsResponse.Body
|
||||||
(*SetShardModeRequest_Body)(nil), // 24: control.SetShardModeRequest.Body
|
(*ListShardsRequest_Body)(nil), // 24: control.ListShardsRequest.Body
|
||||||
(*SetShardModeResponse_Body)(nil), // 25: control.SetShardModeResponse.Body
|
(*ListShardsResponse_Body)(nil), // 25: control.ListShardsResponse.Body
|
||||||
(*DumpShardRequest_Body)(nil), // 26: control.DumpShardRequest.Body
|
(*SetShardModeRequest_Body)(nil), // 26: control.SetShardModeRequest.Body
|
||||||
(*DumpShardResponse_Body)(nil), // 27: control.DumpShardResponse.Body
|
(*SetShardModeResponse_Body)(nil), // 27: control.SetShardModeResponse.Body
|
||||||
(*Signature)(nil), // 28: control.Signature
|
(*DumpShardRequest_Body)(nil), // 28: control.DumpShardRequest.Body
|
||||||
(NetmapStatus)(0), // 29: control.NetmapStatus
|
(*DumpShardResponse_Body)(nil), // 29: control.DumpShardResponse.Body
|
||||||
(HealthStatus)(0), // 30: control.HealthStatus
|
(*RestoreShardRequest_Body)(nil), // 30: control.RestoreShardRequest.Body
|
||||||
(*Netmap)(nil), // 31: control.Netmap
|
(*RestoreShardResponse_Body)(nil), // 31: control.RestoreShardResponse.Body
|
||||||
(*ShardInfo)(nil), // 32: control.ShardInfo
|
(*Signature)(nil), // 32: control.Signature
|
||||||
(ShardMode)(0), // 33: control.ShardMode
|
(NetmapStatus)(0), // 33: control.NetmapStatus
|
||||||
|
(HealthStatus)(0), // 34: control.HealthStatus
|
||||||
|
(*Netmap)(nil), // 35: control.Netmap
|
||||||
|
(*ShardInfo)(nil), // 36: control.ShardInfo
|
||||||
|
(ShardMode)(0), // 37: control.ShardMode
|
||||||
}
|
}
|
||||||
var file_pkg_services_control_service_proto_depIdxs = []int32{
|
var file_pkg_services_control_service_proto_depIdxs = []int32{
|
||||||
14, // 0: control.HealthCheckRequest.body:type_name -> control.HealthCheckRequest.Body
|
16, // 0: control.HealthCheckRequest.body:type_name -> control.HealthCheckRequest.Body
|
||||||
28, // 1: control.HealthCheckRequest.signature:type_name -> control.Signature
|
32, // 1: control.HealthCheckRequest.signature:type_name -> control.Signature
|
||||||
15, // 2: control.HealthCheckResponse.body:type_name -> control.HealthCheckResponse.Body
|
17, // 2: control.HealthCheckResponse.body:type_name -> control.HealthCheckResponse.Body
|
||||||
28, // 3: control.HealthCheckResponse.signature:type_name -> control.Signature
|
32, // 3: control.HealthCheckResponse.signature:type_name -> control.Signature
|
||||||
16, // 4: control.NetmapSnapshotRequest.body:type_name -> control.NetmapSnapshotRequest.Body
|
18, // 4: control.NetmapSnapshotRequest.body:type_name -> control.NetmapSnapshotRequest.Body
|
||||||
28, // 5: control.NetmapSnapshotRequest.signature:type_name -> control.Signature
|
32, // 5: control.NetmapSnapshotRequest.signature:type_name -> control.Signature
|
||||||
17, // 6: control.NetmapSnapshotResponse.body:type_name -> control.NetmapSnapshotResponse.Body
|
19, // 6: control.NetmapSnapshotResponse.body:type_name -> control.NetmapSnapshotResponse.Body
|
||||||
28, // 7: control.NetmapSnapshotResponse.signature:type_name -> control.Signature
|
32, // 7: control.NetmapSnapshotResponse.signature:type_name -> control.Signature
|
||||||
18, // 8: control.SetNetmapStatusRequest.body:type_name -> control.SetNetmapStatusRequest.Body
|
20, // 8: control.SetNetmapStatusRequest.body:type_name -> control.SetNetmapStatusRequest.Body
|
||||||
28, // 9: control.SetNetmapStatusRequest.signature:type_name -> control.Signature
|
32, // 9: control.SetNetmapStatusRequest.signature:type_name -> control.Signature
|
||||||
19, // 10: control.SetNetmapStatusResponse.body:type_name -> control.SetNetmapStatusResponse.Body
|
21, // 10: control.SetNetmapStatusResponse.body:type_name -> control.SetNetmapStatusResponse.Body
|
||||||
28, // 11: control.SetNetmapStatusResponse.signature:type_name -> control.Signature
|
32, // 11: control.SetNetmapStatusResponse.signature:type_name -> control.Signature
|
||||||
20, // 12: control.DropObjectsRequest.body:type_name -> control.DropObjectsRequest.Body
|
22, // 12: control.DropObjectsRequest.body:type_name -> control.DropObjectsRequest.Body
|
||||||
28, // 13: control.DropObjectsRequest.signature:type_name -> control.Signature
|
32, // 13: control.DropObjectsRequest.signature:type_name -> control.Signature
|
||||||
21, // 14: control.DropObjectsResponse.body:type_name -> control.DropObjectsResponse.Body
|
23, // 14: control.DropObjectsResponse.body:type_name -> control.DropObjectsResponse.Body
|
||||||
28, // 15: control.DropObjectsResponse.signature:type_name -> control.Signature
|
32, // 15: control.DropObjectsResponse.signature:type_name -> control.Signature
|
||||||
22, // 16: control.ListShardsRequest.body:type_name -> control.ListShardsRequest.Body
|
24, // 16: control.ListShardsRequest.body:type_name -> control.ListShardsRequest.Body
|
||||||
28, // 17: control.ListShardsRequest.signature:type_name -> control.Signature
|
32, // 17: control.ListShardsRequest.signature:type_name -> control.Signature
|
||||||
23, // 18: control.ListShardsResponse.body:type_name -> control.ListShardsResponse.Body
|
25, // 18: control.ListShardsResponse.body:type_name -> control.ListShardsResponse.Body
|
||||||
28, // 19: control.ListShardsResponse.signature:type_name -> control.Signature
|
32, // 19: control.ListShardsResponse.signature:type_name -> control.Signature
|
||||||
24, // 20: control.SetShardModeRequest.body:type_name -> control.SetShardModeRequest.Body
|
26, // 20: control.SetShardModeRequest.body:type_name -> control.SetShardModeRequest.Body
|
||||||
28, // 21: control.SetShardModeRequest.signature:type_name -> control.Signature
|
32, // 21: control.SetShardModeRequest.signature:type_name -> control.Signature
|
||||||
25, // 22: control.SetShardModeResponse.body:type_name -> control.SetShardModeResponse.Body
|
27, // 22: control.SetShardModeResponse.body:type_name -> control.SetShardModeResponse.Body
|
||||||
28, // 23: control.SetShardModeResponse.signature:type_name -> control.Signature
|
32, // 23: control.SetShardModeResponse.signature:type_name -> control.Signature
|
||||||
26, // 24: control.DumpShardRequest.body:type_name -> control.DumpShardRequest.Body
|
28, // 24: control.DumpShardRequest.body:type_name -> control.DumpShardRequest.Body
|
||||||
28, // 25: control.DumpShardRequest.signature:type_name -> control.Signature
|
32, // 25: control.DumpShardRequest.signature:type_name -> control.Signature
|
||||||
27, // 26: control.DumpShardResponse.body:type_name -> control.DumpShardResponse.Body
|
29, // 26: control.DumpShardResponse.body:type_name -> control.DumpShardResponse.Body
|
||||||
28, // 27: control.DumpShardResponse.signature:type_name -> control.Signature
|
32, // 27: control.DumpShardResponse.signature:type_name -> control.Signature
|
||||||
29, // 28: control.HealthCheckResponse.Body.netmap_status:type_name -> control.NetmapStatus
|
30, // 28: control.RestoreShardRequest.body:type_name -> control.RestoreShardRequest.Body
|
||||||
30, // 29: control.HealthCheckResponse.Body.health_status:type_name -> control.HealthStatus
|
32, // 29: control.RestoreShardRequest.signature:type_name -> control.Signature
|
||||||
31, // 30: control.NetmapSnapshotResponse.Body.netmap:type_name -> control.Netmap
|
31, // 30: control.RestoreShardResponse.body:type_name -> control.RestoreShardResponse.Body
|
||||||
29, // 31: control.SetNetmapStatusRequest.Body.status:type_name -> control.NetmapStatus
|
32, // 31: control.RestoreShardResponse.signature:type_name -> control.Signature
|
||||||
32, // 32: control.ListShardsResponse.Body.shards:type_name -> control.ShardInfo
|
33, // 32: control.HealthCheckResponse.Body.netmap_status:type_name -> control.NetmapStatus
|
||||||
33, // 33: control.SetShardModeRequest.Body.mode:type_name -> control.ShardMode
|
34, // 33: control.HealthCheckResponse.Body.health_status:type_name -> control.HealthStatus
|
||||||
0, // 34: control.ControlService.HealthCheck:input_type -> control.HealthCheckRequest
|
35, // 34: control.NetmapSnapshotResponse.Body.netmap:type_name -> control.Netmap
|
||||||
2, // 35: control.ControlService.NetmapSnapshot:input_type -> control.NetmapSnapshotRequest
|
33, // 35: control.SetNetmapStatusRequest.Body.status:type_name -> control.NetmapStatus
|
||||||
4, // 36: control.ControlService.SetNetmapStatus:input_type -> control.SetNetmapStatusRequest
|
36, // 36: control.ListShardsResponse.Body.shards:type_name -> control.ShardInfo
|
||||||
6, // 37: control.ControlService.DropObjects:input_type -> control.DropObjectsRequest
|
37, // 37: control.SetShardModeRequest.Body.mode:type_name -> control.ShardMode
|
||||||
8, // 38: control.ControlService.ListShards:input_type -> control.ListShardsRequest
|
0, // 38: control.ControlService.HealthCheck:input_type -> control.HealthCheckRequest
|
||||||
10, // 39: control.ControlService.SetShardMode:input_type -> control.SetShardModeRequest
|
2, // 39: control.ControlService.NetmapSnapshot:input_type -> control.NetmapSnapshotRequest
|
||||||
12, // 40: control.ControlService.DumpShard:input_type -> control.DumpShardRequest
|
4, // 40: control.ControlService.SetNetmapStatus:input_type -> control.SetNetmapStatusRequest
|
||||||
1, // 41: control.ControlService.HealthCheck:output_type -> control.HealthCheckResponse
|
6, // 41: control.ControlService.DropObjects:input_type -> control.DropObjectsRequest
|
||||||
3, // 42: control.ControlService.NetmapSnapshot:output_type -> control.NetmapSnapshotResponse
|
8, // 42: control.ControlService.ListShards:input_type -> control.ListShardsRequest
|
||||||
5, // 43: control.ControlService.SetNetmapStatus:output_type -> control.SetNetmapStatusResponse
|
10, // 43: control.ControlService.SetShardMode:input_type -> control.SetShardModeRequest
|
||||||
7, // 44: control.ControlService.DropObjects:output_type -> control.DropObjectsResponse
|
12, // 44: control.ControlService.DumpShard:input_type -> control.DumpShardRequest
|
||||||
9, // 45: control.ControlService.ListShards:output_type -> control.ListShardsResponse
|
14, // 45: control.ControlService.RestoreShard:input_type -> control.RestoreShardRequest
|
||||||
11, // 46: control.ControlService.SetShardMode:output_type -> control.SetShardModeResponse
|
1, // 46: control.ControlService.HealthCheck:output_type -> control.HealthCheckResponse
|
||||||
13, // 47: control.ControlService.DumpShard:output_type -> control.DumpShardResponse
|
3, // 47: control.ControlService.NetmapSnapshot:output_type -> control.NetmapSnapshotResponse
|
||||||
41, // [41:48] is the sub-list for method output_type
|
5, // 48: control.ControlService.SetNetmapStatus:output_type -> control.SetNetmapStatusResponse
|
||||||
34, // [34:41] is the sub-list for method input_type
|
7, // 49: control.ControlService.DropObjects:output_type -> control.DropObjectsResponse
|
||||||
34, // [34:34] is the sub-list for extension type_name
|
9, // 50: control.ControlService.ListShards:output_type -> control.ListShardsResponse
|
||||||
34, // [34:34] is the sub-list for extension extendee
|
11, // 51: control.ControlService.SetShardMode:output_type -> control.SetShardModeResponse
|
||||||
0, // [0:34] is the sub-list for field type_name
|
13, // 52: control.ControlService.DumpShard:output_type -> control.DumpShardResponse
|
||||||
|
15, // 53: control.ControlService.RestoreShard:output_type -> control.RestoreShardResponse
|
||||||
|
46, // [46:54] is the sub-list for method output_type
|
||||||
|
38, // [38:46] is the sub-list for method input_type
|
||||||
|
38, // [38:38] is the sub-list for extension type_name
|
||||||
|
38, // [38:38] is the sub-list for extension extendee
|
||||||
|
0, // [0:38] is the sub-list for field type_name
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { file_pkg_services_control_service_proto_init() }
|
func init() { file_pkg_services_control_service_proto_init() }
|
||||||
|
@ -1963,7 +2223,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*HealthCheckRequest_Body); i {
|
switch v := v.(*RestoreShardRequest); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -1975,7 +2235,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*HealthCheckResponse_Body); i {
|
switch v := v.(*RestoreShardResponse); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -1987,7 +2247,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*NetmapSnapshotRequest_Body); i {
|
switch v := v.(*HealthCheckRequest_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -1999,7 +2259,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*NetmapSnapshotResponse_Body); i {
|
switch v := v.(*HealthCheckResponse_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -2011,7 +2271,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*SetNetmapStatusRequest_Body); i {
|
switch v := v.(*NetmapSnapshotRequest_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -2023,7 +2283,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*SetNetmapStatusResponse_Body); i {
|
switch v := v.(*NetmapSnapshotResponse_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -2035,7 +2295,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*DropObjectsRequest_Body); i {
|
switch v := v.(*SetNetmapStatusRequest_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -2047,7 +2307,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*DropObjectsResponse_Body); i {
|
switch v := v.(*SetNetmapStatusResponse_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -2059,7 +2319,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*ListShardsRequest_Body); i {
|
switch v := v.(*DropObjectsRequest_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -2071,7 +2331,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*ListShardsResponse_Body); i {
|
switch v := v.(*DropObjectsResponse_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -2083,7 +2343,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*SetShardModeRequest_Body); i {
|
switch v := v.(*ListShardsRequest_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -2095,7 +2355,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*SetShardModeResponse_Body); i {
|
switch v := v.(*ListShardsResponse_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -2107,7 +2367,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*DumpShardRequest_Body); i {
|
switch v := v.(*SetShardModeRequest_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -2119,6 +2379,30 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*SetShardModeResponse_Body); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_pkg_services_control_service_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*DumpShardRequest_Body); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_pkg_services_control_service_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*DumpShardResponse_Body); i {
|
switch v := v.(*DumpShardResponse_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
|
@ -2130,6 +2414,30 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
file_pkg_services_control_service_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*RestoreShardRequest_Body); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_pkg_services_control_service_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*RestoreShardResponse_Body); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
type x struct{}
|
type x struct{}
|
||||||
out := protoimpl.TypeBuilder{
|
out := protoimpl.TypeBuilder{
|
||||||
|
@ -2137,7 +2445,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
RawDescriptor: file_pkg_services_control_service_proto_rawDesc,
|
RawDescriptor: file_pkg_services_control_service_proto_rawDesc,
|
||||||
NumEnums: 0,
|
NumEnums: 0,
|
||||||
NumMessages: 28,
|
NumMessages: 32,
|
||||||
NumExtensions: 0,
|
NumExtensions: 0,
|
||||||
NumServices: 1,
|
NumServices: 1,
|
||||||
},
|
},
|
||||||
|
|
|
@ -28,6 +28,9 @@ service ControlService {
|
||||||
|
|
||||||
// Dump objects from the shard.
|
// Dump objects from the shard.
|
||||||
rpc DumpShard (DumpShardRequest) returns (DumpShardResponse);
|
rpc DumpShard (DumpShardRequest) returns (DumpShardResponse);
|
||||||
|
|
||||||
|
// Restore objects from dump.
|
||||||
|
rpc RestoreShard (RestoreShardRequest) returns (RestoreShardResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Health check request.
|
// Health check request.
|
||||||
|
@ -238,3 +241,38 @@ message DumpShardResponse {
|
||||||
// Body signature.
|
// Body signature.
|
||||||
Signature signature = 2;
|
Signature signature = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// RestoreShard request.
|
||||||
|
message RestoreShardRequest {
|
||||||
|
// Request body structure.
|
||||||
|
message Body {
|
||||||
|
// ID of the shard.
|
||||||
|
bytes shard_ID = 1;
|
||||||
|
|
||||||
|
// Path to the output.
|
||||||
|
string filepath = 2;
|
||||||
|
|
||||||
|
// Flag indicating whether object read errors should be ignored.
|
||||||
|
bool ignore_errors = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Body of restore shard request message.
|
||||||
|
Body body = 1;
|
||||||
|
|
||||||
|
// Body signature.
|
||||||
|
Signature signature = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// RestoreShard response.
|
||||||
|
message RestoreShardResponse {
|
||||||
|
// Response body structure.
|
||||||
|
message Body {
|
||||||
|
}
|
||||||
|
|
||||||
|
// Body of restore shard response message.
|
||||||
|
Body body = 1;
|
||||||
|
|
||||||
|
// Body signature.
|
||||||
|
Signature signature = 2;
|
||||||
|
}
|
||||||
|
|
38
pkg/services/control/service_grpc.pb.go
generated
38
pkg/services/control/service_grpc.pb.go
generated
|
@ -36,6 +36,8 @@ type ControlServiceClient interface {
|
||||||
SetShardMode(ctx context.Context, in *SetShardModeRequest, opts ...grpc.CallOption) (*SetShardModeResponse, error)
|
SetShardMode(ctx context.Context, in *SetShardModeRequest, opts ...grpc.CallOption) (*SetShardModeResponse, error)
|
||||||
// Dump objects from the shard.
|
// Dump objects from the shard.
|
||||||
DumpShard(ctx context.Context, in *DumpShardRequest, opts ...grpc.CallOption) (*DumpShardResponse, error)
|
DumpShard(ctx context.Context, in *DumpShardRequest, opts ...grpc.CallOption) (*DumpShardResponse, error)
|
||||||
|
// Restore objects from dump.
|
||||||
|
RestoreShard(ctx context.Context, in *RestoreShardRequest, opts ...grpc.CallOption) (*RestoreShardResponse, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type controlServiceClient struct {
|
type controlServiceClient struct {
|
||||||
|
@ -109,6 +111,15 @@ func (c *controlServiceClient) DumpShard(ctx context.Context, in *DumpShardReque
|
||||||
return out, nil
|
return out, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *controlServiceClient) RestoreShard(ctx context.Context, in *RestoreShardRequest, opts ...grpc.CallOption) (*RestoreShardResponse, error) {
|
||||||
|
out := new(RestoreShardResponse)
|
||||||
|
err := c.cc.Invoke(ctx, "/control.ControlService/RestoreShard", in, out, opts...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
// ControlServiceServer is the server API for ControlService service.
|
// ControlServiceServer is the server API for ControlService service.
|
||||||
// All implementations should embed UnimplementedControlServiceServer
|
// All implementations should embed UnimplementedControlServiceServer
|
||||||
// for forward compatibility
|
// for forward compatibility
|
||||||
|
@ -127,6 +138,8 @@ type ControlServiceServer interface {
|
||||||
SetShardMode(context.Context, *SetShardModeRequest) (*SetShardModeResponse, error)
|
SetShardMode(context.Context, *SetShardModeRequest) (*SetShardModeResponse, error)
|
||||||
// Dump objects from the shard.
|
// Dump objects from the shard.
|
||||||
DumpShard(context.Context, *DumpShardRequest) (*DumpShardResponse, error)
|
DumpShard(context.Context, *DumpShardRequest) (*DumpShardResponse, error)
|
||||||
|
// Restore objects from dump.
|
||||||
|
RestoreShard(context.Context, *RestoreShardRequest) (*RestoreShardResponse, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
// UnimplementedControlServiceServer should be embedded to have forward compatible implementations.
|
// UnimplementedControlServiceServer should be embedded to have forward compatible implementations.
|
||||||
|
@ -154,6 +167,9 @@ func (UnimplementedControlServiceServer) SetShardMode(context.Context, *SetShard
|
||||||
func (UnimplementedControlServiceServer) DumpShard(context.Context, *DumpShardRequest) (*DumpShardResponse, error) {
|
func (UnimplementedControlServiceServer) DumpShard(context.Context, *DumpShardRequest) (*DumpShardResponse, error) {
|
||||||
return nil, status.Errorf(codes.Unimplemented, "method DumpShard not implemented")
|
return nil, status.Errorf(codes.Unimplemented, "method DumpShard not implemented")
|
||||||
}
|
}
|
||||||
|
func (UnimplementedControlServiceServer) RestoreShard(context.Context, *RestoreShardRequest) (*RestoreShardResponse, error) {
|
||||||
|
return nil, status.Errorf(codes.Unimplemented, "method RestoreShard not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
// UnsafeControlServiceServer may be embedded to opt out of forward compatibility for this service.
|
// UnsafeControlServiceServer may be embedded to opt out of forward compatibility for this service.
|
||||||
// Use of this interface is not recommended, as added methods to ControlServiceServer will
|
// Use of this interface is not recommended, as added methods to ControlServiceServer will
|
||||||
|
@ -292,6 +308,24 @@ func _ControlService_DumpShard_Handler(srv interface{}, ctx context.Context, dec
|
||||||
return interceptor(ctx, in, info, handler)
|
return interceptor(ctx, in, info, handler)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func _ControlService_RestoreShard_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||||
|
in := new(RestoreShardRequest)
|
||||||
|
if err := dec(in); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if interceptor == nil {
|
||||||
|
return srv.(ControlServiceServer).RestoreShard(ctx, in)
|
||||||
|
}
|
||||||
|
info := &grpc.UnaryServerInfo{
|
||||||
|
Server: srv,
|
||||||
|
FullMethod: "/control.ControlService/RestoreShard",
|
||||||
|
}
|
||||||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
|
return srv.(ControlServiceServer).RestoreShard(ctx, req.(*RestoreShardRequest))
|
||||||
|
}
|
||||||
|
return interceptor(ctx, in, info, handler)
|
||||||
|
}
|
||||||
|
|
||||||
// ControlService_ServiceDesc is the grpc.ServiceDesc for ControlService service.
|
// ControlService_ServiceDesc is the grpc.ServiceDesc for ControlService service.
|
||||||
// It's only intended for direct use with grpc.RegisterService,
|
// It's only intended for direct use with grpc.RegisterService,
|
||||||
// and not to be introspected or modified (even as a copy)
|
// and not to be introspected or modified (even as a copy)
|
||||||
|
@ -327,6 +361,10 @@ var ControlService_ServiceDesc = grpc.ServiceDesc{
|
||||||
MethodName: "DumpShard",
|
MethodName: "DumpShard",
|
||||||
Handler: _ControlService_DumpShard_Handler,
|
Handler: _ControlService_DumpShard_Handler,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
MethodName: "RestoreShard",
|
||||||
|
Handler: _ControlService_RestoreShard_Handler,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
Streams: []grpc.StreamDesc{},
|
Streams: []grpc.StreamDesc{},
|
||||||
Metadata: "pkg/services/control/service.proto",
|
Metadata: "pkg/services/control/service.proto",
|
||||||
|
|
Loading…
Reference in a new issue