Giter VIP home page Giter VIP logo

gruf-balancer's Introduction

gruf-balancer - Testing framework for Gruf Clients

CircleCI Gem Version

Maintainability Test Coverage

Provides an integration for gruf Ruby gRPC framework, allowing testing various outbound Gruf::Client calls on a percentage-basis, letting you balance requests between multiple clients for testing new services, code paths, or networking operations.

Installation

gem 'gruf-balancer'

Usage

Instead of creating a normal Gruf::Client, simply add clients to a Gruf::Balancer::Client, via passing in a percentage of requests and client options (similarly to how you'd create Gruf::Client objects).

client = Gruf::Balancer::Client.new(service: MyService)
client.add_client(percentage: 60, options: { hostname: '127.0.0.1:8000' })
client.add_client(percentage: 40, options: { hostname: '127.0.0.1:8001' })
# @type [Gruf::Response] resp
resp = client.call(:GetThing, id: 123)

This uses a weighted random sampling algorithm under the hood to balance the requests to the method on the defined percentage weights. In the example above, 60% of requests would go to our service on port 8000, and 40% on port 8001.

Gruf::Balancer::Client acts similarly to a Gruf::Client, in terms of its call method signature. It maintains a thread-safe pool of clients. Note, similarly to gRPC core, that clients are not fork-safe; please instantiate any balanced client pools after forking.

Use Cases

Some use cases for gruf-balancer can be:

  • Testing a new application service that serves the same gRPC Service, but on a different hostname
  • Testing different hostnames, routing rules, network infrastructure, or service meshes via different hostnames
  • Testing new client options, such as timeouts, credentials, channels, or channel arguments
  • Testing new client interceptors, since they are configured per-client

License

Copyright (c) 2021-present, BigCommerce Pty. Ltd. All rights reserved

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

gruf-balancer's People

Contributors

splittingred avatar

Stargazers

Juned Kazi avatar

Watchers

Steven Steffen avatar Joe Cai avatar Bryan Waters avatar Matthew Huckaby avatar James Cloos avatar Patrick Edelman avatar Bill Thompson avatar Jason Gellatly avatar Tom Arbesser avatar Egezon Berisha avatar Trav Easton avatar Bill Goetz avatar Brandon Quintel avatar Wyatt Wasicek avatar Sergey Tatarenko avatar  avatar

Forkers

isabella232

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.