-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
object: Separate op for node-to-node replication
Previously, object replication between container nodes was performed via `ObjectService.Put` RPC. This approach had a number of problems: - system operations inside the container were mixed with user requests - it was not possible to send an object in one message To improve this, a separate `Replicate` RPC is added. It's intended for usage by nodes of the containers only to comply with their storage policies. Within a request, any object is packaged into one message. Only the object itself is signed, which simplifies and speeds up the formation and processing of the request. Signed-off-by: Leonard Lyubich <[email protected]>
- Loading branch information
1 parent
1424834
commit bd1ffaf
Showing
2 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters