Coder Social home page Coder Social logo

grpcproxy's Introduction

GrpcProxy

Build info Test coverage Docker Hub Version Docs status

Basic information

A simple solution for gRPC proxy with multiple hosts by pick first host to resolving. Currently supports only single packet data transfer (unary_unary grpc type. To remove the unary_unary grpc type restriction, need to switch to golang.).

Usage

For running proxy with default parameters (50 routing connections simultaneously)

docker run -p 9878 -v <path to your configuration yaml file>:/config/setup.yaml andriygav/grpc-proxy:latest

Example of setup file

- service: example.v1.ExampleService
  match:
  - name: somename
    headers:
      someheaderkey:
        exact: someheadervalue
    hosts:
    - address-one:81
    - address-two:80
    loadBalancer:
      type: pick_first
  - name: someothername
    headers:
      someheaderkey:
        exact: someotherheadervalue
    hosts:
    - address-three:1824
    - address-four:18243
    loadBalancer:
      type: random
  hosts:
  - default-adress:1824
  loadBalancer:
    type: pick_first
  • Firstly, need to specify the service for routing discovery (for example we are using example.v1.ExampleService).
  • Secondly, need to specify headers information for specific routing (we are using key: value pairs from header such as someheaderkey and someheadervalue).
  • Thirdly, need to specify hosts for routing and type of use it (now only pick_first and random available).
  • Host must by specify by address and port.

grpcproxy's People

Contributors

andriygav avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

grpcproxy's Issues

Why not GoLang?

Why haven't you write this proxy on golang? Why had you choose python?

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.