jiacai2050 opened a new issue, #1515: URL: https://github.com/apache/incubator-horaedb/issues/1515
### Describe This Problem Our [RemoteEngineService](https://github.com/apache/incubator-horaedb/blob/55bbe273ab4a09e2f3428582ca9b4cdb5ee88763/src/server/src/grpc/remote_engine_service/mod.rs#L924) use gRPC to communicate between different servers, and adopt protobuf as encode/decode methods, protobuf is not a very high performance library, and we observe high CPU usage in our production env. ### Proposal Explore new serialization library, which support following features: - Zero copy, which means its wire format is the same as memory layout. - Native rust binding - Support integration with [tonic](https://github.com/hyperium/tonic) ### Additional Context Some choices: - https://flatbuffers.dev/ - https://fury.apache.org/docs/start/usage#rust -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
