Publish shard CC-MAIN-2026-08/00383
Browse files- README.md +9 -9
- data/CC-MAIN-2026-08/00383.parquet +3 -0
- stats.csv +3 -2
README.md
CHANGED
|
@@ -32,7 +32,7 @@ configs:
|
|
| 32 |
|
| 33 |
Open Index is a large-scale web text dataset built from [Common Crawl](https://commoncrawl.org). Every page goes through a pipeline that extracts the main content from raw HTML, converts it to clean Markdown using [trafilatura](https://github.com/adbar/trafilatura), and packages the result into Parquet files with full WARC metadata preserved.
|
| 34 |
|
| 35 |
-
The dataset currently includes crawl **CC-MAIN-2026-08** with **25,
|
| 36 |
|
| 37 |
Open Index is released under the **Open Data Commons Attribution License (ODC-By) v1.0**, the same license used by Common Crawl.
|
| 38 |
|
|
@@ -164,28 +164,28 @@ Empty conversions (pages where trafilatura could not extract meaningful content)
|
|
| 164 |
|
| 165 |
### Compression Ratios
|
| 166 |
|
| 167 |
-
Numbers below are actual measurements summed across all
|
| 168 |
|
| 169 |
-
| Stage |
|
| 170 |
|---|---|---|---|
|
| 171 |
| Raw WARC (.warc.gz, downloaded) | ~1.0 TB | ~83 TB | — |
|
| 172 |
| HTML extracted (uncompressed) | 3.0 TB | ~295 TB | — |
|
| 173 |
| Packed markdown WARC (.md.warc.gz) | ~53.5 GB | ~3.7 TB | **-98.3%** vs HTML |
|
| 174 |
| Final Parquet (Zstd level 19) | 36.1 GB | ~2.9 TB | **-32.5%** vs packed WARC |
|
| 175 |
|
| 176 |
-
The big win is the HTML → Markdown step: trafilatura strips all tags, scripts, styles, navigation, and ads, keeping only the main content. This cuts 3.0 TB of uncompressed HTML down to 113.
|
| 177 |
|
| 178 |
-
End to end: ~1.0 TB of raw gzipped WARCs becomes **36.1 GB of Parquet** — a **96.6% total reduction** — containing 25,
|
| 179 |
|
| 180 |
### Processing Times
|
| 181 |
|
| 182 |
-
Pipeline timings across
|
| 183 |
|
| 184 |
```
|
| 185 |
-
Download (raw WARC) ████████████████████████ total 100h
|
| 186 |
Convert (HTML → MD) █░░░░░░░░░░░░░░░░░░░░░░░ total 6h 51m 14s avg 18s
|
| 187 |
-
Export (Parquet) █████░░░░░░░░░░░░░░░░░░░ total 24h
|
| 188 |
-
Publish (HuggingFace) █░░░░░░░░░░░░░░░░░░░░░░░ total 8h
|
| 189 |
```
|
| 190 |
|
| 191 |
### Dataset Charts
|
|
|
|
| 32 |
|
| 33 |
Open Index is a large-scale web text dataset built from [Common Crawl](https://commoncrawl.org). Every page goes through a pipeline that extracts the main content from raw HTML, converts it to clean Markdown using [trafilatura](https://github.com/adbar/trafilatura), and packages the result into Parquet files with full WARC metadata preserved.
|
| 34 |
|
| 35 |
+
The dataset currently includes crawl **CC-MAIN-2026-08** with **25,228,420 documents across 1305 shards**. We plan to add more snapshots over time.
|
| 36 |
|
| 37 |
Open Index is released under the **Open Data Commons Attribution License (ODC-By) v1.0**, the same license used by Common Crawl.
|
| 38 |
|
|
|
|
| 164 |
|
| 165 |
### Compression Ratios
|
| 166 |
|
| 167 |
+
Numbers below are actual measurements summed across all 1305 files of CC-MAIN-2026-08 (25,228,420 pages total), projected to the full crawl of 100,000 WARC files.
|
| 168 |
|
| 169 |
+
| Stage | 1305 files (measured) | 100,000 files (projected) | Reduction |
|
| 170 |
|---|---|---|---|
|
| 171 |
| Raw WARC (.warc.gz, downloaded) | ~1.0 TB | ~83 TB | — |
|
| 172 |
| HTML extracted (uncompressed) | 3.0 TB | ~295 TB | — |
|
| 173 |
| Packed markdown WARC (.md.warc.gz) | ~53.5 GB | ~3.7 TB | **-98.3%** vs HTML |
|
| 174 |
| Final Parquet (Zstd level 19) | 36.1 GB | ~2.9 TB | **-32.5%** vs packed WARC |
|
| 175 |
|
| 176 |
+
The big win is the HTML → Markdown step: trafilatura strips all tags, scripts, styles, navigation, and ads, keeping only the main content. This cuts 3.0 TB of uncompressed HTML down to 113.8 GB of markdown — a **98.3% reduction** — before any file-level compression is applied. Parquet with Zstd level 19 then compresses the markdown a further 68.3%.
|
| 177 |
|
| 178 |
+
End to end: ~1.0 TB of raw gzipped WARCs becomes **36.1 GB of Parquet** — a **96.6% total reduction** — containing 25,228,420 clean markdown documents.
|
| 179 |
|
| 180 |
### Processing Times
|
| 181 |
|
| 182 |
+
Pipeline timings across 1305 shards of CC-MAIN-2026-08:
|
| 183 |
|
| 184 |
```
|
| 185 |
+
Download (raw WARC) ████████████████████████ total 100h 38m 20s avg 4m 37s
|
| 186 |
Convert (HTML → MD) █░░░░░░░░░░░░░░░░░░░░░░░ total 6h 51m 14s avg 18s
|
| 187 |
+
Export (Parquet) █████░░░░░░░░░░░░░░░░░░░ total 24h 29m 38s avg 1m 7s
|
| 188 |
+
Publish (HuggingFace) █░░░░░░░░░░░░░░░░░░░░░░░ total 8h 7m 20s avg 22s
|
| 189 |
```
|
| 190 |
|
| 191 |
### Dataset Charts
|
data/CC-MAIN-2026-08/00383.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c84f77bcbebd9310982b68c502fe4500d32c3f5e20da1877cb9bb4a62309c47
|
| 3 |
+
size 30256523
|
stats.csv
CHANGED
|
@@ -355,6 +355,7 @@ CC-MAIN-2026-08,379,19426,2552876640,91839182,29849311,2026-03-14T02:34:20Z,420,
|
|
| 355 |
CC-MAIN-2026-08,380,19347,2574961073,89057601,28624484,2026-03-14T02:46:25Z,441,0,198,14
|
| 356 |
CC-MAIN-2026-08,381,19466,2581910052,99252781,30527719,2026-03-14T02:55:05Z,492,0,113,16
|
| 357 |
CC-MAIN-2026-08,382,19506,2559479883,92929783,29749683,2026-03-14T03:07:32Z,642,0,92,27
|
|
|
|
| 358 |
CC-MAIN-2026-08,401,19441,2586676962,94334130,29618260,2026-03-13T11:41:00Z,0,0,33,0
|
| 359 |
CC-MAIN-2026-08,402,19446,2552785517,96654791,30560442,2026-03-13T11:49:21Z,0,443,57,0
|
| 360 |
CC-MAIN-2026-08,403,19320,2579048144,91406292,29341198,2026-03-13T11:56:46Z,0,414,29,0
|
|
@@ -602,7 +603,7 @@ CC-MAIN-2026-08,800,19353,2574122589,98621234,30172589,2026-03-14T02:41:05Z,458,
|
|
| 602 |
CC-MAIN-2026-08,801,19437,2573915480,93218254,30052830,2026-03-14T02:44:35Z,0,0,212,26
|
| 603 |
CC-MAIN-2026-08,802,19341,2577633407,95734752,30471396,2026-03-14T02:55:05Z,0,511,108,16
|
| 604 |
CC-MAIN-2026-08,803,19536,2584124135,95211600,29642191,2026-03-14T03:06:50Z,0,539,163,11
|
| 605 |
-
CC-MAIN-2026-08,804,19533,2600701066,98156820,30469294,2026-03-14T03:16:50Z,0,491,114,
|
| 606 |
CC-MAIN-2026-08,851,19575,2612873485,97000364,30911294,2026-03-13T06:41:39Z,163,0,37,204
|
| 607 |
CC-MAIN-2026-08,852,19334,2546015208,94959847,30205044,2026-03-13T06:45:52Z,183,0,57,11
|
| 608 |
CC-MAIN-2026-08,853,19694,2567973975,95901932,30303494,2026-03-13T06:50:12Z,150,0,28,80
|
|
@@ -734,7 +735,7 @@ CC-MAIN-2026-08,1060,19582,2584255456,95832082,29431896,2026-03-14T02:35:20Z,582
|
|
| 734 |
CC-MAIN-2026-08,1061,19382,2551362783,90217446,28361429,2026-03-14T02:47:02Z,557,0,125,14
|
| 735 |
CC-MAIN-2026-08,1062,19471,2575193105,94036307,29228618,2026-03-14T02:55:44Z,474,0,56,92
|
| 736 |
CC-MAIN-2026-08,1063,19557,2587782329,94279704,29174136,2026-03-14T03:07:32Z,654,0,59,27
|
| 737 |
-
CC-MAIN-2026-08,1064,19743,2608994155,92635672,29768838,2026-03-14T03:16:50Z,476,0,91,
|
| 738 |
CC-MAIN-2026-08,1101,19721,2641197765,95719568,30240239,2026-03-13T09:59:33Z,564,0,296,0
|
| 739 |
CC-MAIN-2026-08,1102,19562,2608129691,99280759,31748974,2026-03-13T10:28:07Z,1518,0,191,0
|
| 740 |
CC-MAIN-2026-08,1103,19270,2517580674,89253461,28361470,2026-03-13T10:55:39Z,1380,0,268,0
|
|
|
|
| 355 |
CC-MAIN-2026-08,380,19347,2574961073,89057601,28624484,2026-03-14T02:46:25Z,441,0,198,14
|
| 356 |
CC-MAIN-2026-08,381,19466,2581910052,99252781,30527719,2026-03-14T02:55:05Z,492,0,113,16
|
| 357 |
CC-MAIN-2026-08,382,19506,2559479883,92929783,29749683,2026-03-14T03:07:32Z,642,0,92,27
|
| 358 |
+
CC-MAIN-2026-08,383,19480,2585608034,96499906,30256523,2026-03-14T03:17:23Z,491,0,92,0
|
| 359 |
CC-MAIN-2026-08,401,19441,2586676962,94334130,29618260,2026-03-13T11:41:00Z,0,0,33,0
|
| 360 |
CC-MAIN-2026-08,402,19446,2552785517,96654791,30560442,2026-03-13T11:49:21Z,0,443,57,0
|
| 361 |
CC-MAIN-2026-08,403,19320,2579048144,91406292,29341198,2026-03-13T11:56:46Z,0,414,29,0
|
|
|
|
| 603 |
CC-MAIN-2026-08,801,19437,2573915480,93218254,30052830,2026-03-14T02:44:35Z,0,0,212,26
|
| 604 |
CC-MAIN-2026-08,802,19341,2577633407,95734752,30471396,2026-03-14T02:55:05Z,0,511,108,16
|
| 605 |
CC-MAIN-2026-08,803,19536,2584124135,95211600,29642191,2026-03-14T03:06:50Z,0,539,163,11
|
| 606 |
+
CC-MAIN-2026-08,804,19533,2600701066,98156820,30469294,2026-03-14T03:16:50Z,0,491,114,14
|
| 607 |
CC-MAIN-2026-08,851,19575,2612873485,97000364,30911294,2026-03-13T06:41:39Z,163,0,37,204
|
| 608 |
CC-MAIN-2026-08,852,19334,2546015208,94959847,30205044,2026-03-13T06:45:52Z,183,0,57,11
|
| 609 |
CC-MAIN-2026-08,853,19694,2567973975,95901932,30303494,2026-03-13T06:50:12Z,150,0,28,80
|
|
|
|
| 735 |
CC-MAIN-2026-08,1061,19382,2551362783,90217446,28361429,2026-03-14T02:47:02Z,557,0,125,14
|
| 736 |
CC-MAIN-2026-08,1062,19471,2575193105,94036307,29228618,2026-03-14T02:55:44Z,474,0,56,92
|
| 737 |
CC-MAIN-2026-08,1063,19557,2587782329,94279704,29174136,2026-03-14T03:07:32Z,654,0,59,27
|
| 738 |
+
CC-MAIN-2026-08,1064,19743,2608994155,92635672,29768838,2026-03-14T03:16:50Z,476,0,91,14
|
| 739 |
CC-MAIN-2026-08,1101,19721,2641197765,95719568,30240239,2026-03-13T09:59:33Z,564,0,296,0
|
| 740 |
CC-MAIN-2026-08,1102,19562,2608129691,99280759,31748974,2026-03-13T10:28:07Z,1518,0,191,0
|
| 741 |
CC-MAIN-2026-08,1103,19270,2517580674,89253461,28361470,2026-03-13T10:55:39Z,1380,0,268,0
|