eclipse-iceoryx / iceoryx2

Eclipse iceoryx2™ - true zero-copy inter-process-communication in pure Rust
https://iceoryx.io
Apache License 2.0
930 stars 36 forks source link

Add more comparison benchmarks #417

Open tusharmath opened 2 weeks ago

tusharmath commented 2 weeks ago

Hi there!

Your benchmarks look promising, but I would like to see how it compares to Thrift, gRPC and WASM.

These are some of the most popular alternatives for building RPC. I'd love to explore this for Tailcall as we are building a plugin API.

elfenpiff commented 2 weeks ago

I think I can deliver a gRPC benchmark quickly, I have no experience with Thrift so if someone would like to support here I would be super happy.

@tusharmath I do not completely get what you mean with WASM. I know WebAssembly but unsure what you would like to compare here?

tusharmath commented 2 weeks ago

@elfenpiff Communication from Native (Rust) to a WASM module. While building a WASM based application you often need to communicate with the real world for example making and HTTP call or a DB query. Data needs to be sent from the native realm where the drivers are actually implemented to the application code which is typically in WASM. If the performance of iceoryx can beat this overhead of communicating with a WASM module, I think it will make it worthy candidate for building distributed applications.