Crates.io | ginepro |
lib.rs | ginepro |
version | 0.8.1 |
source | src |
created_at | 2021-05-12 15:06:03.187331 |
updated_at | 2024-07-10 09:21:05.40336 |
description | A client-side gRPC channel implementation for tonic |
homepage | |
repository | https://github.com/TrueLayer/ginepro |
max_upload_size | |
id | 396546 |
size | 75,806 |
ginepro
provides client-side gRPC load-balancing out of the box by enriching tonic
‘s channel with periodic service discovery.
ginepro
enriches tonic by periodically updating the list of
servers that are available through a ServiceDiscovery
interface that currently is implemented for DNS.
Add ginepro
to your dependencies
cargo add ginepro
The interface remains fairly the same as we implement all the logic for a drop-in replacement for
tonic's Channel
.
// Using the `LoadBalancedChannel`.
use ginepro::LoadBalancedChannel;
use ginepro::pb::tester_client::TesterClient;
// Build a load-balanced channel given a service name and a port.
let load_balanced_channel = LoadBalancedChannel::builder(
("my_hostname", 5000)
)
.channel()
.await
.expect("failed to construct LoadBalancedChannel");
// Initialise a new gRPC client for the `Test` service
// using the load-balanced channel as transport
let grpc_client = TesterClient::new(load_balanced_channel);
For more examples, have a look at the examples directory.