tamnd commited on
Commit
08ae113
·
verified ·
1 Parent(s): 9f122e1

Add 2014-09-26 — 435.1K 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,299 days), totaling **222,698,758 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 69.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 12.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
 
@@ -136,7 +136,7 @@ duckdb.sql("""
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ██████████████░░░░░░░░░░░░░░░░ 42.5M
138
  2013 ██████████████████████████░░░░ 76.2M
139
- 2014 ██████████████████████████████ 85.5M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
@@ -145,7 +145,7 @@ duckdb.sql("""
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,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
148
- | 2014 | 255 | 85,462,645 | 335,147 | 31.4 GB | 7.8 GB | 2h51m | 17h47m | 3h56m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -154,10 +154,10 @@ 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.7M
158
  2012 ██████████████░░░░░░░░░░░░░░░░ 20.6M
159
  2013 ██████████████████████████░░░░ 38.9M
160
- 2014 ██████████████████████████████ 43.2M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -177,8 +177,8 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
177
  ```
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 ████████���██████░░░░░░░░░░░░░░░ 2.4M
180
- 2013 ███████████████████████████░░ 4.4M
181
- 2014 ██████████████████████████████ 4.7M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
@@ -220,10 +220,10 @@ GROUP BY repo_name ORDER BY merged_prs DESC LIMIT 20;
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ███████████████░░░░░░░░░░░░░░░ 4.0M
225
  2013 ███████████████████████████░░░ 7.1M
226
- 2014 ██████████████████████████████ 7.8M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 111,715,938 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 12,538,761 | 5.6% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 19,459,078 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 9,043,878 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,155,148 | 1.0% | Line-level PR comments |
645
- | `stars` | WatchEvent | 20,855,524 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,918,095 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 28,137,107 | 12.6% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,915,978 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 289,691 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 2,054,413 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,574,958 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 204,706 | 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,300 days), totaling **223,133,886 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 69.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 12.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
 
 
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ██████████████░░░░░░░░░░░░░░░░ 42.5M
138
  2013 ██████████████████████████░░░░ 76.2M
139
+ 2014 ██████████████████████████████ 85.9M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
 
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,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
148
+ | 2014 | 256 | 85,897,773 | 335,538 | 31.6 GB | 7.9 GB | 2h51m | 17h53m | 3h57m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
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.7M
158
  2012 ██████████████░░░░░░░░░░░░░░░░ 20.6M
159
  2013 ██████████████████████████░░░░ 38.9M
160
+ 2014 ██████████████████████████████ 43.4M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
177
  ```
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 ████████���██████░░░░░░░░░░░░░░░ 2.4M
180
+ 2013 ███████████████████████████░░ 4.4M
181
+ 2014 ██████████████████████████████ 4.8M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
 
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ███████████████░░░░░░░░░░░░░░░ 4.0M
225
  2013 ███████████████████████████░░░ 7.1M
226
+ 2014 ██████████████████████████████ 7.9M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 111,911,673 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 12,608,359 | 5.7% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 19,496,037 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 9,063,267 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,162,014 | 1.0% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 20,886,894 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,930,548 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 28,181,418 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,923,225 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 290,744 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 2,057,583 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,579,413 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 205,037 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3919005d15556190d196ca6eb86d5df6c7b00d9ce08780842a14016bb417981
3
+ size 98961
data/creates/2014/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45515a429a115935ac3894611039eb345a74072bfbee2cc2dba1c6630cdaccb1
3
+ size 2382786
data/deletes/2014/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0beeed7e7da44ffcb68e357f93b33982f162b64348d6109cbfac9081baf56f70
3
+ size 203760
data/forks/2014/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:396227749de0f3ab2f32a4586a19eef865a579cfd6f334ba23897e4e2764c9dc
3
+ size 338141
data/issue_comments/2014/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e58bcf34d496d765a463a104f57b849ffea4c6b532df62061473a9f2bf577a76
3
+ size 850668
data/issues/2014/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab837d7916e592d8c964c8448499bafebfe4c5aa85de09173285eabcd5b84201
3
+ size 1074465
data/public_events/2014/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d5df9619e8ed3fc30c683e9a4eaf466a3287ddbffe25d47b7d948a91fc95082
3
+ size 12594
data/pull_requests/2014/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41a94257bdfac096407aedc54ec2006ac34570b9b29ac2e54e92862d7fc99acd
3
+ size 3318993
data/pushes/2014/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a26e7b52fc35ffe65d74509a864e4929b739ef55b8a1874e3b3435c07b1bb40
3
+ size 29501389
data/stars/2014/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ee32ca77bc878b0cebf4bd08165aa286eb4bfbca7021d1bdd6cc2cf3c42eea9
3
+ size 1413144
data/wiki_pages/2014/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a187d814d00d1fe72138674b010d255b8f211aa4bfa12eb700895098adb9500e
3
+ size 232391
stats.csv CHANGED
@@ -1295,6 +1295,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1295
  2014-09-22,491193,2490,213970,82877,42179,20430,0,7183,37575,13721,54150,7394,971,3269,4556,0,428,0,268976076,547.6,44881355,50.4,547.6,59.1
1296
  2014-09-23,421615,2159,205055,37552,38713,19078,0,7745,35591,13775,46156,7026,1058,2862,4494,0,351,0,241428916,419.6,42038834,56.0,419.6,50.4
1297
  2014-09-24,459037,2179,214687,55063,42652,21128,0,7634,35602,14197,48370,7479,1100,3144,5373,0,429,0,261416936,446.3,44210306,53.0,446.3,60.9
1298
- 2014-09-25,439908,2282,210324,45968,39655,20432,0,7547,35285,13919,47300,7165,1146,3384,5077,0,424,0,253513488,426.5,43303328,40.4,426.5,0.0
 
1299
  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
1300
  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
 
1295
  2014-09-22,491193,2490,213970,82877,42179,20430,0,7183,37575,13721,54150,7394,971,3269,4556,0,428,0,268976076,547.6,44881355,50.4,547.6,59.1
1296
  2014-09-23,421615,2159,205055,37552,38713,19078,0,7745,35591,13775,46156,7026,1058,2862,4494,0,351,0,241428916,419.6,42038834,56.0,419.6,50.4
1297
  2014-09-24,459037,2179,214687,55063,42652,21128,0,7634,35602,14197,48370,7479,1100,3144,5373,0,429,0,261416936,446.3,44210306,53.0,446.3,60.9
1298
+ 2014-09-25,439908,2282,210324,45968,39655,20432,0,7547,35285,13919,47300,7165,1146,3384,5077,0,424,0,253513488,426.5,43303328,40.4,426.5,46.4
1299
+ 2014-09-26,435128,2191,195735,69598,36959,19389,0,6866,31370,12453,44311,7247,1053,3170,4455,0,331,0,244110814,398.5,39427292,51.7,398.5,0.0
1300
  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
1301
  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