Origin-Agent-Cluster

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The Origin-Agent-Cluster HTTP response header is used to request that the associated Document should be placed in an origin-keyed agent cluster. This means that operating system resources (for example, the operating system process) used to evaluate the document should be shared only with other documents from the same origin.

The effect of this is that a resource-intensive document will be less likely to degrade the performance of documents from other origins.

Modern web browsers have a multiprocess architecture in which pages from different origins can run in different operating system processes. This is important for performance, because it means that a resource-intensive page will not have as much of an impact on other pages that the user has open.

However, browsers can't as a general rule run same-site, cross-origin pages in different processes, because of certain DOM APIs that depend on same-site, cross-origin communication. For example, by default, pages from the following two origins will share the same operating system resources:

https://apples.example.org
https://oranges.example.org

By setting the Origin-Agent-Cluster header, a page can request that the browser allocate dedicated resources to this origin that are not shared with any other origins.

The browser is not required to honor the request. If it does, the Window.originAgentCluster property returns true, and the window is not able to do the following things, which all depend on same-site, cross-origin communication:

Origin-keyed agent clusters should not be viewed as a security feature: browsers may ignore the request for various reasons, or choose to implement it in a way that does not provide memory protection (for example, using separate threads instead of separate processes). Instead, this feature is a hint that the user experience would be improved if this origin were allocated dedicated resources.

For example, suppose your site includes a page from one origin that embeds a same-site, cross-origin iframe which runs a resource-intensive game. By setting Origin-Agent-Cluster on the document in the iframe, you can prevent the game from affecting the performance of the main page.

The browser will ensure that all pages from a given origin are either origin-keyed or they are not. This means that:

  • If the first page from an origin does not set the header, then no other pages from that origin will be origin-keyed, even if those other pages do set the header.
  • If the first page from an origin sets the header and is made origin-keyed, then all other pages from that origin will be origin-keyed whether they ask for it or not.

To avoid this kind of unpredictable situation, you should set this header for all pages from a given origin, or none of them.

Header type Response header
Forbidden header name no

Syntax

http
Origin-Agent-Cluster: <boolean>

Directives

<boolean>

?1 indicates that the associated Document should be placed in an origin-keyed agent cluster. Values other than ?1 are ignored (e.g., the ?0 structured field for false).

Examples

http
Origin-Agent-Cluster: ?1

Specifications

Specification
HTML Standard
# origin-agent-cluster

Browser compatibility

BCD tables only load in the browser

See also