티스토리 수익 글 보기
Window Sizing for Zstandard Content Encoding
Google
Shibuya Stream, 3 Chome-21-3 Shibuya
Shibuya City, Tokyo
150-0002
Japan
nidhijaju@google.com
Meta Platforms, Inc.
380 W 33rd St
New York
NY
10001
US
felixh@meta.com
Web and Internet Transport
HTTPBIS
zstd
zstandard
compression
content encoding
content coding
application/zstd
Deployments of Zstandard, or “zstd”, can use different window sizes to limit memory usage during compression and decompression. Some browsers and user agents limit window sizes to mitigate memory usage concerns, causing interoperability issues. This document updates the window size limit in RFC8878 from a recommendation to a requirement in HTTP contexts.
The latest revision of this draft can be found at . Status information for this document may be found at .
Discussion of this document takes place on the HTTP Working Group mailing list (), which is archived at .
Source for this draft and an issue tracker can be found at .
Introduction
Zstandard, or “zstd”, specified in , is a lossless data compression mechanism similar to gzip. When used with HTTP, the “zstd” content coding token signals to the decoder that the content is Zstandard-compressed.
An important property of Zstandard-compressed content is its Window_Size (), which describes the maximum distance for back-references and therefore how much of the content must be kept in memory during decompression.
The minimum Window_Size is 1 KB. The maximum Window_Size is (1<<41) + 7*(1<<38) bytes, which is 3.75 TB. Larger Window_Size values tend to improve the compression ratio, but at the cost of increased memory usage.
To protect against unreasonable memory usage, some browsers and user agents limit the maximum Window_Size they will handle. This causes failures to decode responses when the content is compressed with a larger Window_Size than the recipient allows, leading to decreased interoperability.
recommends that decoders support a Window_Size of up to 8 MB, and that encoders not generate frames using a Window_Size larger than 8 MB. However, it imposes no requirements.
This document updates to enforce Window_Size limits on the encoder and decoder for the “zstd” HTTP content coding.
Conventions and Definitions
The key words “MUST“, “MUST NOT“, “REQUIRED“, “SHALL“, “SHALL NOT“, “SHOULD“, “SHOULD NOT“, “RECOMMENDED“, “NOT RECOMMENDED“, “MAY“, and “OPTIONAL” in this document are to be interpreted as described in BCP 14
when, and only when, they appear in all capitals, as shown here.
Window Size
To ensure interoperability, when using the “zstd” content coding, decoders MUST support a Window_Size of up to and including 8 MB, and encoders MUST NOT generate frames requiring a Window_Size larger than 8 MB (see ).
Security Considerations
This document introduces no new security considerations beyond those discussed in .
Note that decoders still need to take into account that they can receive oversized frames that do not follow the window size limit specified in this document and fail decoding when such invalid frames are received.
IANA Considerations
Content Encoding
This document updates the entry added in to the “HTTP Content Coding Registry” within the “Hypertext Transfer Protocol (HTTP) Parameters” registry:
- Name:
-
zstd
- Description:
-
A stream of bytes compressed using the Zstandard protocol with a Window_Size of not more than 8 MB.
- Reference:
-
This document and
Zstandard Compression and the ‘application/zstd’ Media Type
Key words for use in RFCs to Indicate Requirement Levels
Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words
Acknowledgments
Zstandard was developed by Yann Collet.
The authors would like to thank Yann Collet, Klaus Post, Adam Rice, and members of the Web Performance Working Group in the W3C for collaborating on the window size issue and helping to formulate a solution. Also, thank you to Nick Terrell for providing feedback that went into RFC 8478 and RFC 8878.