English | 中文
tRPC-Cpp is the cpp version of tRPC, it follows the overall design principles of tRPC.
The overall architecture consists of two parts: "framework core" and "plugins". As shown in the figure above, the dotted box is tRPC. The red solid line box in the middle is the framework core, and the blue box is the plugin part.
The framework core can be divided into three layers:
-
Runtime: It consists of thread model and io model, responsible for scheduling of framework cpu tasks and io operations. thread model currently supports: ordinary thread model (io/handle separated or merged thread model), M:N coroutine model (fiber thread model). io model currently supports: reactor model for network IO and asyncIO model for disk io(based on io-uring, currently only supported in the merged thread model);
-
Transport: Responsible for data transmission and protocol encoding and decoding. The framework currently supports tcp/udp/unix-socket and uses the tRPC protocol to carry RPC messages, and also supports other protocol through codec plugin;
-
RPC: Encapsulates services and service proxy entities, provides RPC interfaces and support synchronous, asynchronous, one-way, and streaming calls;
In addition, the framework also provides an admin management interface, which is convenient for users or operating platforms to manage services. The management interface includes functions such as updating configuration, viewing version, modifying log level, viewing framework runtime information, and the framework also supports user interface to meet the customized needs.
more details:architecture design
- Runtime
- thread-model: support
fiber(m:n coroutine)
andthread(io/handle merge or separate)
- io-model: support
reactor(for network)
andasync-io(for disk)
- thread-model: support
- Server
- network: support
tcp/udp/ssl/unix domain socket
- rpc-impl: support
rpc/streaming-rpc/non-rpc
- network: support
- Client
- network: support
tcp/udp/ssl
- connection-way: support
conn-complex/conn-pool/conn-pipeline
- rpc-call: support
rpc/streaming-rpc/non-rpc/one-way
- network: support
- Plugin
- protocol(codec): support
trpc/http(s/2.0)/grpc/...
- serialization/deserialization: support pb/flatbuffers/json/noop(text and binary)
- compressor/decompressor: support gzip/zlib/snappy/lz4
- naming: support polarismesh
- config: support etcd
- logging: support cls
- metrics: support prometheus
- tracing: support jaeger
- telemetry: support opentelemetry
- protocol(codec): support
- Tools
- support: admin/tvar/rpcz
- proto IDL dependency management
- Components
If you're interested in contributing, please take a look at the CONTRIBUTING and check the unassigned issues in the repository. Claim a task and let's contribute together to tRPC-Cpp.
Report bugs, ask questions or give suggestions by Issues