tamnd commited on
Commit
fa9a9f4
·
verified ·
1 Parent(s): 64705a3

Add 2014-11-21 — 441.6K 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,351 days), totaling **245,060,022 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 81.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.4 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
 
@@ -135,10 +135,10 @@ duckdb.sql("""
135
  ## Events per year
136
 
137
  ```
138
- 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 █████████████████████░░░░░░░░░ 76.2M
141
- 2014 ██████████████████████████████ 107.8M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
@@ -147,7 +147,7 @@ duckdb.sql("""
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
- | 2014 | 307 | 107,823,909 | 351,217 | 43.0 GB | 10.0 GB | 3h37m | 19h25m | 4h34m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
@@ -159,7 +159,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
159
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 █████████████████████░░░░░░░░░ 38.9M
162
- 2014 ██████████████████████████████ 54.5M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -180,7 +180,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
180
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 █████████████████████░░░░░░░░░ 4.4M
183
- 2014 ██████████████████████████████ 6.2M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
@@ -225,7 +225,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
225
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 ████████████░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 █████████████████████░░░░░░░░░ 7.1M
228
- 2014 ██████████████████████████████ 9.7M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 123,006,194 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 14,052,620 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 21,429,554 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 10,042,736 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,467,879 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 22,754,699 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,640,226 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 30,810,078 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,292,092 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 348,031 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,208,418 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,821,801 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 226,663 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
 
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,352 days), totaling **245,501,651 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 81.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.5 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
 
 
135
  ## Events per year
136
 
137
  ```
138
+ 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 █████████████████████░░░░░░░░░ 76.2M
141
+ 2014 ██████████████████████████████ 108.3M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
 
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
+ | 2014 | 308 | 108,265,538 | 351,511 | 43.2 GB | 10.1 GB | 3h38m | 19h27m | 4h34m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
 
159
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 █████████████████████░░░░░░░░░ 38.9M
162
+ 2014 ██████████████████████████████ 54.8M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
180
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 █████████████████████░░░░░░░░░ 4.4M
183
+ 2014 ██████████████████████████████ 6.3M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
 
225
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 ████████████░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 █████████████████████░░░░░░░░░ 7.1M
228
+ 2014 ██████████████████████████████ 9.8M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 123,229,120 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 14,083,448 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 21,470,561 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 10,064,045 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,475,154 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 22,790,489 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,653,849 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 30,859,656 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,299,720 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 349,328 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,211,463 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,826,082 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 227,075 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eaa999446e0333bd1d80b57a1feb217046ffbd7fde991b56106a8885915dd9c9
3
+ size 105970
data/creates/2014/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d95aa2942cd4a89328996f937f0783bbd78fee4780b8d0250c0b8f0f12ab351
3
+ size 4266009
data/deletes/2014/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4429b5ffc9a46f27e3ac890182808fd9298a1de7a1a564dd86ab9e24e0cad6de
3
+ size 219606
data/forks/2014/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9664f9b48786c4eae2ac55a9104e07f171ee3077218e320b646c0a46d97999d
3
+ size 372899
data/issue_comments/2014/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72cc12aa60b4334fdad99fc21a07e1049509bd61c4608b558dcffec9e5fee36f
3
+ size 937535
data/issues/2014/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fa6e6e1eef0488a6986b36d758cb269f16416da9d9c9e04339518868dc95fe5
3
+ size 700931
data/public_events/2014/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8fad7a4df325c2f86775957a8a842b8f4a6db6817b8729ef423bdbdaf8f2512
3
+ size 16572
data/pull_requests/2014/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f425c8d8bab2d47700c927a7f99de423f512347c2abc83798a121769b0b89035
3
+ size 3656244
data/pushes/2014/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3854efdc9e518e52422dc838f13e9ca4df8a7e0e6053f02c73a8044ea122d547
3
+ size 35158746
data/stars/2014/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb34552962fb2651ec6e0ff39e11f805d102ba71bfe334f63d2750aa962cac56
3
+ size 1674727
data/wiki_pages/2014/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74ee87196382c76e522fba96c88f12d8dfd45babfbbf945735ff0db22c624ae8
3
+ size 247554
stats.csv CHANGED
@@ -1347,6 +1347,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1347
  2014-11-17,516913,3001,255543,39339,45620,24098,0,8761,43073,16612,59381,10030,1449,4085,5363,0,558,0,292418524,139.0,54597433,50.1,139.0,76.6
1348
  2014-11-18,540069,3119,264927,50859,46686,24614,0,8944,43310,16949,58906,10639,1318,3769,5527,0,502,0,301841430,127.3,55287588,46.3,127.3,50.1
1349
  2014-11-19,537576,3099,254983,62372,46240,25188,0,8524,42827,16940,58235,8603,1423,3618,5075,0,449,0,301404306,122.8,55596797,46.7,122.8,28.3
1350
- 2014-11-20,529031,2683,252451,61864,46364,25321,0,9405,40287,16403,55542,8702,1294,3789,4468,0,458,0,305021955,127.7,53629872,62.5,127.7,0.0
 
1351
  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
1352
  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
 
1347
  2014-11-17,516913,3001,255543,39339,45620,24098,0,8761,43073,16612,59381,10030,1449,4085,5363,0,558,0,292418524,139.0,54597433,50.1,139.0,76.6
1348
  2014-11-18,540069,3119,264927,50859,46686,24614,0,8944,43310,16949,58906,10639,1318,3769,5527,0,502,0,301841430,127.3,55287588,46.3,127.3,50.1
1349
  2014-11-19,537576,3099,254983,62372,46240,25188,0,8524,42827,16940,58235,8603,1423,3618,5075,0,449,0,301404306,122.8,55596797,46.7,122.8,28.3
1350
+ 2014-11-20,529031,2683,252451,61864,46364,25321,0,9405,40287,16403,55542,8702,1294,3789,4468,0,458,0,305021955,127.7,53629872,62.5,127.7,37.4
1351
+ 2014-11-21,441629,2630,222926,30828,41007,21309,0,7275,35790,13623,49578,7628,1297,3045,4281,0,412,0,250413266,106.9,47356793,53.0,106.9,0.0
1352
  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
1353
  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