tamnd commited on
Commit
c6d82f7
·
verified ·
1 Parent(s): 0ed270e

Add 2014-07-06 — 267.7K 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,062 days), totaling **182,475,114 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 52.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.1 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 ███████████████████████░░░░░░░ 59.1M
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 | 182 | 59,126,968 | 324,873 | 18.1 GB | 5.4 GB | 1h59m | 10h22m | 2h44m |
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 ███████████████████████░░░░░░░ 30.1M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
@@ -175,7 +175,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
175
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
176
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
177
  2013 ██████████████████████████████ 4.3M
178
- 2014 █████████████████████░░░░░░░░ 3.1M
179
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
180
  ```
181
 
@@ -218,7 +218,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
218
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
219
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
220
  2013 ██████████████████████████████ 7.0M
221
- 2014 ███████████████████████░░░░░░░ 5.4M
222
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
223
  ```
224
 
@@ -610,20 +610,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
- | `pushes` | PushEvent | 91,628,003 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 10,131,577 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 15,972,653 | 8.8% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 7,428,161 | 4.1% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,706,449 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 17,103,609 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,568,868 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 22,887,214 | 12.5% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,334,881 | 1.3% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 218,261 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,697,889 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 3,005,385 | 1.6% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 168,916 | 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,063 days), totaling **182,742,795 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 53.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.1 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 ███████████████████████░░░░░░░ 59.4M
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 | 183 | 59,394,649 | 324,560 | 18.2 GB | 5.5 GB | 1h59m | 10h25m | 2h46m |
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 ███████████████████████░░░░░░░ 30.2M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
175
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
176
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
177
  2013 ██████████████████████████████ 4.3M
178
+ 2014 █████████████████████░░░░░░░░ 3.2M
179
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
180
  ```
181
 
 
218
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
219
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
220
  2013 ██████████████████████████████ 7.0M
221
+ 2014 ███████████████████████░░░░░░░ 5.5M
222
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
223
  ```
224
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 91,762,382 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 10,148,101 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,996,513 | 8.8% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 7,437,754 | 4.1% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,708,834 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 17,134,090 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,577,816 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 22,918,356 | 12.5% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,338,969 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 218,945 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,699,628 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 3,008,163 | 1.6% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 169,122 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33108cdde41ec3e4d6a5233932e5ff21ed30f16a5f0bc883f98caa73896f4066
3
+ size 62675
data/creates/2014/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac50fa4f8f4a7245bb0fffecde30628aabe2fc01a7aca76c50960336b8668c51
3
+ size 1026161
data/deletes/2014/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be31210dbbb8c8a8e3f6ba4c55069ba3f16d6b372d82001c658845ae62100f25
3
+ size 110657
data/forks/2014/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f70e8e61d5d14cfef2cc559ebded3d4a76a0b9bc3f917dd1f3d546ac48a3b6ff
3
+ size 258835
data/issue_comments/2014/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42bce26bb54d8d7963caa77ab938551c047ed8ac156c8eab4eaf2640d52edce2
3
+ size 493540
data/issues/2014/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58ae2a774e5e3bd8d023bc85a4cf2f82b8a04458d6366a2e2824a06fdcdfb761
3
+ size 353407
data/public_events/2014/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4cd18d542874b8cd3dc5dceb5e0c73504589ac6d125bed30a4fc003b211d3e48
3
+ size 9345
data/pull_requests/2014/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ee0092436339ea44d5ed5effa59b594ff7e29bbd67afbc09010f3a11b29aff2
3
+ size 1668433
data/pushes/2014/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a8fda52d47455ee0ed6b6b3cbc4a047578bb7f5300f07f42874ea23e7ed9e7e
3
+ size 20257226
data/stars/2014/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01b596823734f41edf0236048ff1b7d8a434572bcac80502ccff402e88d1eb8d
3
+ size 707427
data/wiki_pages/2014/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73a21922d56b020a301195bcd524688054965376af52f82fb2ceac70da3334f0
3
+ size 205996
stats.csv CHANGED
@@ -1058,6 +1058,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1058
  2014-07-02,396669,1612,194481,21293,39623,19122,0,5656,38848,14545,45075,6766,1123,3802,4378,0,345,0,139724749,290.0,38909083,57.6,290.1,42.8
1059
  2014-07-03,384108,1529,187822,22003,37389,18211,0,6606,39055,13800,42373,6737,1019,3033,4195,0,336,0,136822670,285.6,37599674,54.1,285.7,69.2
1060
  2014-07-04,286151,1003,140538,15260,29960,12270,0,3507,29226,10278,33245,4818,737,2238,2845,0,226,0,94705025,199.9,27186254,41.3,199.9,117.1
1061
- 2014-07-05,214785,789,112381,10450,15696,8119,0,1619,24312,7807,26049,3383,552,1326,2131,0,171,0,67845437,146.4,20385555,27.2,146.4,0.0
 
1062
  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
1063
  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
 
1058
  2014-07-02,396669,1612,194481,21293,39623,19122,0,5656,38848,14545,45075,6766,1123,3802,4378,0,345,0,139724749,290.0,38909083,57.6,290.1,42.8
1059
  2014-07-03,384108,1529,187822,22003,37389,18211,0,6606,39055,13800,42373,6737,1019,3033,4195,0,336,0,136822670,285.6,37599674,54.1,285.7,69.2
1060
  2014-07-04,286151,1003,140538,15260,29960,12270,0,3507,29226,10278,33245,4818,737,2238,2845,0,226,0,94705025,199.9,27186254,41.3,199.9,117.1
1061
+ 2014-07-05,214785,789,112381,10450,15696,8119,0,1619,24312,7807,26049,3383,552,1326,2131,0,171,0,67845437,146.4,20385555,27.2,146.4,111.5
1062
+ 2014-07-06,267681,874,134379,16524,23860,9593,0,2385,30481,8948,31142,4088,684,1739,2778,0,206,0,82718405,185.9,25153702,34.6,185.9,0.0
1063
  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
1064
  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