tamnd commited on
Commit
bad0a0c
·
verified ·
1 Parent(s): 7b4776a

Add 2014-11-15 — 379.3K 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,345 days), totaling **242,127,278 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 79.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.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
 
@@ -138,7 +138,7 @@ duckdb.sql("""
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ████████████░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 █████████████████████░░░░░░░░░ 76.2M
141
- 2014 ██████████████████████████████ 104.9M
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 | 301 | 104,891,165 | 348,475 | 41.4 GB | 9.7 GB | 3h32m | 19h13m | 4h28m |
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 ██████████████████████████████ 53.1M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -177,7 +177,7 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
177
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
178
 
179
  ```
180
- 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ████████████░░░��░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████████░░░░░░░░ 4.4M
183
  2014 ██████████████████████████████ 5.9M
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 121,594,374 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 13,707,689 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 21,185,368 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 9,916,929 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,426,181 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 22,522,637 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,549,536 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 30,491,694 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,243,587 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 340,678 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,188,727 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,792,975 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 224,028 | 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,346 days), totaling **242,506,595 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 79.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.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
 
 
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ████████████░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 █████████████████████░░░░░░░░░ 76.2M
141
+ 2014 ██████████████████████████████ 105.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 | 302 | 105,270,482 | 348,577 | 41.6 GB | 9.8 GB | 3h33m | 19h15m | 4h29m |
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 ██████████████████████████████ 53.3M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
177
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
178
 
179
  ```
180
+ 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ████████████░░░��░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████████░░░░░░░░ 4.4M
183
  2014 ██████████████████████████████ 5.9M
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 121,775,841 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 13,767,377 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 21,214,100 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,929,320 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,428,671 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 22,550,846 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,560,358 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 30,532,812 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,248,603 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 341,525 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,190,706 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,796,845 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 224,372 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/11/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f647b496b276bb9070451aca929a6ec90ca8bbd03feffacde3f7d8f7609305cb
3
+ size 71142
data/creates/2014/11/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44523e38fd67aa7ad8cab91781ba47e1a6acf43aca8b1a50b3cc6b35a3b333fb
3
+ size 5099070
data/deletes/2014/11/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc01b4ed6d390bf9542fc7b271a708b66342928c5b24d3381ffd38271ce76b20
3
+ size 136489
data/forks/2014/11/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a38a1721484ebbf981068e4d3d83807c05639ce9126b5c841e3e78e181d83a8
3
+ size 288964
data/issue_comments/2014/11/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d084c48a1a928ba02c9f1f0b559fb45f8447e3a4acfa475c5d8c77ef02742e9
3
+ size 638344
data/issues/2014/11/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a41344e1700e4dd71e2e05dcfb030b8e57e8888e7af93ef03e516c222903eb5a
3
+ size 985080
data/public_events/2014/11/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3257af2b9be43cb170dc5f3de1880bb516ff38d91c35d46aa1785f7bc6103c23
3
+ size 13419
data/pull_requests/2014/11/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47f51a787fe94af801f3acf3d39ef27ed6aad08a1a7cbf9b879cc246b5a1d1b7
3
+ size 2077897
data/pushes/2014/11/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a81f185b81fb80eb72b11f432dba317b5271cee9ce7d5692e56a42c14846839
3
+ size 25990789
data/stars/2014/11/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:038fb9294c48412b2caa6bc401bb57ac639306d3513f4bbff8384cf804bff07c
3
+ size 1318444
data/wiki_pages/2014/11/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f200e0ff931e01a7c29da627c42a4dc56013f6d2f3a7df7730a9d98a8938911
3
+ size 202827
stats.csv CHANGED
@@ -1341,6 +1341,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1341
  2014-11-11,502755,2885,250071,29193,50685,23272,0,8088,42361,16635,58283,10949,1329,3594,4907,0,503,0,282512454,136.0,54252927,57.7,136.0,33.4
1342
  2014-11-12,477960,2668,235724,24729,46262,22893,0,8178,47429,16159,54963,8158,1343,3384,5560,0,510,0,272938545,129.9,50815000,55.8,129.9,35.3
1343
  2014-11-13,469146,2636,230702,37603,40417,20521,0,7453,44218,15456,51672,8208,1188,3449,5149,0,474,0,266336613,125.3,49191325,59.4,125.3,37.5
1344
- 2014-11-14,470118,3044,222962,53477,39053,20463,0,7029,39187,14233,52578,8479,1111,3221,4782,0,499,0,269689027,128.1,51981891,59.7,128.1,0.0
 
1345
  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
1346
  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
 
1341
  2014-11-11,502755,2885,250071,29193,50685,23272,0,8088,42361,16635,58283,10949,1329,3594,4907,0,503,0,282512454,136.0,54252927,57.7,136.0,33.4
1342
  2014-11-12,477960,2668,235724,24729,46262,22893,0,8178,47429,16159,54963,8158,1343,3384,5560,0,510,0,272938545,129.9,50815000,55.8,129.9,35.3
1343
  2014-11-13,469146,2636,230702,37603,40417,20521,0,7453,44218,15456,51672,8208,1188,3449,5149,0,474,0,266336613,125.3,49191325,59.4,125.3,37.5
1344
+ 2014-11-14,470118,3044,222962,53477,39053,20463,0,7029,39187,14233,52578,8479,1111,3221,4782,0,499,0,269689027,128.1,51981891,59.7,128.1,38.1
1345
+ 2014-11-15,379317,2344,181467,59688,28732,12391,0,2490,28209,10822,41118,5016,847,1979,3870,0,344,0,199238480,96.5,36822465,55.9,96.5,0.0
1346
  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
1347
  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