Publish shard CC-MAIN-2026-08/06160
Browse files- README.md +9 -9
- data/CC-MAIN-2026-08/06160.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 **48,
|
| 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) | ~2.0 TB | ~83 TB | — |
|
| 172 |
| HTML extracted (uncompressed) | 5.9 TB | ~295 TB | — |
|
| 173 |
| Packed markdown WARC (.md.warc.gz) | ~103.2 GB | ~3.7 TB | **-98.3%** vs HTML |
|
| 174 |
| Final Parquet (Zstd level 19) | 69.6 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 5.9 TB of uncompressed HTML down to 219.
|
| 177 |
|
| 178 |
-
End to end: ~2.0 TB of raw gzipped WARCs becomes **69.6 GB of Parquet** — a **96.6% total reduction** — containing 48,
|
| 179 |
|
| 180 |
### Processing Times
|
| 181 |
|
| 182 |
-
Pipeline timings across
|
| 183 |
|
| 184 |
```
|
| 185 |
-
Download (raw WARC) ████████████████████████ total 217h
|
| 186 |
Convert (HTML → MD) █░░░░░░░░░░░░░░░░░░░░░░░ total 12h 57m 19s avg 18s
|
| 187 |
-
Export (Parquet) ██████░░░░░░░░░░░░░░░░░░ total 56h
|
| 188 |
-
Publish (HuggingFace) ██░░░░░░░░░░░░░░░░░░░░░░ total 19h
|
| 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 **48,833,959 documents across 2520 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 2520 files of CC-MAIN-2026-08 (48,833,959 pages total), projected to the full crawl of 100,000 WARC files.
|
| 168 |
|
| 169 |
+
| Stage | 2520 files (measured) | 100,000 files (projected) | Reduction |
|
| 170 |
|---|---|---|---|
|
| 171 |
| Raw WARC (.warc.gz, downloaded) | ~2.0 TB | ~83 TB | — |
|
| 172 |
| HTML extracted (uncompressed) | 5.9 TB | ~295 TB | — |
|
| 173 |
| Packed markdown WARC (.md.warc.gz) | ~103.2 GB | ~3.7 TB | **-98.3%** vs HTML |
|
| 174 |
| Final Parquet (Zstd level 19) | 69.6 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 5.9 TB of uncompressed HTML down to 219.7 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.0 TB of raw gzipped WARCs becomes **69.6 GB of Parquet** — a **96.6% total reduction** — containing 48,833,959 clean markdown documents.
|
| 179 |
|
| 180 |
### Processing Times
|
| 181 |
|
| 182 |
+
Pipeline timings across 2520 shards of CC-MAIN-2026-08:
|
| 183 |
|
| 184 |
```
|
| 185 |
+
Download (raw WARC) ████████████████████████ total 217h 37m 49s avg 5m 10s
|
| 186 |
Convert (HTML → MD) █░░░░░░░░░░░░░░░░░░░░░░░ total 12h 57m 19s avg 18s
|
| 187 |
+
Export (Parquet) ██████░░░░░░░░░░░░░░░░░░ total 56h 9m 36s avg 1m 20s
|
| 188 |
+
Publish (HuggingFace) ██░░░░░░░░░░░░░░░░░░░░░░ total 19h 8m 24s avg 27s
|
| 189 |
```
|
| 190 |
|
| 191 |
### Dataset Charts
|
data/CC-MAIN-2026-08/06160.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6165a368f0596ac4332760af5b6e80b7d121e9305d36ecd159cb855b20cc0f0b
|
| 3 |
+
size 28260533
|
stats.csv
CHANGED
|
@@ -1674,7 +1674,7 @@ CC-MAIN-2026-08,5174,19268,2538809895,93428448,29617518,2026-03-14T16:50:24Z,214
|
|
| 1674 |
CC-MAIN-2026-08,5175,19487,2589987512,97360014,29935287,2026-03-14T16:55:13Z,235,0,70,39
|
| 1675 |
CC-MAIN-2026-08,5176,19357,2545788301,92111757,29486528,2026-03-14T16:59:11Z,213,0,76,20
|
| 1676 |
CC-MAIN-2026-08,5177,19459,2567873093,90620270,28856616,2026-03-14T17:02:48Z,224,0,55,67
|
| 1677 |
-
CC-MAIN-2026-08,5178,19545,2605531439,93890256,29444387,2026-03-14T17:07:21Z,234,0,38,
|
| 1678 |
CC-MAIN-2026-08,5243,19893,2626328731,92220655,29208053,2026-03-14T01:06:34Z,191,0,29,18
|
| 1679 |
CC-MAIN-2026-08,5244,19395,2572365544,91755759,29356531,2026-03-14T01:19:12Z,222,0,24,0
|
| 1680 |
CC-MAIN-2026-08,5245,19207,2511351197,90003358,28938970,2026-03-14T01:19:12Z,193,0,22,0
|
|
@@ -2361,6 +2361,7 @@ CC-MAIN-2026-08,6156,19439,2598072724,92281062,28908011,2026-03-14T16:50:24Z,230
|
|
| 2361 |
CC-MAIN-2026-08,6157,19623,2617863218,90094382,29454735,2026-03-14T16:55:13Z,224,0,80,39
|
| 2362 |
CC-MAIN-2026-08,6158,19638,2623537896,92701477,29359245,2026-03-14T16:59:11Z,232,0,87,20
|
| 2363 |
CC-MAIN-2026-08,6159,19291,2561228706,89317858,28275692,2026-03-14T17:03:56Z,214,0,81,13
|
|
|
|
| 2364 |
CC-MAIN-2026-08,6250,19502,2594302344,89411296,28384540,2026-03-13T17:51:21Z,406,0,120,0
|
| 2365 |
CC-MAIN-2026-08,6251,19394,2555453090,92793633,28885378,2026-03-14T01:06:36Z,709,0,233,18
|
| 2366 |
CC-MAIN-2026-08,6252,19389,2566928631,91567909,28780284,2026-03-14T01:06:36Z,515,0,174,18
|
|
@@ -2518,4 +2519,4 @@ CC-MAIN-2026-08,6403,19421,2557349182,89123730,29345645,2026-03-14T16:50:24Z,213
|
|
| 2518 |
CC-MAIN-2026-08,6404,19504,2611166640,97269968,30272867,2026-03-14T16:55:13Z,211,0,64,39
|
| 2519 |
CC-MAIN-2026-08,6405,19226,2541023824,96084202,30471499,2026-03-14T16:59:11Z,213,0,67,20
|
| 2520 |
CC-MAIN-2026-08,6406,19384,2542661384,94780678,30835494,2026-03-14T17:01:29Z,249,0,60,28
|
| 2521 |
-
CC-MAIN-2026-08,6407,19372,2588362401,88540285,28499419,2026-03-14T17:07:21Z,267,0,56,
|
|
|
|
| 1674 |
CC-MAIN-2026-08,5175,19487,2589987512,97360014,29935287,2026-03-14T16:55:13Z,235,0,70,39
|
| 1675 |
CC-MAIN-2026-08,5176,19357,2545788301,92111757,29486528,2026-03-14T16:59:11Z,213,0,76,20
|
| 1676 |
CC-MAIN-2026-08,5177,19459,2567873093,90620270,28856616,2026-03-14T17:02:48Z,224,0,55,67
|
| 1677 |
+
CC-MAIN-2026-08,5178,19545,2605531439,93890256,29444387,2026-03-14T17:07:21Z,234,0,38,53
|
| 1678 |
CC-MAIN-2026-08,5243,19893,2626328731,92220655,29208053,2026-03-14T01:06:34Z,191,0,29,18
|
| 1679 |
CC-MAIN-2026-08,5244,19395,2572365544,91755759,29356531,2026-03-14T01:19:12Z,222,0,24,0
|
| 1680 |
CC-MAIN-2026-08,5245,19207,2511351197,90003358,28938970,2026-03-14T01:19:12Z,193,0,22,0
|
|
|
|
| 2361 |
CC-MAIN-2026-08,6157,19623,2617863218,90094382,29454735,2026-03-14T16:55:13Z,224,0,80,39
|
| 2362 |
CC-MAIN-2026-08,6158,19638,2623537896,92701477,29359245,2026-03-14T16:59:11Z,232,0,87,20
|
| 2363 |
CC-MAIN-2026-08,6159,19291,2561228706,89317858,28275692,2026-03-14T17:03:56Z,214,0,81,13
|
| 2364 |
+
CC-MAIN-2026-08,6160,19407,2541135298,89309847,28260533,2026-03-14T17:09:09Z,193,0,72,0
|
| 2365 |
CC-MAIN-2026-08,6250,19502,2594302344,89411296,28384540,2026-03-13T17:51:21Z,406,0,120,0
|
| 2366 |
CC-MAIN-2026-08,6251,19394,2555453090,92793633,28885378,2026-03-14T01:06:36Z,709,0,233,18
|
| 2367 |
CC-MAIN-2026-08,6252,19389,2566928631,91567909,28780284,2026-03-14T01:06:36Z,515,0,174,18
|
|
|
|
| 2519 |
CC-MAIN-2026-08,6404,19504,2611166640,97269968,30272867,2026-03-14T16:55:13Z,211,0,64,39
|
| 2520 |
CC-MAIN-2026-08,6405,19226,2541023824,96084202,30471499,2026-03-14T16:59:11Z,213,0,67,20
|
| 2521 |
CC-MAIN-2026-08,6406,19384,2542661384,94780678,30835494,2026-03-14T17:01:29Z,249,0,60,28
|
| 2522 |
+
CC-MAIN-2026-08,6407,19372,2588362401,88540285,28499419,2026-03-14T17:07:21Z,267,0,56,53
|