Add 2014-09-12 — 385.8K events, 11 files
Browse files- README.md +4 -4
- data/commit_comments/2014/09/12.parquet +3 -0
- data/creates/2014/09/12.parquet +3 -0
- data/deletes/2014/09/12.parquet +3 -0
- data/forks/2014/09/12.parquet +3 -0
- data/issue_comments/2014/09/12.parquet +3 -0
- data/issues/2014/09/12.parquet +3 -0
- data/public_events/2014/09/12.parquet +3 -0
- data/pull_requests/2014/09/12.parquet +3 -0
- data/pushes/2014/09/12.parquet +3 -0
- data/stars/2014/09/12.parquet +3 -0
- data/wiki_pages/2014/09/12.parquet +3 -0
- stats.csv +13 -13
README.md
CHANGED
|
@@ -63,7 +63,7 @@ This dataset contains every public event on GitHub: every push, pull request, is
|
|
| 63 |
|
| 64 |
The archive currently spans from **2011-02-12** to **2015-01-03** (1,288 days), totaling **217,971,998 events** across 16 fully structured Parquet tables. New events are fetched directly from the GitHub Events API every few seconds and committed as 5-minute Parquet blocks through an automated live pipeline, so the dataset stays current with GitHub itself.
|
| 65 |
|
| 66 |
-
We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 67.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.
|
| 67 |
|
| 68 |
The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
|
| 69 |
|
|
@@ -71,7 +71,7 @@ The underlying data comes from [GH Archive](https://www.gharchive.org/), created
|
|
| 71 |
|
| 72 |
Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
|
| 73 |
|
| 74 |
-
**2026-03-28** — 2,
|
| 75 |
|
| 76 |
```
|
| 77 |
00:00 ████████████████████████░░░░░░ 235.4K
|
|
@@ -86,7 +86,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
|
|
| 86 |
09:00 ██████████████████████████████ 284.7K
|
| 87 |
10:00 ███████████████████████████░░░ 257.5K
|
| 88 |
11:00 ████████████████████████████░░ 267.1K
|
| 89 |
-
12:00 ███████████████░░░░░░░░░░░░
|
| 90 |
13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
|
| 91 |
14:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
|
| 92 |
15:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
|
|
@@ -144,7 +144,7 @@ duckdb.sql("""
|
|
| 144 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 145 |
| 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
|
| 146 |
| 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
|
| 147 |
-
| 2013 | 353 | 76,074,924 | 215,509 | 23.1 GB | 5.4 GB |
|
| 148 |
| 2014 | 244 | 80,815,225 | 331,209 | 28.9 GB | 7.4 GB | 2h42m | 16h27m | 3h45m |
|
| 149 |
| 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
|
| 150 |
|
|
|
|
| 63 |
|
| 64 |
The archive currently spans from **2011-02-12** to **2015-01-03** (1,288 days), totaling **217,971,998 events** across 16 fully structured Parquet tables. New events are fetched directly from the GitHub Events API every few seconds and committed as 5-minute Parquet blocks through an automated live pipeline, so the dataset stays current with GitHub itself.
|
| 65 |
|
| 66 |
+
We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 67.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.1 GB of Zstd-compressed Parquet. Every nested JSON field is expanded into typed columns — no JSON parsing needed downstream. The data is partitioned as `data/TABLE/YYYY/MM/DD.parquet`, making it straightforward to query with DuckDB, load with the `datasets` library, or process with any tool that reads Parquet.
|
| 67 |
|
| 68 |
The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
|
| 69 |
|
|
|
|
| 71 |
|
| 72 |
Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
|
| 73 |
|
| 74 |
+
**2026-03-28** — 2,938,769 events in 3857 blocks
|
| 75 |
|
| 76 |
```
|
| 77 |
00:00 ████████████████████████░░░░░░ 235.4K
|
|
|
|
| 86 |
09:00 ██████████████████████████████ 284.7K
|
| 87 |
10:00 ███████████████████████████░░░ 257.5K
|
| 88 |
11:00 ████████████████████████████░░ 267.1K
|
| 89 |
+
12:00 ██████████████████░░░░░░░░░░░░ 177.4K
|
| 90 |
13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
|
| 91 |
14:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
|
| 92 |
15:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
|
|
|
|
| 144 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 145 |
| 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
|
| 146 |
| 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
|
| 147 |
+
| 2013 | 353 | 76,074,924 | 215,509 | 23.1 GB | 5.4 GB | 2h59m | 9h28m | 3h31m |
|
| 148 |
| 2014 | 244 | 80,815,225 | 331,209 | 28.9 GB | 7.4 GB | 2h42m | 16h27m | 3h45m |
|
| 149 |
| 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
|
| 150 |
|
data/commit_comments/2014/09/12.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83f3daa40d60b7517aad07773d46d55acc32f553a30d3ec5d84f62e062a59c7c
|
| 3 |
+
size 98811
|
data/creates/2014/09/12.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea9b65fa6627f476f4a37d8eda6f0aaed86e113f88b1b0e46411c1b156141fce
|
| 3 |
+
size 2709340
|
data/deletes/2014/09/12.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:695e75198b1811ec3fcca1d098b244c87abd711c58f36249b9cc5ec7e50daa75
|
| 3 |
+
size 191967
|
data/forks/2014/09/12.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:770e89b12f4eb309b207fb2e2259712baa26dca86d03e925984961b93272457f
|
| 3 |
+
size 400836
|
data/issue_comments/2014/09/12.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2dd002af9a4ffab7544a889fa92b10fa096cf7ec157a1ac0510a201226c914a5
|
| 3 |
+
size 837508
|
data/issues/2014/09/12.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25be0e61fd9f3ee0368576a4cc62b07030b51a5489634a780948885873f538cf
|
| 3 |
+
size 481345
|
data/public_events/2014/09/12.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f7ecc4cb7d8d891e98b923946c355ffc159fc9ef1ae7ecf7b8d0ef88ddcdde4
|
| 3 |
+
size 13983
|
data/pull_requests/2014/09/12.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c0584e0099775931451967c536968bd523c695d66c9abadda5a5f5ac510cde1
|
| 3 |
+
size 3168719
|
data/pushes/2014/09/12.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30f47a7089b7a69418dabcaa2d8b7a964d97c61f8298248a0e786d94eb5e34af
|
| 3 |
+
size 30669518
|
data/stars/2014/09/12.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58a3319a6a27356e3bade55ae13577b93c4ad7d9fa32a82efdd663e2176ed874
|
| 3 |
+
size 1554240
|
data/wiki_pages/2014/09/12.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1632330fd5a36e6c51872be5d9e033f51785b4ce27123364dfcb8a0fd869d71
|
| 3 |
+
size 313322
|
stats.csv
CHANGED
|
@@ -783,20 +783,20 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 783 |
2013-04-03,227314,1727,112590,13328,22506,9066,0,2290,22965,8692,25908,1837,0,2094,4101,0,210,0,74490637,50.1,985388,15.4,50.1,4.1
|
| 784 |
2013-04-04,221301,1835,112315,12683,21058,8888,0,1720,20827,8096,25669,1878,0,2323,3804,0,205,0,72773418,42.2,921144,25.1,42.2,4.1
|
| 785 |
2013-04-05,205743,1402,106550,11503,19054,8144,0,1662,18955,7515,23338,1784,0,2010,3652,0,174,0,72094927,39.9,844588,24.8,39.9,4.1
|
| 786 |
-
2013-04-06,156761,1002,83029,10562,11252,4956,0,815,15534,6205,18184,1120,0,1275,2715,0,112,0,47760471,28.9,714952,27.4,28.9,
|
| 787 |
-
2013-04-07,175194,1068,94924,9328,13745,5409,0,949,17305,6368,19984,1562,0,1409,2986,0,157,0,54492998,29.6,775371,7.0,29.6,
|
| 788 |
-
2013-04-08,235253,1769,120960,12471,21932,9320,0,2069,22517,9187,26582,2069,0,2445,3733,0,199,0,77297494,47.9,991725,32.7,47.9,
|
| 789 |
-
2013-04-09,238395,1739,119813,12632,22693,9508,0,2178,23378,9572,28223,1971,0,2516,3945,0,227,0,77510004,46.7,1007798,36.5,46.7,
|
| 790 |
-
2013-04-10,234908,1695,119697,12812,21974,9422,0,2518,22691,9020,26112,1922,0,2212,4619,0,214,0,76725905,44.4,1060885,12.2,44.4,
|
| 791 |
-
2013-04-11,229728,1656,117153,11983,21458,9248,0,2385,22128,8754,26198,2016,0,2193,4375,0,181,0,75685271,44.3,983348,18.1,44.3,
|
| 792 |
-
2013-04-12,213058,1527,108192,11738,19637,8623,0,2360,20417,7863,24341,2612,0,1978,3608,0,162,0,70771713,38.2,901733,6.5,38.2,
|
| 793 |
-
2013-04-13,148504,1075,77963,9712,10692,4483,0,784,14216,5356,18911,1284,0,1099,2795,0,134,0,46046787,
|
| 794 |
-
2013-04-14,161316,993,86696,8158,12444,4912,0,918,15902,5816,19521,1315,0,1319,3156,0,166,0,49784072,
|
| 795 |
-
2013-04-15,227181,1865,114752,12275,21603,8945,0,2275,22403,8455,26554,1930,0,2060,3840,0,224,0,74401440,
|
| 796 |
-
2013-04-16,232699,1678,118726,13488,20548,9017,0,2530,22666,9310,26467,1904,0,2232,3915,0,218,0,75962884,
|
| 797 |
2013-04-17,240245,1656,124922,12578,21276,9230,0,2254,22446,8810,28839,2042,0,2187,3812,0,193,0,83081773,177.6,25739398,35.8,177.6,90.7
|
| 798 |
-
2013-04-18,255041,1554,124586,17199,35749,8964,0,2737,21125,8850,26204,2023,0,2093,3760,0,197,0,85950020,
|
| 799 |
-
2013-04-19,221319,1478,107535,15627,30635,7677,0,1802,19319,7506,22631,1783,0,1902,3231,0,193,0,75983370,
|
| 800 |
2013-04-20,156666,1145,88783,7403,10821,4678,0,775,14823,5511,17748,1076,0,1115,2680,0,108,0,57613908,107.1,18401427,27.4,107.1,81.4
|
| 801 |
2013-04-21,179841,1039,93048,9875,22566,5736,0,1251,15470,6018,19127,1251,0,1258,3081,0,121,0,54191410,103.7,16935367,30.4,103.7,45.5
|
| 802 |
2013-04-22,252181,1804,121711,19095,32779,9635,0,2486,22101,8747,25861,1994,0,2154,3651,0,163,0,79403531,149.6,24159472,31.7,149.6,58.8
|
|
|
|
| 783 |
2013-04-03,227314,1727,112590,13328,22506,9066,0,2290,22965,8692,25908,1837,0,2094,4101,0,210,0,74490637,50.1,985388,15.4,50.1,4.1
|
| 784 |
2013-04-04,221301,1835,112315,12683,21058,8888,0,1720,20827,8096,25669,1878,0,2323,3804,0,205,0,72773418,42.2,921144,25.1,42.2,4.1
|
| 785 |
2013-04-05,205743,1402,106550,11503,19054,8144,0,1662,18955,7515,23338,1784,0,2010,3652,0,174,0,72094927,39.9,844588,24.8,39.9,4.1
|
| 786 |
+
2013-04-06,156761,1002,83029,10562,11252,4956,0,815,15534,6205,18184,1120,0,1275,2715,0,112,0,47760471,28.9,714952,27.4,28.9,5.2
|
| 787 |
+
2013-04-07,175194,1068,94924,9328,13745,5409,0,949,17305,6368,19984,1562,0,1409,2986,0,157,0,54492998,29.6,775371,7.0,29.6,5.2
|
| 788 |
+
2013-04-08,235253,1769,120960,12471,21932,9320,0,2069,22517,9187,26582,2069,0,2445,3733,0,199,0,77297494,47.9,991725,32.7,47.9,5.2
|
| 789 |
+
2013-04-09,238395,1739,119813,12632,22693,9508,0,2178,23378,9572,28223,1971,0,2516,3945,0,227,0,77510004,46.7,1007798,36.5,46.7,5.2
|
| 790 |
+
2013-04-10,234908,1695,119697,12812,21974,9422,0,2518,22691,9020,26112,1922,0,2212,4619,0,214,0,76725905,44.4,1060885,12.2,44.4,5.2
|
| 791 |
+
2013-04-11,229728,1656,117153,11983,21458,9248,0,2385,22128,8754,26198,2016,0,2193,4375,0,181,0,75685271,44.3,983348,18.1,44.3,5.2
|
| 792 |
+
2013-04-12,213058,1527,108192,11738,19637,8623,0,2360,20417,7863,24341,2612,0,1978,3608,0,162,0,70771713,38.2,901733,6.5,38.2,5.2
|
| 793 |
+
2013-04-13,148504,1075,77963,9712,10692,4483,0,784,14216,5356,18911,1284,0,1099,2795,0,134,0,46046787,28.0,650193,8.1,28.0,0.0
|
| 794 |
+
2013-04-14,161316,993,86696,8158,12444,4912,0,918,15902,5816,19521,1315,0,1319,3156,0,166,0,49784072,34.7,713885,33.6,34.7,0.0
|
| 795 |
+
2013-04-15,227181,1865,114752,12275,21603,8945,0,2275,22403,8455,26554,1930,0,2060,3840,0,224,0,74401440,48.5,980306,10.6,48.5,0.0
|
| 796 |
+
2013-04-16,232699,1678,118726,13488,20548,9017,0,2530,22666,9310,26467,1904,0,2232,3915,0,218,0,75962884,42.4,997940,12.5,42.4,0.0
|
| 797 |
2013-04-17,240245,1656,124922,12578,21276,9230,0,2254,22446,8810,28839,2042,0,2187,3812,0,193,0,83081773,177.6,25739398,35.8,177.6,90.7
|
| 798 |
+
2013-04-18,255041,1554,124586,17199,35749,8964,0,2737,21125,8850,26204,2023,0,2093,3760,0,197,0,85950020,35.2,941229,17.1,35.2,0.0
|
| 799 |
+
2013-04-19,221319,1478,107535,15627,30635,7677,0,1802,19319,7506,22631,1783,0,1902,3231,0,193,0,75983370,28.9,861252,10.1,28.9,0.0
|
| 800 |
2013-04-20,156666,1145,88783,7403,10821,4678,0,775,14823,5511,17748,1076,0,1115,2680,0,108,0,57613908,107.1,18401427,27.4,107.1,81.4
|
| 801 |
2013-04-21,179841,1039,93048,9875,22566,5736,0,1251,15470,6018,19127,1251,0,1258,3081,0,121,0,54191410,103.7,16935367,30.4,103.7,45.5
|
| 802 |
2013-04-22,252181,1804,121711,19095,32779,9635,0,2486,22101,8747,25861,1994,0,2154,3651,0,163,0,79403531,149.6,24159472,31.7,149.6,58.8
|