occams-rpc-smol

Crates.iooccams-rpc-smol
lib.rsoccams-rpc-smol
version0.2.0
created_at2025-10-10 23:55:27.233343+00
updated_at2025-10-26 09:20:19.339226+00
descriptionoccams-rpc runtime adaptor for smol-rs ecology. occams-rpc is a modular, pluggable RPC for high throughput scenario, supports various runtimes, with a low-level streaming interface, and high-level remote API call interface.
homepage
repositoryhttps://github.com/NaturalIO/occams-rpc
max_upload_size
id1877662
size49,762
Adam Ning (frostyplanet)

documentation

https://docs.rs/occams-rpc-smol

README

occams-rpc

A modular, pluggable RPC for high throughput scenario, supports various runtimes, with a low-level streaming interface, and high-level remote API call interface.

Components

occams-rpc is built from a collection of crates that provide different functionalities:

Streaming interface

The interface is designed to optimize throughput and lower CPU consumption for high-performance services.

Each connection is a full-duplex, multiplexed stream. There's a seq ID assigned to a packet to track a request and response. The timeout of a packet is checked in batches every second. We utilize the crossfire channel for parallelizing the work with coroutines.

With an ClientStream (used in ClientPool and FailoverPool), the request sends in sequence, flush in batches, and wait a slicing window throttler controlling the number of in-flight packets. An internal timer then registers the request through a channel, and when the response is received, it can optionally notify the user through a user-defined channel or another mechanism.

In an RpcServer, for each connection, there is one coroutine to read requests and one coroutine to write responses. Requests can be dispatched with a user-defined Dispatch trait implementation.

API call interface

  • Independent from async runtime (with plugins)
  • With service trait very similar to grpc / tarpc (stream in API interface is not supported currently)
  • Support latest impl Future definition of rust since 1.75, also support legacy async_trait wrapper
  • Each method can have different custom error type (requires the type implements RpcErrCodec trait)
  • based on occams-rpc-stream: Full duplex in each connection, with slicing window threshold, allow maximizing throughput and lower cpu usage.

(Warning: The API and feature is still evolving, might changed in the future)

Commit count: 8

cargo fmt