Back to Sentinel

Sentinel Token Server (Envoy RLS implementation)

sentinel-cluster/sentinel-cluster-server-envoy-rls/README.md

1.8.92.6 KB
Original Source

Sentinel Token Server (Envoy RLS implementation)

This module provides the Envoy rate limiting gRPC service implementation with Sentinel token server.

The token server has supported both Envoy RLS v2 and v3 API. Since Envoy 1.18.0, v2 API support has been removed.

Note: the gRPC stub classes for Envoy RLS service is generated via protobuf-maven-plugin during the compile goal. The generated classes is located in the directory: target/generated-sources/protobuf.

Build

Build the executable jar:

bash
mvn clean package -P prod

Rule configuration

Sentinel RLS token server supports dynamic rule configuration via the yaml file. The file may provide rules for one domain (defined in Envoy's conf file). In Envoy, one rate limit request might carry multiple rate limit descriptors (which will be generated from Envoy rate limit actions). One rate limit descriptor may have multiple entries (key-value pair). We may set different threshold for each rate limit descriptors.

A sample rule configuration file:

yaml
domain: foo
descriptors:
  - resources:
    - key: "destination_cluster"
      value: "service_httpbin"
    count: 1

This rule only takes effect for domain foo. It will limit the max QPS to 1 for all requests targeted to the service_httpbin cluster.

We need to provide the path to yaml file via the SENTINEL_RLS_RULE_FILE_PATH env (or -Dcsp.sentinel.rls.rule.file opts). Then as soon as the content in the rule file has been changed, Sentinel will reload the new rules from the file to the EnvoyRlsRuleManager.

We may check the logs in ~/logs/csp/sentinel-record.log.xxx to see whether the rules has been loaded. We may also retrieve the converted FlowRule via the command API localhost:8719/cluster/server/flowRules.

Configuration items

The configuration list:

Item (env)Item (JVM property)DescriptionDefault ValueRequired
SENTINEL_RLS_GRPC_PORTcsp.sentinel.grpc.server.portThe RLS gRPC server port10240false
SENTINEL_RLS_RULE_FILE_PATHcsp.sentinel.rls.rule.fileThe path of the RLS rule yaml file-true
SENTINEL_RLS_ACCESS_LOG-Whether to enable the access log (on for enable)offfalse

Samples