15 releases

new 0.7.2 Apr 22, 2024
0.7.1 Feb 27, 2024
0.7.0 Sep 6, 2023
0.6.0 Apr 18, 2023
0.2.0 Jul 9, 2021

#109 in Web programming

Download history 23331/week @ 2024-01-01 34422/week @ 2024-01-08 35953/week @ 2024-01-15 35003/week @ 2024-01-22 29771/week @ 2024-01-29 36567/week @ 2024-02-05 38395/week @ 2024-02-12 35413/week @ 2024-02-19 50813/week @ 2024-02-26 54159/week @ 2024-03-04 40532/week @ 2024-03-11 42078/week @ 2024-03-18 45824/week @ 2024-03-25 59138/week @ 2024-04-01 61945/week @ 2024-04-08 60824/week @ 2024-04-15

227,988 downloads per month

MIT/Apache

34KB
463 lines

ginepro

ginepro provides client-side gRPC load-balancing out of the box by enriching tonic ‘s channel with periodic service discovery.

Crates.io Docs.rs CI Coverage Status

Overview

ginepro enriches tonic by periodically updating the list of servers that are available through a ServiceDiscovery interface that currently is implemented for DNS.

How to install

Add ginepro to your dependencies

[dependencies]
# ...
ginepro = "0.6.0"

Getting started

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.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~11–20MB
~273K SLoC