Is your feature request related to a problem?
The Edge Proxy polls /api/v1/environment-document/ on a fixed interval and receives the full environment document on every poll, since the Edge API always responds 200. Deployments running many proxy instances with short poll intervals transfer the full document repeatedly even when the environment rarely changes, which wastes bandwidth and inflates request volume.
Describe the solution you would like
A streaming or push based update channel (for example SSE) for environment updates, so a proxy is notified when an environment changes rather than re-fetching the full document on every interval.
Additional context
Most relevant for high instance count deployments where redundant full-document fetches dominate request volume.
Is your feature request related to a problem?
The Edge Proxy polls
/api/v1/environment-document/on a fixed interval and receives the full environment document on every poll, since the Edge API always responds200. Deployments running many proxy instances with short poll intervals transfer the full document repeatedly even when the environment rarely changes, which wastes bandwidth and inflates request volume.Describe the solution you would like
A streaming or push based update channel (for example SSE) for environment updates, so a proxy is notified when an environment changes rather than re-fetching the full document on every interval.
Additional context
Most relevant for high instance count deployments where redundant full-document fetches dominate request volume.