tamnd commited on
Commit
81fa46d
·
verified ·
1 Parent(s): 75308e1

Add 2014-05-02 — 337.4K 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,002 days), totaling **161,671,952 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 46.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.2 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 ███████████████░░░░░░░░░░░░░░░ 38.3M
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 | 122 | 38,323,806 | 314,129 | 11.6 GB | 3.5 GB | 1h20m | 6h45m | 1h55m |
147
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
148
 
149
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
154
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
155
  2013 ██████████████████████████████ 38.1M
156
- 2014 ███████████████░░░░░░░░░░░░░░░ 19.5M
157
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
158
  ```
159
 
@@ -164,7 +164,7 @@ duckdb.sql("""
164
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
165
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
166
  2013 ██████████████████████████████ 4.3M
167
- 2014 ██████████████░░░░░░░░░░░░░░░░ 2.0M
168
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
169
  ```
170
 
@@ -186,7 +186,7 @@ duckdb.sql("""
186
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
187
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
188
  2013 ██████████████████████████████ 7.0M
189
- 2014 ███████████████░░░░░░░░░░░░░░░ 3.5M
190
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
191
  ```
192
 
@@ -571,20 +571,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
571
 
572
  | Table | GitHub Event | Events | % | Description |
573
  |-------|-------------|-------:|---:|-------------|
574
- | `pushes` | PushEvent | 81,075,307 | 50.1% | Git pushes with commits |
575
- | `issues` | IssuesEvent | 9,027,705 | 5.6% | Issue lifecycle events |
576
- | `issue_comments` | IssueCommentEvent | 14,051,430 | 8.7% | Comments on issues/PRs |
577
- | `pull_requests` | PullRequestEvent | 6,502,112 | 4.0% | PR lifecycle events |
578
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,422,619 | 0.9% | Line-level PR comments |
579
- | `stars` | WatchEvent | 15,210,952 | 9.4% | Repository stars |
580
- | `forks` | ForkEvent | 5,806,025 | 3.6% | Repository forks |
581
- | `creates` | CreateEvent | 20,495,243 | 12.7% | Branch/tag/repo creation |
582
- | `deletes` | DeleteEvent | 1,931,733 | 1.2% | Branch/tag deletion |
583
- | `releases` | ReleaseEvent | 165,377 | 0.1% | Release publications |
584
- | `commit_comments` | CommitCommentEvent | 1,528,968 | 0.9% | Comments on commits |
585
- | `wiki_pages` | GollumEvent | 2,774,686 | 1.7% | Wiki page edits |
586
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
587
- | `public_events` | PublicEvent | 149,646 | 0.1% | Repo made public |
588
 
589
  ## How it's built
590
 
 
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,003 days), totaling **162,009,316 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 46.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.2 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 ███████████████░░░░░░░░░░░░░░░ 38.7M
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 | 123 | 38,661,170 | 314,318 | 11.7 GB | 3.6 GB | 1h21m | 6h49m | 1h55m |
147
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
148
 
149
 
 
153
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
154
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
155
  2013 ██████████████████████████████ 38.1M
156
+ 2014 ███████████████░░░░░░░░░░░░░░░ 19.7M
157
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
158
  ```
159
 
 
164
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
165
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
166
  2013 ██████████████████████████████ 4.3M
167
+ 2014 ██████████████░░░░░░░░░░░░░░░░ 2.1M
168
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
169
  ```
170
 
 
186
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
187
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
188
  2013 ██████████████████████████████ 7.0M
189
+ 2014 ███████████████░░░░░░░░░░░░░░░ 3.6M
190
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
191
  ```
192
 
 
571
 
572
  | Table | GitHub Event | Events | % | Description |
573
  |-------|-------------|-------:|---:|-------------|
574
+ | `pushes` | PushEvent | 81,243,067 | 50.1% | Git pushes with commits |
575
+ | `issues` | IssuesEvent | 9,050,140 | 5.6% | Issue lifecycle events |
576
+ | `issue_comments` | IssueCommentEvent | 14,092,716 | 8.7% | Comments on issues/PRs |
577
+ | `pull_requests` | PullRequestEvent | 6,516,887 | 4.0% | PR lifecycle events |
578
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,426,706 | 0.9% | Line-level PR comments |
579
+ | `stars` | WatchEvent | 15,237,868 | 9.4% | Repository stars |
580
+ | `forks` | ForkEvent | 5,816,138 | 3.6% | Repository forks |
581
+ | `creates` | CreateEvent | 20,530,715 | 12.7% | Branch/tag/repo creation |
582
+ | `deletes` | DeleteEvent | 1,937,041 | 1.2% | Branch/tag deletion |
583
+ | `releases` | ReleaseEvent | 166,225 | 0.1% | Release publications |
584
+ | `commit_comments` | CommitCommentEvent | 1,531,530 | 0.9% | Comments on commits |
585
+ | `wiki_pages` | GollumEvent | 2,778,541 | 1.7% | Wiki page edits |
586
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
587
+ | `public_events` | PublicEvent | 149,940 | 0.1% | Repo made public |
588
 
589
  ## How it's built
590
 
data/commit_comments/2014/05/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f0e4b1dd9f0a48e6f2e38d97b4a446da29029d5414dd90e4635867c18fca37c
3
+ size 92061
data/creates/2014/05/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03df0beab400f1a5b3dc8e24d153863545b775d83c8d7bc50e7a7dd612cfe5fd
3
+ size 1325959
data/deletes/2014/05/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84834559b98eb7394abd384a251e976eaad61e17d53cd8540c4d861d424cf7af
3
+ size 160981
data/forks/2014/05/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d921749b6f62ba13057392a904f376dc8c92d22dbca261e7e4c2959096d45220
3
+ size 318808
data/issue_comments/2014/05/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:742f8638e9e8b9edfea8e17ad64167dbd7121c7f098278aa4a8ca7bc7644d22d
3
+ size 785857
data/issues/2014/05/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f437f8afd7e286724e69b8e50ba765f69c205cf6bac75579c10ff55e3ce8872
3
+ size 477841
data/public_events/2014/05/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b308b9a2b809710adae361e5835ec8d4014bf877e7d80274f607328e5e8f733a
3
+ size 12622
data/pull_requests/2014/05/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:414840bd189a9bad1f2fd87f89e8a38fc997d79575a42d3412e8321cc4e6060c
3
+ size 2614331
data/pushes/2014/05/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db7a3538f0cef643e575eb41dc6af292eb2f3d14f37c34631f331ccea0deb18b
3
+ size 26904774
data/stars/2014/05/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eabfbfa4083e9c12985e86c2684a27d8c1ee70a32ae907aacff0fe7d70e05116
3
+ size 599762
data/wiki_pages/2014/05/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7b145bc908b7a797746031cec45592f0a01b4987859093fcd34a38091a17494
3
+ size 202748
stats.csv CHANGED
@@ -997,7 +997,8 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
997
  2014-04-28,337226,1959,173870,16968,30170,15199,0,4324,32684,11499,36940,6317,752,2455,3773,0,316,0,111187054,248.8,33731283,39.4,248.8,48.7
998
  2014-04-29,327498,1644,168726,15891,29010,15122,0,4469,30559,11222,35880,7640,791,2443,3796,0,305,0,109077892,235.6,32742007,44.5,235.6,50.5
999
  2014-04-30,343948,1650,174663,20120,36267,15936,0,4836,27910,10520,37631,6080,996,2833,4019,0,487,0,113846508,241.1,34123995,34.1,241.1,44.1
1000
- 2014-05-01,358826,1493,174968,24702,46057,15867,0,4390,29692,10622,36889,6386,843,2353,4253,0,311,0,112573772,238.7,34293262,38.0,238.7,0.0
 
1001
  2014-05-03,242207,1320,132595,11413,16984,8934,0,2055,23562,8508,28084,3366,660,1764,2743,0,219,0,75122751,154.9,24146332,29.6,154.9,0.0
1002
  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
1003
  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
 
997
  2014-04-28,337226,1959,173870,16968,30170,15199,0,4324,32684,11499,36940,6317,752,2455,3773,0,316,0,111187054,248.8,33731283,39.4,248.8,48.7
998
  2014-04-29,327498,1644,168726,15891,29010,15122,0,4469,30559,11222,35880,7640,791,2443,3796,0,305,0,109077892,235.6,32742007,44.5,235.6,50.5
999
  2014-04-30,343948,1650,174663,20120,36267,15936,0,4836,27910,10520,37631,6080,996,2833,4019,0,487,0,113846508,241.1,34123995,34.1,241.1,44.1
1000
+ 2014-05-01,358826,1493,174968,24702,46057,15867,0,4390,29692,10622,36889,6386,843,2353,4253,0,311,0,112573772,238.7,34293262,38.0,238.7,42.2
1001
+ 2014-05-02,337364,1653,167760,22435,41286,14775,0,4087,26916,10113,35472,5308,848,2562,3855,0,294,0,108320223,231.5,33495744,31.1,231.5,0.0
1002
  2014-05-03,242207,1320,132595,11413,16984,8934,0,2055,23562,8508,28084,3366,660,1764,2743,0,219,0,75122751,154.9,24146332,29.6,154.9,0.0
1003
  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
1004
  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