protoc-gen-ratelimit

command module
v0.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 1, 2023 License: Apache-2.0 Imports: 3 Imported by: 0

README ยถ

protoc-gen-ratelimit ๐Ÿ›ก๏ธ

GoDoc

protoc-gen-ratelimit is an innovative protoc plugin and library ๐ŸŒŸ designed to simplify gRPC request ratelimiting. It seamlessly integrates ratelimit configuration options directly within your proto files ๐Ÿ“, reducing the need to clutter your application code with complex code to handle ratelimiting. Perfect for developers ๐Ÿ‘จโ€๐Ÿ’ป๐Ÿ‘ฉโ€๐Ÿ’ป looking to streamline their workflows in gRPC applications. In this README, you'll find easy installation instructions ๐Ÿ“ฅ, examples ๐Ÿ’ก, and all you need to harness the power of expression-based rules for robust and efficient request handling ๐Ÿ’ผ.

Features

  • Unary and Stream gRPC interceptors
  • Highly configurable rate limiting by method
  • Supports multiple ratelimit providers (Redis, In-Memory, etc)

Installation

The plugin can be installed with the following command:

    go install github.com/autom8ter/protoc-gen-ratelimit

Code Generation

buf.gen.yaml example:

version: v1
plugins:
  - plugin: buf.build/protocolbuffers/go
    out: gen
    opt: paths=source_relative
  - plugin: buf.build/grpc/go
    out: gen
    opt:
      - paths=source_relative
  - plugin: ratelimit
    out: gen
    opt:
      - paths=source_relative
      - limiter=inmem # or limiter=redis

Example

import "ratelimit/ratelimit.proto";

// Example service is an example of how to configure method based ratelimits(per minute)
service ExampleService {
  rpc Allow100PerMinute(google.protobuf.Empty) returns (google.protobuf.Empty) {
    // limit by authorization header
    option (ratelimit.options) = {
      limit: 100
      message: "You have exceeded your rate limit (100 per minute)"
      metadata_key: "authorization"
    };
    // limit by api key
    option (ratelimit.options) = {
      limit: 1000
      message: "You have exceeded your rate limit (1000 per minute)"
      metadata_key: "x-api-key"
    };
  }
  rpc Allow1PerMinute(google.protobuf.Empty) returns (google.protobuf.Empty) {
    option (ratelimit.options) = {
      limit: 1
      message: "You have exceeded your rate limit (1 per minute)"
      metadata_key: "authorization"
    };
  }
}

    // create a new ratelimiter from the generated function(protoc-gen-ratelimit)
	limit, err := example.NewRateLimiter()
	if err != nil {
		return err
	}
	// create a new grpc server with the ratelimitr interceptors
	srv := grpc.NewServer(
		grpc.UnaryInterceptor(
			limiter.UnaryServerInterceptor(limit),
		),
		grpc.StreamInterceptor(
			limiter.StreamServerInterceptor(limit),
		),
	)

See example for the full example.

Documentation ยถ

The Go Gopher

There is no documentation for this package.

Directories ยถ

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL