Publish 5 shards CC-MAIN-2026-08/03768–03887
Browse files- README.md +11 -11
- data/CC-MAIN-2026-08/03768.parquet +3 -0
- data/CC-MAIN-2026-08/03815.parquet +3 -0
- data/CC-MAIN-2026-08/03885.parquet +3 -0
- data/CC-MAIN-2026-08/03886.parquet +3 -0
- data/CC-MAIN-2026-08/03887.parquet +3 -0
- stats.csv +10 -5
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 **136,
|
| 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) | ~5.8 TB | ~83 TB | — |
|
| 172 |
| HTML extracted (uncompressed) | 16.4 TB | ~295 TB | — |
|
| 173 |
-
| Packed markdown WARC (.md.warc.gz) | ~287.
|
| 174 |
-
| Final Parquet (Zstd level 19) | 194.
|
| 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 16.4 TB of uncompressed HTML down to 612.
|
| 177 |
|
| 178 |
-
End to end: ~5.8 TB of raw gzipped WARCs becomes **194.
|
| 179 |
|
| 180 |
### Processing Times
|
| 181 |
|
| 182 |
-
Pipeline timings across
|
| 183 |
|
| 184 |
```
|
| 185 |
-
Download (raw WARC) ████████████████████████ total 489h
|
| 186 |
Convert (HTML → MD) █░░░░░░░░░░░░░░░░░░░░░░░ total 17h 27m 50s avg 8s
|
| 187 |
-
Export (Parquet) █████░░░░░░░░░░░░░░░░░░░ total 112h
|
| 188 |
-
Publish (HuggingFace) ██░░░░░░░░░░░░░░░░░░░░░░ total 43h
|
| 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 **136,703,456 documents across 7330 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 7330 files of CC-MAIN-2026-08 (136,703,456 pages total), projected to the full crawl of 100,000 WARC files.
|
| 168 |
|
| 169 |
+
| Stage | 7330 files (measured) | 100,000 files (projected) | Reduction |
|
| 170 |
|---|---|---|---|
|
| 171 |
| Raw WARC (.warc.gz, downloaded) | ~5.8 TB | ~83 TB | — |
|
| 172 |
| HTML extracted (uncompressed) | 16.4 TB | ~295 TB | — |
|
| 173 |
+
| Packed markdown WARC (.md.warc.gz) | ~287.8 GB | ~3.7 TB | **-98.3%** vs HTML |
|
| 174 |
+
| Final Parquet (Zstd level 19) | 194.2 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 16.4 TB of uncompressed HTML down to 612.4 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: ~5.8 TB of raw gzipped WARCs becomes **194.2 GB of Parquet** — a **96.7% total reduction** — containing 136,703,456 clean markdown documents.
|
| 179 |
|
| 180 |
### Processing Times
|
| 181 |
|
| 182 |
+
Pipeline timings across 7330 shards of CC-MAIN-2026-08:
|
| 183 |
|
| 184 |
```
|
| 185 |
+
Download (raw WARC) ████████████████████████ total 489h 34m 18s avg 4m 0s
|
| 186 |
Convert (HTML → MD) █░░░░░░░░░░░░░░░░░░░░░░░ total 17h 27m 50s avg 8s
|
| 187 |
+
Export (Parquet) █████░░░░░░░░░░░░░░░░░░░ total 112h 45m 49s avg 55s
|
| 188 |
+
Publish (HuggingFace) ██░░░░░░░░░░░░░░░░░░░░░░ total 43h 20m 51s avg 21s
|
| 189 |
```
|
| 190 |
|
| 191 |
### Dataset Charts
|
data/CC-MAIN-2026-08/03768.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee796791852556d0333a04c8990a255f36f56d5cf0a2dc5aa11e1838d026138d
|
| 3 |
+
size 29106218
|
data/CC-MAIN-2026-08/03815.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e731320312add5b145e9c8644c5b78b133f5c8a7f5942fb99fd1ea9b9fa598c
|
| 3 |
+
size 29338902
|
data/CC-MAIN-2026-08/03885.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:91e4ee17b93fb0751d8d4714975171c73420d7f9c7147c2fa5fa87970613ead5
|
| 3 |
+
size 28880884
|
data/CC-MAIN-2026-08/03886.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11fb417d8c858632d841c0e60672d2c444dd357b2c37f47ebad88b0f99cfb6c4
|
| 3 |
+
size 30480525
|
data/CC-MAIN-2026-08/03887.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af4a3eec1bd2f45c0f54b271611fabfd66ab1f8bd0b2bbbe89c32c1a134be79a
|
| 3 |
+
size 29610039
|
stats.csv
CHANGED
|
@@ -3768,6 +3768,7 @@ CC-MAIN-2026-08,3764,19644,2617458285,97405723,30323209,2026-03-17T07:01:47Z,107
|
|
| 3768 |
CC-MAIN-2026-08,3765,19432,2556412890,90651281,28805238,2026-03-17T04:56:17Z,178,0,21,54
|
| 3769 |
CC-MAIN-2026-08,3766,19352,2566236222,94248102,29418747,2026-03-17T04:59:47Z,176,0,18,4
|
| 3770 |
CC-MAIN-2026-08,3767,19578,2609898329,89688041,29252769,2026-03-17T05:01:47Z,176,0,20,33
|
|
|
|
| 3771 |
CC-MAIN-2026-08,3769,19591,2565641297,96703518,30655076,2026-03-17T05:05:02Z,180,0,22,24
|
| 3772 |
CC-MAIN-2026-08,3770,19388,2575122398,95375359,30462380,2026-03-17T05:10:47Z,164,0,24,8
|
| 3773 |
CC-MAIN-2026-08,3771,19631,2604525695,91131214,28005821,2026-03-17T05:10:47Z,126,0,23,8
|
|
@@ -3810,6 +3811,7 @@ CC-MAIN-2026-08,3811,19527,2547746607,98518156,31017989,2026-03-17T07:17:02Z,124
|
|
| 3810 |
CC-MAIN-2026-08,3812,19419,2570727708,91280717,29306060,2026-03-17T07:01:47Z,166,0,25,23
|
| 3811 |
CC-MAIN-2026-08,3813,19530,2566347087,91041349,28673971,2026-03-17T05:17:47Z,104,0,29,8
|
| 3812 |
CC-MAIN-2026-08,3814,19471,2588388404,95609519,29769349,2026-03-17T05:19:47Z,109,0,24,11
|
|
|
|
| 3813 |
CC-MAIN-2026-08,3816,19450,2602257308,94180181,28967115,2026-03-17T05:25:17Z,114,0,20,14
|
| 3814 |
CC-MAIN-2026-08,3817,19499,2591655276,97007832,30270190,2026-03-17T05:27:17Z,96,0,57,10
|
| 3815 |
CC-MAIN-2026-08,3818,19739,2670644714,99684024,32757736,2026-03-17T05:29:32Z,114,0,27,38
|
|
@@ -3846,7 +3848,7 @@ CC-MAIN-2026-08,3857,19572,2605718759,94764147,30438669,2026-03-17T07:09:47Z,155
|
|
| 3846 |
CC-MAIN-2026-08,3858,19557,2611361839,95428677,29726773,2026-03-17T07:13:17Z,117,0,26,30
|
| 3847 |
CC-MAIN-2026-08,3859,19663,2601629835,90661267,29135991,2026-03-17T07:13:17Z,109,0,22,30
|
| 3848 |
CC-MAIN-2026-08,3860,19461,2604125434,94307088,30219414,2026-03-17T07:17:02Z,128,0,26,21
|
| 3849 |
-
CC-MAIN-2026-08,3862,19560,2592119723,95290257,29690606,2026-03-17T07:20:02Z,157,0,21,
|
| 3850 |
CC-MAIN-2026-08,3863,19136,2568351093,99368510,32321209,2026-03-17T06:26:02Z,111,0,26,10
|
| 3851 |
CC-MAIN-2026-08,3864,19548,2574110045,95496920,30202016,2026-03-17T06:27:47Z,174,0,20,18
|
| 3852 |
CC-MAIN-2026-08,3865,19410,2544755697,95772161,29378374,2026-03-17T06:33:32Z,196,0,21,10
|
|
@@ -3861,10 +3863,13 @@ CC-MAIN-2026-08,3874,19566,2580367381,96080330,30149239,2026-03-17T06:58:03Z,107
|
|
| 3861 |
CC-MAIN-2026-08,3876,19600,2603702619,90688335,28842750,2026-03-17T07:04:32Z,149,0,24,54
|
| 3862 |
CC-MAIN-2026-08,3877,19448,2601114463,97843372,30394814,2026-03-17T07:13:17Z,100,0,31,30
|
| 3863 |
CC-MAIN-2026-08,3878,19284,2577180857,95961468,29580072,2026-03-17T07:17:02Z,113,0,24,21
|
| 3864 |
-
CC-MAIN-2026-08,3879,19374,2580176599,92012020,29158551,2026-03-17T07:20:02Z,99,0,24,
|
| 3865 |
-
CC-MAIN-2026-08,3881,19659,2660337368,93443290,30080806,2026-03-17T07:20:02Z,174,0,20,
|
| 3866 |
-
CC-MAIN-2026-08,3882,19444,2601372739,95314737,29542013,2026-03-17T07:20:02Z,200,0,31,
|
| 3867 |
-
CC-MAIN-2026-08,3883,19444,2578529119,91797367,29104111,2026-03-17T07:20:02Z,92,0,20,
|
|
|
|
|
|
|
|
|
|
| 3868 |
CC-MAIN-2026-08,5000,19611,2544147305,91933944,29028493,2026-03-13T17:51:21Z,393,0,122,0
|
| 3869 |
CC-MAIN-2026-08,5001,19479,2584193920,98160035,30333909,2026-03-13T17:51:21Z,240,0,274,0
|
| 3870 |
CC-MAIN-2026-08,5002,19469,2581016243,91856903,29042422,2026-03-14T01:06:34Z,622,0,143,18
|
|
|
|
| 3768 |
CC-MAIN-2026-08,3765,19432,2556412890,90651281,28805238,2026-03-17T04:56:17Z,178,0,21,54
|
| 3769 |
CC-MAIN-2026-08,3766,19352,2566236222,94248102,29418747,2026-03-17T04:59:47Z,176,0,18,4
|
| 3770 |
CC-MAIN-2026-08,3767,19578,2609898329,89688041,29252769,2026-03-17T05:01:47Z,176,0,20,33
|
| 3771 |
+
CC-MAIN-2026-08,3768,19580,2549808933,91621008,29106218,2026-03-17T07:23:47Z,116,0,19,0
|
| 3772 |
CC-MAIN-2026-08,3769,19591,2565641297,96703518,30655076,2026-03-17T05:05:02Z,180,0,22,24
|
| 3773 |
CC-MAIN-2026-08,3770,19388,2575122398,95375359,30462380,2026-03-17T05:10:47Z,164,0,24,8
|
| 3774 |
CC-MAIN-2026-08,3771,19631,2604525695,91131214,28005821,2026-03-17T05:10:47Z,126,0,23,8
|
|
|
|
| 3811 |
CC-MAIN-2026-08,3812,19419,2570727708,91280717,29306060,2026-03-17T07:01:47Z,166,0,25,23
|
| 3812 |
CC-MAIN-2026-08,3813,19530,2566347087,91041349,28673971,2026-03-17T05:17:47Z,104,0,29,8
|
| 3813 |
CC-MAIN-2026-08,3814,19471,2588388404,95609519,29769349,2026-03-17T05:19:47Z,109,0,24,11
|
| 3814 |
+
CC-MAIN-2026-08,3815,19472,2601882002,92058268,29338902,2026-03-17T07:23:47Z,131,0,22,0
|
| 3815 |
CC-MAIN-2026-08,3816,19450,2602257308,94180181,28967115,2026-03-17T05:25:17Z,114,0,20,14
|
| 3816 |
CC-MAIN-2026-08,3817,19499,2591655276,97007832,30270190,2026-03-17T05:27:17Z,96,0,57,10
|
| 3817 |
CC-MAIN-2026-08,3818,19739,2670644714,99684024,32757736,2026-03-17T05:29:32Z,114,0,27,38
|
|
|
|
| 3848 |
CC-MAIN-2026-08,3858,19557,2611361839,95428677,29726773,2026-03-17T07:13:17Z,117,0,26,30
|
| 3849 |
CC-MAIN-2026-08,3859,19663,2601629835,90661267,29135991,2026-03-17T07:13:17Z,109,0,22,30
|
| 3850 |
CC-MAIN-2026-08,3860,19461,2604125434,94307088,30219414,2026-03-17T07:17:02Z,128,0,26,21
|
| 3851 |
+
CC-MAIN-2026-08,3862,19560,2592119723,95290257,29690606,2026-03-17T07:20:02Z,157,0,21,25
|
| 3852 |
CC-MAIN-2026-08,3863,19136,2568351093,99368510,32321209,2026-03-17T06:26:02Z,111,0,26,10
|
| 3853 |
CC-MAIN-2026-08,3864,19548,2574110045,95496920,30202016,2026-03-17T06:27:47Z,174,0,20,18
|
| 3854 |
CC-MAIN-2026-08,3865,19410,2544755697,95772161,29378374,2026-03-17T06:33:32Z,196,0,21,10
|
|
|
|
| 3863 |
CC-MAIN-2026-08,3876,19600,2603702619,90688335,28842750,2026-03-17T07:04:32Z,149,0,24,54
|
| 3864 |
CC-MAIN-2026-08,3877,19448,2601114463,97843372,30394814,2026-03-17T07:13:17Z,100,0,31,30
|
| 3865 |
CC-MAIN-2026-08,3878,19284,2577180857,95961468,29580072,2026-03-17T07:17:02Z,113,0,24,21
|
| 3866 |
+
CC-MAIN-2026-08,3879,19374,2580176599,92012020,29158551,2026-03-17T07:20:02Z,99,0,24,25
|
| 3867 |
+
CC-MAIN-2026-08,3881,19659,2660337368,93443290,30080806,2026-03-17T07:20:02Z,174,0,20,25
|
| 3868 |
+
CC-MAIN-2026-08,3882,19444,2601372739,95314737,29542013,2026-03-17T07:20:02Z,200,0,31,25
|
| 3869 |
+
CC-MAIN-2026-08,3883,19444,2578529119,91797367,29104111,2026-03-17T07:20:02Z,92,0,20,25
|
| 3870 |
+
CC-MAIN-2026-08,3885,19490,2598041142,92499033,28880884,2026-03-17T07:23:47Z,195,0,21,0
|
| 3871 |
+
CC-MAIN-2026-08,3886,19573,2588278452,96961196,30480525,2026-03-17T07:23:47Z,95,0,19,0
|
| 3872 |
+
CC-MAIN-2026-08,3887,19488,2580251210,92805330,29610039,2026-03-17T07:23:47Z,98,0,18,0
|
| 3873 |
CC-MAIN-2026-08,5000,19611,2544147305,91933944,29028493,2026-03-13T17:51:21Z,393,0,122,0
|
| 3874 |
CC-MAIN-2026-08,5001,19479,2584193920,98160035,30333909,2026-03-13T17:51:21Z,240,0,274,0
|
| 3875 |
CC-MAIN-2026-08,5002,19469,2581016243,91856903,29042422,2026-03-14T01:06:34Z,622,0,143,18
|