How to send or publish gRPC binary format data by using RAFT cluster? #152
-
Using |
Beta Was this translation helpful? Give feedback.
Answered by
sakno
Feb 21, 2023
Replies: 1 comment 3 replies
-
What you mean by send or publish gRPC binary format? gRPC binary format is Protobuf. Protobuf can be used standalone as serialization format without gRPC. .NEXT Raft implementation has no restrictions over binary format of log entries stored in WAL and replicated across the cluster. Thus, you can use Protobuf, MessagePack, BSON, JSON, or whatever you like. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Jeevananthan-23
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What you mean by send or publish gRPC binary format? gRPC binary format is Protobuf. Protobuf can be used standalone as serialization format without gRPC. .NEXT Raft implementation has no restrictions over binary format of log entries stored in WAL and replicated across the cluster. Thus, you can use Protobuf, MessagePack, BSON, JSON, or whatever you like.