惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - Franky
Microsoft Azure Blog
Microsoft Azure Blog
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
量子位
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
GbyAI
GbyAI
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
Y
Y Combinator Blog
L
LangChain Blog
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
Martin Fowler
Martin Fowler
aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客

Common Crawl

Common Crawl - Blog - Introducing the AI Visibility Audit Common Crawl - Blog - Host- and Domain-Level Web Graphs March, April, and May 2026 Common Crawl - Blog - May 2026 Crawl Archive Now Available Common Crawl - Blog - You can now build directly on Common Crawl from the browser Common Crawl - Blog - Host- and Domain-Level Web Graphs February, March, and April 2026 Common Crawl - Blog - April 2026 Crawl Archive Now Available Common Crawl - Blog - April 2026 Common Crawl Newsletter Common Crawl - Blog - Announcing a Change to Common Crawl Dataset Size Reporting Common Crawl - Blog - Host- and Domain-Level Web Graphs January, February, and March 2026 Common Crawl - Blog - March 2026 Crawl Archive Now Available Common Crawl - Blog - IPv6 Adoption Across the Top 100K Web Hosts Common Crawl - Blog - Web Graph Statistics Gets a Proper Upgrade Common Crawl - Blog - Measuring Web Accessibility from Crawl Archives Common Crawl - Blog - Announcing the Whirlwind Tour of Common Crawl's Datasets Using Java Common Crawl - Blog - Host- and Domain-Level Web Graphs December 2025 and January/February 2026 Common Crawl - Blog - Introducing the New Examples & Resources Browser Common Crawl - Blog - February 2026 Crawl Archive Now Available Common Crawl - Blog - AI Plumbers at FOSDEM’26 Common Crawl - Blog - CC-Citations: A Visualization of Research Papers Referencing Common Crawl Common Crawl - Blog - CommonLID: Re-evaluating State-of-the-Art Language Identification Performance on Web Data Common Crawl - Blog - Host- and Domain-Level Web Graphs November/December 2025 and January 2026 Common Crawl - Blog - January 2026 Crawl Archive Now Available Common Crawl - Blog - Web Archives for Social Sciences Datathon, Bristol Common Crawl - Blog - How SEOs Are Using Common Crawl's Web Graph Data for AI Ranking Signals Common Crawl - Blog - GneissWeb Annotations Examples Common Crawl - Blog - Common Crawl at the Mozilla Festival 2025 Common Crawl - Blog - Host- and Domain-Level Web Graphs October, November, December 2025 Common Crawl - Blog - December 2025 Crawl Archive Now Available Common Crawl - Blog - A Sampling of 2025 Research Referencing Common Crawl Common Crawl - Blog - Host- and Domain-Level Web Graphs September, October, and November 2025
Common Crawl - Blog - April 2026 Crawl Archive Now Availa...
2026-05-20 · via Common Crawl

We are pleased to announce the April 2026 crawl archive (CC-MAIN-2026-17) is now available in a Hugging Face Storage Bucket, alongside its existing home on AWS S3.  This is an early experiment in distributing crawl data through a new channel.  AWS S3 remains the canonical distribution point for the Common Crawl corpus, generously hosted through Amazon Web Services' Open Data Sponsorship Program, and every crawl remains available from the Common Crawl bucket on S3 exactly as before. The Hugging Face Bucket is an additional way to reach the same data.

The April 2026 crawl archive is now available in a Hugging Face Storage Bucket

Why Hugging Face Buckets

Storage Buckets are a recent addition to the Hugging Face Hub: mutable, S3-like object storage that can be browsed in the browser, scripted from Python, or managed with the hf CLI. Unlike Models and Datasets repositories they are not version-controlled, which suits a continuously growing archive of crawl data.

Two properties make them interesting for a dataset of this size. They are backed by Xet, Hugging Face's chunk-based storage backend, which deduplicates content across files. And they support pre-warming: the Common Crawl Bucket currently has its pre-warmed CDN enabled for GCP US East, GCP EU West, and AWS EU West. For jobs running in or near one of those regions, this reduces read latency and improves throughput compared to pulling data from a distant region.

For teams already building on the Hugging Face ecosystem, the Bucket also makes integration simpler: the data is reachable with the same hf CLI, huggingface_hub client, and fsspec-compatible tooling used for Models and Datasets, with no separate S3 client or credentials.

Accessing the Common Crawl Bucket

The Common Crawl Bucket lives at huggingface.co/buckets/commoncrawl/commoncrawl. The April 2026 crawl sits under the crawl-data/CC-MAIN-2026-17/ prefix, mirroring the layout used on S3, which is roughly 380 TiB of uncompressed content across some 2.2 billion web pages. WARC, WAT, and WET files, segment lists, robots.txt and non-200 response records, and the URL indexes are all present, just as in the S3 distribution.

The Bucket can be addressed with an hf:// handle. Files can be listed with the hf CLI:

hf buckets list commoncrawl/commoncrawl/crawl-data/CC-MAIN-2026-17

Because Buckets integrate with HfFileSystem, the fsspec-compatible filesystem in huggingface_hub, any fsspec-aware library can read the archive directly via hf:// paths:

from huggingface_hub import hffs

hffs.glob("buckets/commoncrawl/commoncrawl/crawl-data/CC-MAIN-2026-17/**/*.warc.gz")

The archive remains available from the commoncrawl bucket on AWS S3 at s3://commoncrawl/crawl-data/CC-MAIN-2026-17/  and over HTTP at https://data.commoncrawl.org/crawl-data/CC-MAIN-2026-17/. See our Get Started page for details.

We welcome feedback on the Common Crawl Hugging Face Bucket.  Please contact us through our Discord or Google Group.