Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The movers are standalone processes, and communicate with the agent using gRPC, an RPC protocol built using Google's Protocol Buffers. h3.

RPC Interface

...

Code Block
service DataMover {
    rpc Register(Endpoint) returns (Handle);
    rpc GetActions(Handle) returns (stream ActionItem);
    rpc StatusStream(stream ActionStatus) returns (Empty);
}

 

Register(Endpoint) returns (Handle)

GetActions(Handle) returns (stream ActionItem)

StatusStream(stream ActionStatus) returns (Empty)

 

POSIX Mover

.h4 Regster

.h3 POSIX Mover

...

S3 Mover