tamnd commited on
Commit
87ddb45
·
verified ·
1 Parent(s): 294036f

Add 2014-07-20 — 274.5K 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,093 days), totaling **185,851,455 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 53.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.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
 
@@ -136,7 +136,7 @@ duckdb.sql("""
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 15.0M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ████████████████████████░░░░░░ 61.6M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
@@ -145,7 +145,7 @@ duckdb.sql("""
145
  | 2011 | 266 | 14,953,883 | 56,217 | 2.9 GB | 1.2 GB | 1h07m | 50m49s | 1h44m |
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 | 190 | 61,645,570 | 324,450 | 18.9 GB | 5.6 GB | 2h03m | 10h43m | 2h52m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -157,7 +157,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
157
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 7.2M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ████████████████████████░░░░░░ 31.4M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -201,7 +201,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 391.6K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
- 2014 ██████████████████████████���░░ 2.7M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 93,375,439 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,297,757 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,193,192 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,558,411 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,738,766 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,466,163 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,689,104 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,321,884 | 12.5% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,389,698 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 224,758 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,728,003 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,055,730 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 111,481 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 171,887 | 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,094 days), totaling **186,125,914 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 53.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.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
 
 
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 15.0M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 ████████████████████████░░░░░░ 61.9M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
 
145
  | 2011 | 266 | 14,953,883 | 56,217 | 2.9 GB | 1.2 GB | 1h07m | 50m49s | 1h44m |
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 | 191 | 61,920,029 | 324,188 | 19.0 GB | 5.6 GB | 2h03m | 10h44m | 2h52m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 7.2M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ████████████████████████░░░░░░ 31.5M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 391.6K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
+ 2014 ████████████████████████████░░ 2.7M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 93,527,093 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,309,287 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,212,540 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,568,752 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,492,347 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,699,574 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,354,072 | 12.5% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,393,768 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,729,860 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,058,313 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 111,481 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 172,087 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/07/20.parquet ADDED
File without changes
data/creates/2014/07/20.parquet ADDED
File without changes
data/deletes/2014/07/20.parquet ADDED
File without changes
data/forks/2014/07/20.parquet ADDED
File without changes
data/issue_comments/2014/07/20.parquet ADDED
File without changes
data/issues/2014/07/20.parquet ADDED
File without changes
data/public_events/2014/07/20.parquet ADDED
File without changes
data/pull_requests/2014/07/20.parquet ADDED
File without changes
data/pushes/2014/07/20.parquet ADDED
File without changes
data/stars/2014/07/20.parquet ADDED
File without changes
data/wiki_pages/2014/07/20.parquet ADDED
File without changes
stats.csv CHANGED
@@ -1089,6 +1089,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1089
  2014-07-12,242189,1186,128154,11186,18096,8591,0,1703,27361,9287,28385,3302,667,1637,2423,0,211,0,75589176,134.1,23695753,30.2,134.1,44.8
1090
  2014-07-13,248303,762,130726,10888,17929,8677,0,1789,28701,9354,30336,3506,723,1852,2875,0,185,0,77409204,135.9,24499879,28.7,135.9,41.4
1091
  2014-07-15,407623,1685,201518,18973,39055,20201,0,6927,40602,15480,46907,7218,1031,3252,4440,0,334,0,146772761,124.4,58098773,2.2,124.4,0.0
1092
- 2014-07-19,236661,1010,131923,10377,16595,8570,0,2234,21916,9384,26772,3110,567,1662,2323,0,218,0,74195067,57.7,0,30.7,57.7,0.0
 
1093
  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
1094
  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
 
1089
  2014-07-12,242189,1186,128154,11186,18096,8591,0,1703,27361,9287,28385,3302,667,1637,2423,0,211,0,75589176,134.1,23695753,30.2,134.1,44.8
1090
  2014-07-13,248303,762,130726,10888,17929,8677,0,1789,28701,9354,30336,3506,723,1852,2875,0,185,0,77409204,135.9,24499879,28.7,135.9,41.4
1091
  2014-07-15,407623,1685,201518,18973,39055,20201,0,6927,40602,15480,46907,7218,1031,3252,4440,0,334,0,146772761,124.4,58098773,2.2,124.4,0.0
1092
+ 2014-07-19,236661,1010,131923,10377,16595,8570,0,2234,21916,9384,26772,3110,567,1662,2323,0,218,0,74195067,57.7,0,30.7,57.7,4.9
1093
+ 2014-07-20,274459,884,151654,11530,19348,10341,0,2393,26184,10470,32188,4070,757,1857,2583,0,200,0,86809408,70.2,0,34.5,70.2,0.0
1094
  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
1095
  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