tamnd commited on
Commit
5b01ccb
·
verified ·
1 Parent(s): 1dd1dcf

Add 2014-07-28 — 361.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,147 days), totaling **190,525,187 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 55.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.6 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
 
@@ -133,7 +133,7 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 17.3M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 █████████████████████████░░░░░ 63.9M
@@ -142,7 +142,7 @@ duckdb.sql("""
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 313 | 17,334,914 | 55,383 | 3.4 GB | 524.1 MB | 56m02s | 52m21s | 57m00s |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
  | 2014 | 197 | 63,938,271 | 324,559 | 19.9 GB | 5.8 GB | 2h08m | 11h19m | 2h58m |
@@ -154,7 +154,7 @@ duckdb.sql("""
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.4M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 █████████████████████████░░░░░ 32.5M
@@ -175,7 +175,7 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 945.5K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ███████████████████████░░░░░░░ 3.4M
@@ -198,7 +198,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
- 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 456.9K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 █████████████████████████████░ 2.8M
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 95,745,111 | 50.3% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,576,724 | 5.6% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,561,654 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,723,301 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,769,214 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,929,847 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,841,035 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,943,189 | 12.6% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,456,060 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 230,993 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,778,725 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,129,723 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 126,019 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 175,985 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
 
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,155 days), totaling **191,090,418 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 55.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.6 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
 
 
133
  ## Events per year
134
 
135
  ```
136
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 17.9M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 █████████████████████████░░░░░ 63.9M
 
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 321 | 17,900,145 | 55,763 | 3.5 GB | 526.2 MB | 57m07s | 54m04s | 57m33s |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
  | 2014 | 197 | 63,938,271 | 324,559 | 19.9 GB | 5.8 GB | 2h08m | 11h19m | 2h58m |
 
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.6M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 █████████████████████████░░░░░ 32.5M
 
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 973.5K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ███████████████████████░░░░░░░ 3.4M
 
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
+ 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 472.3K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 █████████████████████████████░ 2.8M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 95,995,757 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,604,680 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,596,649 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,738,730 | 4.0% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,769,214 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,977,789 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,856,396 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 24,089,301 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,462,631 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 230,993 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,784,308 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,140,676 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 129,185 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 176,502 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b1a2efc447d2524a4671d277880cbfbc00798bc17acc2f69dce3aeeced1a223
3
+ size 96356
data/creates/2014/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4b20c4b7973e878be578d45725879ff998c4a5d7aaf9f5a4c5c1dcd719583cd
3
+ size 1424905
data/deletes/2014/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b888d9bcc1940c5001235e1d3a5a1ed09126cf01b0768ae49987c505f45e5712
3
+ size 179592
data/forks/2014/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31d76abf37cba01cf77f2270e78535611d0b50cf459b3062623d52197e6ef179
3
+ size 394778
data/issue_comments/2014/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2cddcca6d05c6c6f9c0c4dd335dce12b01dd0f4acb95e719b2cb5a281e744d7
3
+ size 921020
data/issues/2014/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1cbad596d7df9ad157dd3a0a71a1833364da3b0283f48dad3ebd5b4d0a8d1702
3
+ size 506026
data/public_events/2014/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c936f3606f57f4edb30867e2038ed6d6fd19c86192396d06417b79b498b4393a
3
+ size 12648
data/pull_requests/2014/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b41a4760790444adba38fb998ea3ff03dde92bf5f3fda61b98070631d145910b
3
+ size 3081966
data/pushes/2014/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bfc2d8364f4ee7b10fe6702a318f75f2670fce192f2bf0cc129f63fa272e3f3
3
+ size 30160989
data/stars/2014/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a0ece6dbf3d4d0fa741c85379ce2d77f8a0c67ac8bff074ebc24c230126edba
3
+ size 1656919
data/wiki_pages/2014/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0642f1a39fb79f270415cab53cbe0bc42e4bd0353758b8e6c6671027d0685962
3
+ size 269819
stats.csv CHANGED
@@ -251,13 +251,21 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
251
  2011-10-19,76774,0,37772,7563,6609,2410,0,0,7161,2257,9074,707,0,1076,1588,481,76,0,22776520,16.6,316337,9.1,16.6,4.3
252
  2011-10-20,75217,0,37498,5766,6151,2382,0,0,8088,2211,9323,824,0,890,1469,524,91,0,22511794,18.9,340881,25.2,18.9,4.3
253
  2011-10-21,68639,0,34793,3702,5146,2471,0,0,7426,2406,8658,1511,0,813,1163,478,72,0,20819104,19.0,315075,0.0,19.0,4.3
254
- 2011-10-22,48814,0,25187,2984,3703,1230,0,0,5122,1370,6581,438,0,543,1194,414,48,0,13841117,13.2,218827,0.0,13.2,0.0
255
- 2011-10-23,52118,0,28312,2730,3590,1198,0,0,4601,1357,8175,461,0,503,873,260,58,0,14451979,12.7,207745,0.0,12.7,0.0
256
- 2011-10-24,69453,0,36750,3942,5402,2319,0,0,7125,2105,8379,809,0,772,1270,502,78,0,21333055,16.9,312326,27.7,16.9,0.0
257
- 2011-10-25,74899,0,37462,4140,5634,2406,0,0,8668,2558,10184,881,0,896,1402,586,82,0,22294342,16.5,367492,29.1,16.5,0.0
258
- 2011-10-26,73436,0,37400,4083,5780,2276,0,0,8030,2369,8759,1460,0,930,1441,819,89,0,22413620,16.5,344075,9.0,16.5,0.0
259
- 2011-10-27,52384,0,27474,2847,3977,1809,0,0,5399,1890,6403,484,0,683,1001,370,47,0,15746487,10.8,245992,18.8,10.8,0.0
260
- 2011-10-28,70381,0,27428,2837,4073,1888,0,0,5442,1858,24213,641,0,539,1076,325,61,0,16058295,11.8,245584,13.4,11.8,0.0
 
 
 
 
 
 
 
 
261
  2011-11-08,85102,0,39901,4039,5842,2713,0,0,7527,2639,18254,1170,0,861,1548,542,66,0,22666473,36.3,11265953,16.6,36.3,34.8
262
  2011-11-09,67989,0,31069,3259,4920,2081,0,0,5946,1815,16026,615,0,564,1173,460,61,0,17643029,28.4,9008591,7.8,28.4,37.6
263
  2011-11-10,75111,0,34626,3476,5250,2260,0,0,6595,2078,17654,647,0,766,1273,417,69,0,19605653,31.4,10041693,20.3,31.4,39.6
 
251
  2011-10-19,76774,0,37772,7563,6609,2410,0,0,7161,2257,9074,707,0,1076,1588,481,76,0,22776520,16.6,316337,9.1,16.6,4.3
252
  2011-10-20,75217,0,37498,5766,6151,2382,0,0,8088,2211,9323,824,0,890,1469,524,91,0,22511794,18.9,340881,25.2,18.9,4.3
253
  2011-10-21,68639,0,34793,3702,5146,2471,0,0,7426,2406,8658,1511,0,813,1163,478,72,0,20819104,19.0,315075,0.0,19.0,4.3
254
+ 2011-10-22,48814,0,25187,2984,3703,1230,0,0,5122,1370,6581,438,0,543,1194,414,48,0,13841117,13.2,218827,0.0,13.2,4.8
255
+ 2011-10-23,52118,0,28312,2730,3590,1198,0,0,4601,1357,8175,461,0,503,873,260,58,0,14451979,12.7,207745,0.0,12.7,4.8
256
+ 2011-10-24,69453,0,36750,3942,5402,2319,0,0,7125,2105,8379,809,0,772,1270,502,78,0,21333055,16.9,312326,27.7,16.9,4.8
257
+ 2011-10-25,74899,0,37462,4140,5634,2406,0,0,8668,2558,10184,881,0,896,1402,586,82,0,22294342,16.5,367492,29.1,16.5,4.8
258
+ 2011-10-26,73436,0,37400,4083,5780,2276,0,0,8030,2369,8759,1460,0,930,1441,819,89,0,22413620,16.5,344075,9.0,16.5,4.8
259
+ 2011-10-27,52384,0,27474,2847,3977,1809,0,0,5399,1890,6403,484,0,683,1001,370,47,0,15746487,10.8,245992,18.8,10.8,4.8
260
+ 2011-10-28,70381,0,27428,2837,4073,1888,0,0,5442,1858,24213,641,0,539,1076,325,61,0,16058295,11.8,245584,13.4,11.8,4.8
261
+ 2011-10-29,58396,0,22821,2124,2816,1406,0,0,4258,1507,20890,774,0,463,1027,271,39,0,12372212,9.7,189345,13.1,9.7,0.0
262
+ 2011-10-30,54640,0,24626,2168,2839,1476,0,0,4776,1587,14716,493,0,484,1234,199,42,0,12951213,9.2,210229,8.2,9.2,0.0
263
+ 2011-10-31,73054,0,33232,3621,4874,2284,0,0,6980,2083,16599,728,0,733,1357,491,72,0,18854790,14.0,300667,6.1,14.0,0.0
264
+ 2011-11-01,77963,0,34970,6034,5236,2239,0,0,6952,2177,16725,850,0,728,1574,407,71,0,20418383,17.4,309206,7.6,17.4,0.0
265
+ 2011-11-02,80127,0,36947,3918,5724,2396,0,0,6953,2231,17548,1078,0,1005,1704,554,69,0,21166907,15.5,309003,19.2,15.5,0.0
266
+ 2011-11-03,77609,0,35230,3767,5230,2151,0,0,6449,2084,18412,1495,0,772,1446,477,96,0,19989133,14.3,288747,5.8,14.3,0.0
267
+ 2011-11-04,83499,0,37097,3789,5233,2301,0,0,7253,2297,21880,798,0,914,1331,513,93,0,20717657,15.4,315402,5.6,15.4,0.0
268
+ 2011-11-06,59943,0,25723,2535,3043,1176,0,0,4321,1395,19342,355,0,484,1280,254,35,0,12923595,7.3,195198,0.0,7.3,0.0
269
  2011-11-08,85102,0,39901,4039,5842,2713,0,0,7527,2639,18254,1170,0,861,1548,542,66,0,22666473,36.3,11265953,16.6,36.3,34.8
270
  2011-11-09,67989,0,31069,3259,4920,2081,0,0,5946,1815,16026,615,0,564,1173,460,61,0,17643029,28.4,9008591,7.8,28.4,37.6
271
  2011-11-10,75111,0,34626,3476,5250,2260,0,0,6595,2078,17654,647,0,766,1273,417,69,0,19605653,31.4,10041693,20.3,31.4,39.6