tamnd commited on
Commit
eafeb0b
·
verified ·
1 Parent(s): 33fe3d0

Add 2014-08-27 — 419.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,256 days), totaling **209,358,177 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 63.2 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
 
@@ -134,7 +134,7 @@ duckdb.sql("""
134
 
135
  ```
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
- 2012 ████████████████░░░░░░░░░░░░░░ 41.6M
138
  2013 █████████████████████████████░ 74.5M
139
  2014 ██████████████████████████████ 74.7M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
@@ -143,7 +143,7 @@ duckdb.sql("""
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
- | 2012 | 360 | 41,647,216 | 115,686 | 11.2 GB | 454.2 MB | 1h24m | 2h44m | 46m52s |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
  | 2014 | 227 | 74,683,217 | 329,000 | 25.6 GB | 6.8 GB | 2h29m | 14h36m | 3h28m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
@@ -155,7 +155,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
155
 
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
- 2012 ███████████████░░░░░░░░░░░░░░ 20.1M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 █████████████████████████████░ 37.9M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 105,028,199 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,606,759 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 18,233,808 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,469,396 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,972,067 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,686,903 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,470,989 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 26,609,307 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,715,997 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 261,180 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,949,938 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,395,890 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 192,714 | 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,259 days), totaling **209,849,568 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 63.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
 
 
134
 
135
  ```
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
+ 2012 ████████████████░░░░░░░░░░░░░░ 42.1M
138
  2013 █████████████████████████████░ 74.5M
139
  2014 ██████████████████████████████ 74.7M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
+ | 2012 | 363 | 42,138,607 | 116,084 | 11.3 GB | 400.8 MB | 1h23m | 2h43m | 45m04s |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
  | 2014 | 227 | 74,683,217 | 329,000 | 25.6 GB | 6.8 GB | 2h29m | 14h36m | 3h28m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
 
155
 
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
+ 2012 ███████████████░░░░░░░░░░░░░░ 20.4M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 █████████████████████████████░ 37.9M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 105,280,774 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,637,751 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 18,279,431 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,487,364 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,977,032 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 19,729,303 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,489,680 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 26,664,487 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,719,761 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 261,180 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,955,591 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,405,267 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 193,149 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/08/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f06370c21cbe6c5ed7de51018bdfaa75631acefc310fac7ee9c791dc15a115c2
3
+ size 107618
data/creates/2014/08/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:137577936d71801a07ad0b6d5f75728b76afd8453b55a385c135f65b91713717
3
+ size 1708228
data/deletes/2014/08/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0886beb029bd3830e7e2c097581abea6b210a51d0ea80cd9147c52f059e81cc7
3
+ size 217589
data/forks/2014/08/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b4b28478e234b903f9cce6d019d2bcd42ac92b5914e1f7da70dfc4fc57b4595
3
+ size 374308
data/issue_comments/2014/08/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b2c85744621dbb764a4e6227d861fb2f6e9a8396cbfd795a3b4446ac84b7ee7
3
+ size 1027582
data/issues/2014/08/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebd3290fdcbc88d550a70c7c5429caa3468721614ad339a2baae0956f496a640
3
+ size 552204
data/public_events/2014/08/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c49cb3178b394b3f9d74babbfbac26ce3cb9f62f3fc0723e166201f20444bf4c
3
+ size 15757
data/pull_requests/2014/08/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f5c2cb7361ba5a0b92fb524dbfa9ad03dfe5c4120c2fa72951a2ae80d0d8a58
3
+ size 3591100
data/pushes/2014/08/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdb482d0d894855bddee6f7bade34f12a630ed847a2629fc1c67172117794aa4
3
+ size 32363533
data/stars/2014/08/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1cde2d9dc9be015759b5e887916eba8afa4adf759e685baffd49b59e525fb261
3
+ size 1675286
data/wiki_pages/2014/08/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:330fd0c7c0e56f1c3f696727f9103e666b963706fc008abc4aaaacda5decd404
3
+ size 334420
stats.csv CHANGED
@@ -650,17 +650,20 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
650
  2012-11-21,162639,1235,81386,13719,13160,5902,0,1471,14158,6056,19969,990,0,1537,2923,0,133,0,54873816,38.8,627981,29.8,38.8,5.4
651
  2012-11-22,135370,856,67145,12506,10137,4346,0,1028,12777,5180,16274,943,0,1148,2920,0,110,0,43353737,31.4,569944,8.7,31.4,5.4
652
  2012-11-23,134133,896,66155,15692,9510,4061,0,818,12040,4583,15875,750,0,1308,2348,0,97,0,41549197,24.4,533254,0.0,24.4,5.4
653
- 2012-11-24,116723,699,54451,17556,10881,2894,0,553,9662,3638,13094,576,0,826,1825,0,68,0,33116020,23.3,446010,0.0,23.3,0.0
654
- 2012-11-25,126640,768,64112,14708,8228,3410,0,709,11768,4404,14210,680,0,985,2564,0,94,0,38823818,27.4,521536,0.0,27.4,0.0
655
- 2012-11-26,177871,1361,87260,19238,14706,6062,0,1816,15169,5884,19932,1115,0,1874,3299,0,155,0,57419910,43.7,727966,7.2,43.7,0.0
656
- 2012-11-27,183069,1320,90083,18852,15060,6349,0,1745,15458,6788,20523,1185,0,1843,3670,0,193,0,59484956,45.4,687736,8.8,45.4,0.0
657
- 2012-11-28,184736,1263,90293,18585,14951,6467,0,1923,16506,6761,21404,1197,0,1823,3425,0,138,0,59778205,43.4,716472,14.6,43.4,0.0
658
- 2012-11-29,181224,1176,87916,21083,14824,6290,0,1962,14788,6245,20504,1138,0,1809,3344,0,145,0,58262507,42.9,659120,7.9,42.9,0.0
659
- 2012-11-30,157491,1034,74423,22119,12330,5069,0,1382,12485,5237,17995,1016,0,1425,2826,0,150,0,49270053,33.7,579428,12.0,33.7,0.0
660
- 2012-12-01,126618,924,60777,21100,7285,3319,0,655,10036,4330,14599,606,0,883,2020,0,84,0,37332335,64.3,11713847,39.3,64.3,42.9
661
- 2012-12-02,140925,793,71052,19393,9138,3846,0,780,10537,4499,16190,774,0,1249,2579,0,95,0,42245588,72.4,13026216,24.6,72.4,38.2
662
- 2012-12-03,169147,1132,88672,10399,14338,6286,0,1431,14078,5950,19349,1311,0,1946,4094,0,161,0,57378113,94.6,17534355,56.6,94.6,40.1
663
- 2012-12-04,176612,1233,91408,10476,17511,6449,0,1678,14768,6050,20047,1377,0,2153,3286,0,176,0,59676759,96.6,17970096,32.0,96.6,24.2
 
 
 
664
  2012-12-11,176115,1089,89390,11325,16203,6554,0,1602,16552,7005,19475,1345,0,1919,3491,0,165,0,58596755,93.2,17746100,1.2,93.2,41.7
665
  2012-12-12,173202,1166,87973,9939,15978,6705,0,1702,15840,6921,19932,1313,0,2286,3283,0,164,0,57796300,94.9,17139312,9.3,94.9,32.8
666
  2012-12-13,166849,1104,88184,8295,14239,6512,0,1585,15136,6540,18719,1257,0,1881,3243,0,154,0,56169671,94.0,16799807,21.9,94.0,41.0
 
650
  2012-11-21,162639,1235,81386,13719,13160,5902,0,1471,14158,6056,19969,990,0,1537,2923,0,133,0,54873816,38.8,627981,29.8,38.8,5.4
651
  2012-11-22,135370,856,67145,12506,10137,4346,0,1028,12777,5180,16274,943,0,1148,2920,0,110,0,43353737,31.4,569944,8.7,31.4,5.4
652
  2012-11-23,134133,896,66155,15692,9510,4061,0,818,12040,4583,15875,750,0,1308,2348,0,97,0,41549197,24.4,533254,0.0,24.4,5.4
653
+ 2012-11-24,116723,699,54451,17556,10881,2894,0,553,9662,3638,13094,576,0,826,1825,0,68,0,33116020,23.3,446010,0.0,23.3,5.3
654
+ 2012-11-25,126640,768,64112,14708,8228,3410,0,709,11768,4404,14210,680,0,985,2564,0,94,0,38823818,27.4,521536,0.0,27.4,5.3
655
+ 2012-11-26,177871,1361,87260,19238,14706,6062,0,1816,15169,5884,19932,1115,0,1874,3299,0,155,0,57419910,43.7,727966,7.2,43.7,5.3
656
+ 2012-11-27,183069,1320,90083,18852,15060,6349,0,1745,15458,6788,20523,1185,0,1843,3670,0,193,0,59484956,45.4,687736,8.8,45.4,5.3
657
+ 2012-11-28,184736,1263,90293,18585,14951,6467,0,1923,16506,6761,21404,1197,0,1823,3425,0,138,0,59778205,43.4,716472,14.6,43.4,5.3
658
+ 2012-11-29,181224,1176,87916,21083,14824,6290,0,1962,14788,6245,20504,1138,0,1809,3344,0,145,0,58262507,42.9,659120,7.9,42.9,5.3
659
+ 2012-11-30,157491,1034,74423,22119,12330,5069,0,1382,12485,5237,17995,1016,0,1425,2826,0,150,0,49270053,33.7,579428,12.0,33.7,5.3
660
+ 2012-12-01,126618,924,60777,21100,7285,3319,0,655,10036,4330,14599,606,0,883,2020,0,84,0,37332335,24.5,469321,9.8,24.5,0.0
661
+ 2012-12-02,140925,793,71052,19393,9138,3846,0,780,10537,4499,16190,774,0,1249,2579,0,95,0,42245588,30.8,491858,12.7,30.8,0.0
662
+ 2012-12-03,169147,1132,88672,10399,14338,6286,0,1431,14078,5950,19349,1311,0,1946,4094,0,161,0,57378113,41.0,638739,16.7,41.1,0.0
663
+ 2012-12-04,176612,1233,91408,10476,17511,6449,0,1678,14768,6050,20047,1377,0,2153,3286,0,176,0,59676759,40.3,676135,28.6,40.3,0.0
664
+ 2012-12-05,172555,1248,90881,8944,15090,6383,0,1793,15026,6499,19738,1401,0,1946,3444,0,162,0,59166153,41.3,675579,13.5,41.3,0.0
665
+ 2012-12-06,174808,1459,89492,9735,18191,6366,0,1855,14886,6709,19431,1315,0,2035,3191,0,143,0,59070980,37.8,675982,8.9,37.8,0.0
666
+ 2012-12-07,144028,1061,72202,12313,12342,5219,0,1317,12488,5483,16011,1048,0,1672,2742,0,130,0,47547171,32.6,574377,6.5,32.7,0.0
667
  2012-12-11,176115,1089,89390,11325,16203,6554,0,1602,16552,7005,19475,1345,0,1919,3491,0,165,0,58596755,93.2,17746100,1.2,93.2,41.7
668
  2012-12-12,173202,1166,87973,9939,15978,6705,0,1702,15840,6921,19932,1313,0,2286,3283,0,164,0,57796300,94.9,17139312,9.3,94.9,32.8
669
  2012-12-13,166849,1104,88184,8295,14239,6512,0,1585,15136,6540,18719,1257,0,1881,3243,0,154,0,56169671,94.0,16799807,21.9,94.0,41.0