envoyproxy/gateway

Use EDS instead of STRICT_DNS for Ratelimit Cluster in Envoy Gateway

Open

#6,992 创建于 2025年9月17日

在 GitHub 查看
 (3 评论) (0 反应) (0 负责人)Go (802 fork)auto 404
help wanted

仓库指标

Star
 (2,871 star)
PR 合并指标
 (PR 指标待抓取)

描述

Description: Currently, the ratelimit cluster that is spawned by Envoy Gateway uses the STRICT_DNS discovery type. However, since the Envoy Gateway is responsible for spawning and managing this service internally, it has full visibility into the ratelimit service and could instead use Endpoint Discovery Service (EDS) — which is the preferred and more dynamic method of service discovery in Envoy.

Using EDS provides several advantages:

  • More flexible scaling and dynamic endpoint management.
  • Avoids reliance on DNS resolution, which can have caching/staleness or timeout issues.
  • Aligns with how other internally-managed services are typically handled in Envoy.

贡献者指南