tamnd commited on
Commit
2cd61bc
·
verified ·
1 Parent(s): 2112506

Add 2014-04-17 — 347.9K 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 **2014-04-16** (984 days), totaling **155,997,917 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 44.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.6 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
 
@@ -723,7 +723,7 @@ duckdb.sql("""
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
- 2014 █████████████░░░░░░░░░░░░░░░░░ 33.2M
727
  ```
728
 
729
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
@@ -731,7 +731,7 @@ duckdb.sql("""
731
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
732
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
733
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
734
- | 2014 | 106 | 33,161,520 | 312,844 | 10.1 GB | 3.0 GB | 1h10m | 5h39m | 1h37m |
735
 
736
 
737
  ### Pushes per year
@@ -740,7 +740,7 @@ duckdb.sql("""
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
- 2014 █████████████░░░░░░░░░░░░░░░░░ 16.9M
744
  ```
745
 
746
 
@@ -760,7 +760,7 @@ duckdb.sql("""
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
- 2014 ██████████████░░░░░░░░░░░░░░░ 1.4M
764
  ```
765
 
766
 
@@ -770,7 +770,7 @@ duckdb.sql("""
770
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
771
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
772
  2013 ██████████████████████████████ 7.0M
773
- 2014 █████████████░░░░░░░░░░░░░░░░░ 3.0M
774
  ```
775
 
776
 
@@ -1154,20 +1154,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
- | `pushes` | PushEvent | 78,118,383 | 50.1% | Git pushes with commits |
1158
- | `issues` | IssuesEvent | 8,750,688 | 5.6% | Issue lifecycle events |
1159
- | `issue_comments` | IssueCommentEvent | 13,560,390 | 8.7% | Comments on issues/PRs |
1160
- | `pull_requests` | PullRequestEvent | 6,259,304 | 4.0% | PR lifecycle events |
1161
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,353,781 | 0.9% | Line-level PR comments |
1162
- | `stars` | WatchEvent | 14,675,093 | 9.4% | Repository stars |
1163
- | `forks` | ForkEvent | 5,604,762 | 3.6% | Repository forks |
1164
- | `creates` | CreateEvent | 19,848,218 | 12.7% | Branch/tag/repo creation |
1165
- | `deletes` | DeleteEvent | 1,834,387 | 1.2% | Branch/tag deletion |
1166
- | `releases` | ReleaseEvent | 151,177 | 0.1% | Release publications |
1167
- | `commit_comments` | CommitCommentEvent | 1,487,497 | 1.0% | Comments on commits |
1168
- | `wiki_pages` | GollumEvent | 2,707,181 | 1.7% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
- | `public_events` | PublicEvent | 144,251 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
 
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 **2014-04-17** (985 days), totaling **156,345,831 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 44.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.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
 
 
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
+ 2014 █████████████░░░░░░░░░░░░░░░░░ 33.5M
727
  ```
728
 
729
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
 
731
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
732
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
733
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
734
+ | 2014 | 107 | 33,509,434 | 313,172 | 10.2 GB | 3.1 GB | 1h11m | 5h44m | 1h38m |
735
 
736
 
737
  ### Pushes per year
 
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
+ 2014 █████████████░░░░░░░░░░░░░░░░░ 17.0M
744
  ```
745
 
746
 
 
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
+ 2014 ██████████████░░░░░░░░░░░░░░░ 1.5M
764
  ```
765
 
766
 
 
770
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
771
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
772
  2013 ██████████████████████████████ 7.0M
773
+ 2014 █████████████░░░░░░░░░░░░░░░░░ 3.1M
774
  ```
775
 
776
 
 
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
+ | `pushes` | PushEvent | 78,300,942 | 50.1% | Git pushes with commits |
1158
+ | `issues` | IssuesEvent | 8,766,879 | 5.6% | Issue lifecycle events |
1159
+ | `issue_comments` | IssueCommentEvent | 13,590,471 | 8.7% | Comments on issues/PRs |
1160
+ | `pull_requests` | PullRequestEvent | 6,275,026 | 4.0% | PR lifecycle events |
1161
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,358,801 | 0.9% | Line-level PR comments |
1162
+ | `stars` | WatchEvent | 14,705,782 | 9.4% | Repository stars |
1163
+ | `forks` | ForkEvent | 5,617,390 | 3.6% | Repository forks |
1164
+ | `creates` | CreateEvent | 19,887,046 | 12.7% | Branch/tag/repo creation |
1165
+ | `deletes` | DeleteEvent | 1,840,618 | 1.2% | Branch/tag deletion |
1166
+ | `releases` | ReleaseEvent | 151,944 | 0.1% | Release publications |
1167
+ | `commit_comments` | CommitCommentEvent | 1,490,363 | 1.0% | Comments on commits |
1168
+ | `wiki_pages` | GollumEvent | 2,711,339 | 1.7% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
+ | `public_events` | PublicEvent | 144,599 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
data/commit_comments/2014/04/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebba9b9aa48a7c3264899d6b2c3c40cd5816c497d8047343d805d377c59035d1
3
+ size 95745
data/creates/2014/04/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a569c3d278fd9a339b62424f66f76e9db7c834b340cb782ef5dd81de78fe18d0
3
+ size 1442903
data/deletes/2014/04/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cbada2c73be5d2ac0e6b6d84b059cb4ef036f65b78bb2d975a27fa9109075af
3
+ size 176655
data/forks/2014/04/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:013ddf80932e3557a2b3bbd635b8f0bc5749858364bc63d369fae3c57585c96c
3
+ size 332342
data/issue_comments/2014/04/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4086299eadc31f78c467322d61076c63fc2e90a99f6e8102bc0ed676eb88037c
3
+ size 746237
data/issues/2014/04/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c555c51fcf874dd4b15d6ac6751e1b2866b5e7907d030db2b026d5b33fcd2c5
3
+ size 422927
data/public_events/2014/04/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abff7180c1373143c66f74574e9a038b2f0493e5b67633278bf97e772ca7c31b
3
+ size 13833
data/pull_requests/2014/04/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a098f66e3b5a1615549e0a5e3c9e4dd938268b84e427c3102438c0fd0803980
3
+ size 2698770
data/pushes/2014/04/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6023b0a6cf3509cbef095120244df86e99c3e864108285c5379a29587bc2943
3
+ size 28157527
data/stars/2014/04/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4fea4e2189fe017ce3c552be0372cec4fec6f3e747efa1308a893b75c1b5607
3
+ size 695382
data/wiki_pages/2014/04/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74955ad912113372d2e8784d18ce0e3815b2a4a2f644188c3d18c7968783dec5
3
+ size 286298
stats.csv CHANGED
@@ -982,4 +982,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
982
  2014-04-13,293560,1350,153123,24622,19714,10155,0,3056,26768,10245,33211,4569,680,1911,3918,0,238,0,89246012,196.5,28274201,43.4,196.5,107.1
983
  2014-04-14,403615,2345,200906,28024,34608,19433,0,5738,35522,14232,45069,8242,834,3184,5117,0,361,0,132697398,312.7,40042663,47.1,312.7,60.7
984
  2014-04-15,374205,2171,189900,17181,33576,17753,0,5681,34758,13541,44203,6521,798,3074,4717,0,331,0,124614113,278.0,37336329,43.5,278.0,60.3
985
- 2014-04-16,380725,1942,190617,17725,34179,17889,0,5409,32586,13227,41825,16810,836,2902,4406,0,372,0,124229290,278.8,37352401,31.9,278.8,0.0
 
 
982
  2014-04-13,293560,1350,153123,24622,19714,10155,0,3056,26768,10245,33211,4569,680,1911,3918,0,238,0,89246012,196.5,28274201,43.4,196.5,107.1
983
  2014-04-14,403615,2345,200906,28024,34608,19433,0,5738,35522,14232,45069,8242,834,3184,5117,0,361,0,132697398,312.7,40042663,47.1,312.7,60.7
984
  2014-04-15,374205,2171,189900,17181,33576,17753,0,5681,34758,13541,44203,6521,798,3074,4717,0,331,0,124614113,278.0,37336329,43.5,278.0,60.3
985
+ 2014-04-16,380725,1942,190617,17725,34179,17889,0,5409,32586,13227,41825,16810,836,2902,4406,0,372,0,124229290,278.8,37352401,31.9,278.8,55.3
986
+ 2014-04-17,347914,1826,182559,16191,30081,15722,0,5020,30689,12628,38828,6231,767,2866,4158,0,348,0,116443650,257.2,35068619,33.0,257.2,0.0