Publish 3 shards CC-MAIN-2026-08/00699–01769
Browse files- README.md +10 -10
- data/CC-MAIN-2026-08/00699.parquet +3 -0
- data/CC-MAIN-2026-08/01431.parquet +3 -0
- data/CC-MAIN-2026-08/01769.parquet +3 -0
- stats.csv +3 -0
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 **54,
|
| 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,27 +164,27 @@ 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) | ~2.2 TB | ~83 TB | — |
|
| 172 |
| HTML extracted (uncompressed) | 6.6 TB | ~295 TB | — |
|
| 173 |
-
| Packed markdown WARC (.md.warc.gz) | ~
|
| 174 |
-
| Final Parquet (Zstd level 19) | 78.
|
| 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 6.6 TB of uncompressed HTML down to 246.
|
| 177 |
|
| 178 |
-
End to end: ~2.2 TB of raw gzipped WARCs becomes **78.
|
| 179 |
|
| 180 |
### Processing Times
|
| 181 |
|
| 182 |
-
Pipeline timings across
|
| 183 |
|
| 184 |
```
|
| 185 |
-
Download (raw WARC) ████████████████████████ total 253h
|
| 186 |
Convert (HTML → MD) █░░░░░░░░░░░░░░░░░░░░░░░ total 13h 28m 50s avg 17s
|
| 187 |
-
Export (Parquet) ██████░░░░░░░░░░░░░░░░░░ total 65h
|
| 188 |
Publish (HuggingFace) █░░░░░░░░░░░░░░░░░░░░░░░ total 20h 12m 41s avg 25s
|
| 189 |
```
|
| 190 |
|
|
|
|
| 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 **54,881,867 documents across 2832 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 2832 files of CC-MAIN-2026-08 (54,881,867 pages total), projected to the full crawl of 100,000 WARC files.
|
| 168 |
|
| 169 |
+
| Stage | 2832 files (measured) | 100,000 files (projected) | Reduction |
|
| 170 |
|---|---|---|---|
|
| 171 |
| Raw WARC (.warc.gz, downloaded) | ~2.2 TB | ~83 TB | — |
|
| 172 |
| HTML extracted (uncompressed) | 6.6 TB | ~295 TB | — |
|
| 173 |
+
| Packed markdown WARC (.md.warc.gz) | ~116.1 GB | ~3.7 TB | **-98.3%** vs HTML |
|
| 174 |
+
| Final Parquet (Zstd level 19) | 78.3 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 6.6 TB of uncompressed HTML down to 246.9 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: ~2.2 TB of raw gzipped WARCs becomes **78.3 GB of Parquet** — a **96.6% total reduction** — containing 54,881,867 clean markdown documents.
|
| 179 |
|
| 180 |
### Processing Times
|
| 181 |
|
| 182 |
+
Pipeline timings across 2832 shards of CC-MAIN-2026-08:
|
| 183 |
|
| 184 |
```
|
| 185 |
+
Download (raw WARC) ████████████████████████ total 253h 50m 2s avg 5m 22s
|
| 186 |
Convert (HTML → MD) █░░░░░░░░░░░░░░░░░░░░░░░ total 13h 28m 50s avg 17s
|
| 187 |
+
Export (Parquet) ██████░░░░░░░░░░░░░░░░░░ total 65h 35m 42s avg 1m 23s
|
| 188 |
Publish (HuggingFace) █░░░░░░░░░░░░░░░░░░░░░░░ total 20h 12m 41s avg 25s
|
| 189 |
```
|
| 190 |
|
data/CC-MAIN-2026-08/00699.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5d9488f09a030f585f78a7178e4ed956886fe4c16c7a4d4336caa8ac3c7ca92
|
| 3 |
+
size 30460533
|
data/CC-MAIN-2026-08/01431.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47d546fda06707a492063a0a4662be8f31b023d5c26001e205d8343d50145ef8
|
| 3 |
+
size 30409060
|
data/CC-MAIN-2026-08/01769.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:564a01f5bcf962f921226593f358a5b99f96008a7ab0ae41590e24e6e8a0bba4
|
| 3 |
+
size 30735708
|
stats.csv
CHANGED
|
@@ -699,6 +699,7 @@ CC-MAIN-2026-08,695,19488,2590984731,95576288,30442904,2026-03-14T22:56:32Z,463,
|
|
| 699 |
CC-MAIN-2026-08,696,19502,2555585499,92879651,29934508,2026-03-14T23:07:44Z,589,0,87,35
|
| 700 |
CC-MAIN-2026-08,697,19204,2557886871,97097817,30458856,2026-03-14T23:17:53Z,564,0,71,18
|
| 701 |
CC-MAIN-2026-08,698,19403,2562184326,98098610,31598215,2026-03-14T23:33:04Z,817,0,77,18
|
|
|
|
| 702 |
CC-MAIN-2026-08,701,19575,2592915946,93927019,29556184,2026-03-13T11:40:57Z,0,0,30,0
|
| 703 |
CC-MAIN-2026-08,702,19449,2572639558,92293569,29617754,2026-03-13T11:49:10Z,0,432,59,0
|
| 704 |
CC-MAIN-2026-08,703,19592,2602952509,95185029,30715031,2026-03-13T11:56:07Z,0,318,97,0
|
|
@@ -1354,6 +1355,7 @@ CC-MAIN-2026-08,1427,19611,2598124688,93200481,29203999,2026-03-14T22:55:15Z,464
|
|
| 1354 |
CC-MAIN-2026-08,1428,19563,2586097187,92622812,29017944,2026-03-14T23:06:08Z,529,0,124,27
|
| 1355 |
CC-MAIN-2026-08,1429,19688,2579238481,95549411,30031043,2026-03-14T23:16:53Z,513,0,134,18
|
| 1356 |
CC-MAIN-2026-08,1430,19511,2588228556,95881396,30286150,2026-03-14T23:33:04Z,873,0,91,18
|
|
|
|
| 1357 |
CC-MAIN-2026-08,1500,19577,2622278390,97977035,30324006,2026-03-14T08:43:07Z,270,0,65,18
|
| 1358 |
CC-MAIN-2026-08,1501,19446,2575344077,97014418,30588263,2026-03-13T11:40:27Z,0,0,0,0
|
| 1359 |
CC-MAIN-2026-08,1502,19231,2542311614,94124894,30585446,2026-03-13T11:40:27Z,0,0,0,0
|
|
@@ -1540,6 +1542,7 @@ CC-MAIN-2026-08,1765,19497,2581153441,91933784,28624038,2026-03-14T22:55:51Z,553
|
|
| 1540 |
CC-MAIN-2026-08,1766,19490,2562848093,91251121,29029790,2026-03-14T23:07:08Z,618,0,83,14
|
| 1541 |
CC-MAIN-2026-08,1767,19684,2588112599,97702496,30641744,2026-03-14T23:18:49Z,572,0,76,199
|
| 1542 |
CC-MAIN-2026-08,1768,19297,2539185945,89133992,28434898,2026-03-14T23:33:04Z,813,0,78,18
|
|
|
|
| 1543 |
CC-MAIN-2026-08,1801,19437,2573915480,93218254,30047553,2026-03-13T10:00:55Z,409,0,121,0
|
| 1544 |
CC-MAIN-2026-08,1802,19645,2589675164,95814459,30042225,2026-03-13T10:11:53Z,424,0,233,0
|
| 1545 |
CC-MAIN-2026-08,1803,19583,2597232437,94155966,29485837,2026-03-13T10:25:52Z,799,0,38,0
|
|
|
|
| 699 |
CC-MAIN-2026-08,696,19502,2555585499,92879651,29934508,2026-03-14T23:07:44Z,589,0,87,35
|
| 700 |
CC-MAIN-2026-08,697,19204,2557886871,97097817,30458856,2026-03-14T23:17:53Z,564,0,71,18
|
| 701 |
CC-MAIN-2026-08,698,19403,2562184326,98098610,31598215,2026-03-14T23:33:04Z,817,0,77,18
|
| 702 |
+
CC-MAIN-2026-08,699,19651,2604029154,96392340,30460533,2026-03-14T23:43:38Z,582,0,70,0
|
| 703 |
CC-MAIN-2026-08,701,19575,2592915946,93927019,29556184,2026-03-13T11:40:57Z,0,0,30,0
|
| 704 |
CC-MAIN-2026-08,702,19449,2572639558,92293569,29617754,2026-03-13T11:49:10Z,0,432,59,0
|
| 705 |
CC-MAIN-2026-08,703,19592,2602952509,95185029,30715031,2026-03-13T11:56:07Z,0,318,97,0
|
|
|
|
| 1355 |
CC-MAIN-2026-08,1428,19563,2586097187,92622812,29017944,2026-03-14T23:06:08Z,529,0,124,27
|
| 1356 |
CC-MAIN-2026-08,1429,19688,2579238481,95549411,30031043,2026-03-14T23:16:53Z,513,0,134,18
|
| 1357 |
CC-MAIN-2026-08,1430,19511,2588228556,95881396,30286150,2026-03-14T23:33:04Z,873,0,91,18
|
| 1358 |
+
CC-MAIN-2026-08,1431,19560,2574889046,95723789,30409060,2026-03-14T23:43:38Z,546,0,87,0
|
| 1359 |
CC-MAIN-2026-08,1500,19577,2622278390,97977035,30324006,2026-03-14T08:43:07Z,270,0,65,18
|
| 1360 |
CC-MAIN-2026-08,1501,19446,2575344077,97014418,30588263,2026-03-13T11:40:27Z,0,0,0,0
|
| 1361 |
CC-MAIN-2026-08,1502,19231,2542311614,94124894,30585446,2026-03-13T11:40:27Z,0,0,0,0
|
|
|
|
| 1542 |
CC-MAIN-2026-08,1766,19490,2562848093,91251121,29029790,2026-03-14T23:07:08Z,618,0,83,14
|
| 1543 |
CC-MAIN-2026-08,1767,19684,2588112599,97702496,30641744,2026-03-14T23:18:49Z,572,0,76,199
|
| 1544 |
CC-MAIN-2026-08,1768,19297,2539185945,89133992,28434898,2026-03-14T23:33:04Z,813,0,78,18
|
| 1545 |
+
CC-MAIN-2026-08,1769,19601,2626628570,95091507,30735708,2026-03-14T23:43:38Z,570,0,76,0
|
| 1546 |
CC-MAIN-2026-08,1801,19437,2573915480,93218254,30047553,2026-03-13T10:00:55Z,409,0,121,0
|
| 1547 |
CC-MAIN-2026-08,1802,19645,2589675164,95814459,30042225,2026-03-13T10:11:53Z,424,0,233,0
|
| 1548 |
CC-MAIN-2026-08,1803,19583,2597232437,94155966,29485837,2026-03-13T10:25:52Z,799,0,38,0
|