tamnd commited on
Commit
1c77869
·
verified ·
1 Parent(s): c259353

Add 2014-06-10 — 400.7K events, 11 files

Browse files
README.md CHANGED
@@ -61,9 +61,9 @@ configs:
61
 
62
  This dataset contains every public event on GitHub: every push, pull request, issue, star, fork, code review, release, and discussion across all public repositories. GitHub is the world's largest software development platform, home to over 200 million repositories and the daily work of tens of millions of developers, from individual open-source contributors to the engineering teams behind the most widely used software on earth.
63
 
64
- The archive currently spans from **2011-02-12** to **2015-01-03** (1,036 days), totaling **173,679,158 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 50.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.3 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,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,146,213 events in 3822 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
@@ -83,7 +83,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
83
  06:00 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 21.1K
84
  07:00 █████████████████░░░░░░░░░░░░░ 165.7K
85
  08:00 ████████████████████████████░░ 262.4K
86
- 09:00 ████████████████████░░░░░░░░░░ 194.1K
87
  10:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
88
  11:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
89
  12:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -134,7 +134,7 @@ duckdb.sql("""
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
- 2014 ████████████████████░░░░░░░░░░ 50.3M
138
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
139
  ```
140
 
@@ -143,7 +143,7 @@ duckdb.sql("""
143
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
144
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
145
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
146
- | 2014 | 156 | 50,331,012 | 322,634 | 15.3 GB | 4.6 GB | 1h40m | 8h41m | 2h22m |
147
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
148
 
149
 
@@ -155,7 +155,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
155
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
156
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
157
  2013 ██████████████████████████████ 38.1M
158
- 2014 ████████████████████░░░░░░░░░░ 25.7M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
@@ -610,20 +610,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
- | `pushes` | PushEvent | 87,203,877 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 9,682,403 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 15,151,815 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 7,026,586 | 4.0% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,582,733 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 16,272,670 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,242,164 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 21,855,543 | 12.6% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,181,616 | 1.3% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 194,975 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,624,867 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,911,701 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 160,890 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
 
61
 
62
  This dataset contains every public event on GitHub: every push, pull request, issue, star, fork, code review, release, and discussion across all public repositories. GitHub is the world's largest software development platform, home to over 200 million repositories and the daily work of tens of millions of developers, from individual open-source contributors to the engineering teams behind the most widely used software on earth.
63
 
64
+ The archive currently spans from **2011-02-12** to **2015-01-03** (1,037 days), totaling **174,079,875 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 50.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.3 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,169,852 events in 3823 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
 
83
  06:00 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 21.1K
84
  07:00 █████████████████░░░░░░░░░░░░░ 165.7K
85
  08:00 ████████████████████████████░░ 262.4K
86
+ 09:00 ███████████████████████░░░░░░░ 217.7K
87
  10:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
88
  11:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
89
  12:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
+ 2014 ████████████████████░░░░░░░░░░ 50.7M
138
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
139
  ```
140
 
 
143
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
144
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
145
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
146
+ | 2014 | 157 | 50,731,729 | 323,132 | 15.4 GB | 4.6 GB | 1h41m | 8h46m | 2h22m |
147
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
148
 
149
 
 
155
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
156
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
157
  2013 ██████████████████████████████ 38.1M
158
+ 2014 ████████████████████░░░░░░░░░░ 25.9M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 87,404,444 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 9,701,937 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,189,143 | 8.7% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 7,045,301 | 4.0% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,589,894 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 16,311,771 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,257,578 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 21,900,227 | 12.6% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,189,001 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 195,919 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,628,363 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,915,982 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 161,259 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/06/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4601c47f84fd3b39474311b7cb02f789da3524d0488af55d29cc347a0099a727
3
+ size 117927
data/creates/2014/06/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:693c4d9cfd3414bade30afa65b3506752daa16d6e8c7a27e8563e3e4df1f3755
3
+ size 1569305
data/deletes/2014/06/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbc2b14d6f8474d9d5aa1a5b5e9bf154220ac64694ca1e74e7c66a6deb0d6337
3
+ size 209034
data/forks/2014/06/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9eebe9ab8342dedbd328888a8af2936f758898a681181663e17707f9b253fc7
3
+ size 401994
data/issue_comments/2014/06/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:271ddaa0c3ee903b09dd4f4218ee9b3b42105dfaa3f5d696931a331105b3f903
3
+ size 920422
data/issues/2014/06/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce20655d52b715da358f6aeed680f3ffecd4687547678451eb14383f0a133091
3
+ size 496471
data/public_events/2014/06/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebbe25966021d9ddc3c7e89b72fc81574c42ff57e3adf08a62901f1d084b8ebd
3
+ size 14265
data/pull_requests/2014/06/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43e34f1123d1a0345ce994b4f68f7c6f9217d4f2b611cecb491ce2d38c3de377
3
+ size 3316227
data/pushes/2014/06/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37f5288f545b9b97f7de1542e30f4eb1b5e9ceee88aa21f638218c5c0cf6c69d
3
+ size 32520307
data/stars/2014/06/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:358dbd8505d93eedb55e43d78e9ee23358a035b6750bd280fda7932bc7ca8a71
3
+ size 832226
data/wiki_pages/2014/06/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab4d5460224a903f7183e58a2336aeaa0e0009503577680cb0b91203f9348145
3
+ size 293230
stats.csv CHANGED
@@ -1032,6 +1032,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1032
  2014-06-06,343842,1750,176246,16884,30737,16941,0,5309,29762,12811,39159,6591,855,2867,3562,0,368,0,122759819,213.0,34860915,42.2,213.0,40.1
1033
  2014-06-07,228855,1329,124445,10539,15797,8473,0,1789,21638,9124,27776,3314,518,1722,2178,0,213,0,72638845,127.2,22443441,43.5,127.2,47.4
1034
  2014-06-08,264453,941,144039,12893,19306,9715,0,2099,25664,9930,30128,4215,651,1892,2787,0,193,0,87430736,159.4,29068008,36.2,159.4,58.4
1035
- 2014-06-09,372150,1710,187955,17791,34058,17011,0,6229,35084,14076,42413,7270,753,3432,3958,0,410,0,133600249,229.0,38276170,45.6,229.0,0.0
 
1036
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1037
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0
 
1032
  2014-06-06,343842,1750,176246,16884,30737,16941,0,5309,29762,12811,39159,6591,855,2867,3562,0,368,0,122759819,213.0,34860915,42.2,213.0,40.1
1033
  2014-06-07,228855,1329,124445,10539,15797,8473,0,1789,21638,9124,27776,3314,518,1722,2178,0,213,0,72638845,127.2,22443441,43.5,127.2,47.4
1034
  2014-06-08,264453,941,144039,12893,19306,9715,0,2099,25664,9930,30128,4215,651,1892,2787,0,193,0,87430736,159.4,29068008,36.2,159.4,58.4
1035
+ 2014-06-09,372150,1710,187955,17791,34058,17011,0,6229,35084,14076,42413,7270,753,3432,3958,0,410,0,133600249,229.0,38276170,45.6,229.0,47.9
1036
+ 2014-06-10,400717,1738,200567,19534,37328,18715,0,7161,39101,15414,44684,7385,944,3496,4281,0,369,0,144124985,268.5,40691408,51.1,268.5,0.0
1037
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1038
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0