tamnd commited on
Commit
412b992
·
verified ·
1 Parent(s): 07f3c59

Add 2014-05-23 — 361.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,019 days), totaling **167,819,813 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 48.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.7 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
 
@@ -134,7 +134,7 @@ duckdb.sql("""
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
- 2014 █████████████████░░░░░░░░░░░░ 44.5M
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 | 139 | 44,471,667 | 319,940 | 13.5 GB | 4.1 GB | 1h30m | 7h44m | 2h09m |
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 █████████████████░░░░░░░░░░░░ 22.7M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
@@ -197,7 +197,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
197
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
198
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
199
  2013 ██████████████████████████████ 2.9M
200
- 2014 ████████████████████░░░░░░░░░░ 1.9M
201
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
202
  ```
203
 
@@ -610,20 +610,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
- | `pushes` | PushEvent | 84,227,602 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 9,360,831 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 14,620,554 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 6,770,547 | 4.0% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,506,216 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 15,761,720 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,028,023 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 21,187,584 | 12.6% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,032,547 | 1.2% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 180,797 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,578,095 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,849,511 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 155,423 | 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,020 days), totaling **168,181,337 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 48.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.8 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
 
 
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
+ 2014 █████████████████░░░░░░░░░░░░ 44.8M
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 | 140 | 44,833,191 | 320,237 | 13.6 GB | 4.1 GB | 1h31m | 7h48m | 2h10m |
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 █████████████████░░░░░░░░░░░░ 22.9M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
197
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
198
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
199
  2013 ██████████████████████████████ 2.9M
200
+ 2014 ████████████████████░░░░░░░░░░ 2.0M
201
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
202
  ```
203
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 84,409,198 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 9,383,646 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 14,656,893 | 8.7% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 6,787,294 | 4.0% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,510,814 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 15,790,705 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,041,091 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 21,228,102 | 12.6% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,039,663 | 1.2% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 181,625 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,581,106 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,853,351 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 155,714 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/05/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ba848f52a7ebe52ae9469dc6c518dba8c189ad05f7aa4a99ce63e766fc98508
3
+ size 94065
data/creates/2014/05/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01e2a23c59129a8e6b96edbac92355510aea1f429264849a935e4ee351840e78
3
+ size 1445736
data/deletes/2014/05/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0026f18a3a705ce2b0b5c04f450bf0fee87b847c68d64790bc648364c34ca544
3
+ size 191173
data/forks/2014/05/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5dfc50646a71fcbe679e7cb4a6fd333f8f7a64b64c502e17a74553ed8092051b
3
+ size 340979
data/issue_comments/2014/05/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a703e20c97008af4bacfe84c64436aa6a26a422ae65db80ae75a34aeb895858
3
+ size 780543
data/issues/2014/05/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cec186686e45d3f036df76198913b680a51635e011496edd5d511f639544319b
3
+ size 487867
data/public_events/2014/05/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c232d8a1ec5a9f534812510a4f079679cdeea46860ab4a701da010c43ae388d1
3
+ size 12058
data/pull_requests/2014/05/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:188a76ac3329deb8b7214a43eb6edc20b429d4091cef830bfb745a32c2f27ee0
3
+ size 2863638
data/pushes/2014/05/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ed958d2abd3cbc53c56817de21beaf77bbbce3fe3e48949426b3118795ccf42
3
+ size 28321092
data/stars/2014/05/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f0d7c6b251345bf93a2b82e960acebf5380cfe40879f35b76489186f18c74da
3
+ size 710046
data/wiki_pages/2014/05/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe4ec8d11794f112c1e82342f5ccacac55eabd981205614122f9ac0494f045bd
3
+ size 204287
stats.csv CHANGED
@@ -1015,6 +1015,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1015
  2014-05-19,397409,1955,199124,20869,40318,18169,0,5956,34185,13977,45683,6695,993,3300,5805,0,380,0,129914351,261.8,38828162,37.2,261.8,53.2
1016
  2014-05-20,407831,2098,206593,20446,37339,18619,0,5686,35625,14721,47718,6774,1011,3129,7708,0,364,0,134386675,261.5,40974033,34.2,261.5,37.5
1017
  2014-05-21,415434,1929,207566,27652,38855,18361,0,5958,36604,15300,45796,7188,1013,3164,5698,0,350,0,134350634,262.6,40906035,38.8,262.6,39.6
1018
- 2014-05-22,399025,1942,202616,22884,37560,18476,0,5643,34402,15018,44584,7127,971,3272,4219,0,311,0,132462809,247.2,39889803,44.8,247.2,0.0
 
1019
  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
1020
  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
 
1015
  2014-05-19,397409,1955,199124,20869,40318,18169,0,5956,34185,13977,45683,6695,993,3300,5805,0,380,0,129914351,261.8,38828162,37.2,261.8,53.2
1016
  2014-05-20,407831,2098,206593,20446,37339,18619,0,5686,35625,14721,47718,6774,1011,3129,7708,0,364,0,134386675,261.5,40974033,34.2,261.5,37.5
1017
  2014-05-21,415434,1929,207566,27652,38855,18361,0,5958,36604,15300,45796,7188,1013,3164,5698,0,350,0,134350634,262.6,40906035,38.8,262.6,39.6
1018
+ 2014-05-22,399025,1942,202616,22884,37560,18476,0,5643,34402,15018,44584,7127,971,3272,4219,0,311,0,132462809,247.2,39889803,44.8,247.2,49.7
1019
+ 2014-05-23,361524,1772,181596,22815,36339,16747,0,4598,28985,13068,40518,7116,828,3011,3840,0,291,0,116842146,225.3,35451484,34.1,225.3,0.0
1020
  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
1021
  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