tamnd commited on
Commit
d1e4fb1
·
verified ·
1 Parent(s): ccddbbc

Add 2014-11-17 — 516.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 **2015-01-03** (1,347 days), totaling **242,936,433 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 80.1 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 ██████████████████████████████ 105.7M
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 | 303 | 105,700,320 | 348,845 | 41.8 GB | 9.8 GB | 3h34m | 19h16m | 4h29m |
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.5M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -179,8 +179,8 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
179
  ```
180
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 2.4M
182
- 2013 █████████████████████░░░░░░░░ 4.4M
183
- 2014 ██████████████████████████████ 6.0M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
@@ -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,978,290 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 13,838,186 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 21,244,644 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 9,943,515 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,432,245 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 22,585,202 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,573,322 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 30,578,014 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,254,118 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 342,547 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,193,157 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,801,368 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 224,696 | 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,348 days), totaling **243,453,346 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 80.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.3 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 ██████████████████████████████ 106.2M
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 | 304 | 106,217,233 | 349,398 | 42.1 GB | 9.9 GB | 3h35m | 19h19m | 4h31m |
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.8M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
179
  ```
180
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 2.4M
182
+ 2013 █████████████████████░░░░░░░░ 4.4M
183
+ 2014 ██████████████████████████████ 6.1M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 122,233,833 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 13,877,525 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 21,290,264 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,967,613 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,441,006 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 22,628,275 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,589,934 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 30,637,395 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,264,148 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 343,996 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,197,242 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,806,731 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 225,254 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/11/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4663e82c28b8980eefdd942bf6ed074eb55499ff94ead13904d222c841a1a6a1
3
+ size 131036
data/creates/2014/11/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a445add7f37943d0c49f4edeed497b09a97072ac5df2611a1d4d8663057b3ea6
3
+ size 5493645
data/deletes/2014/11/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a48988ab5a69d8fdf7f1bc286db34adbff295afb0f44c601bf8983645f9ebbdd
3
+ size 269780
data/forks/2014/11/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4326d57672828cb591ec0fc46371747d0f74edf1d80d4edd3317dc4c84d7820
3
+ size 457467
data/issue_comments/2014/11/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:972c45d6975f9725eac4d9cddd62f274a4dea8435ed84050147a19e95d974393
3
+ size 1070964
data/issues/2014/11/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6926d726e86c4c8dff28a3b4a7a0fc967328f21381e3190da0f6d0a5307667c
3
+ size 872038
data/public_events/2014/11/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2998c9cb176721ab35518ca134d60437be31e52849a40c3dc8d61f00206522a
3
+ size 19622
data/pull_requests/2014/11/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5878d2e828911dd34e7caf80b625403d0854e6fd98136961d65232e15797645
3
+ size 4188792
data/pushes/2014/11/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa9adbafda7934439a7e885f72e8cfb3d4d02872331c1a4d05c8d1fa6bedd2c7
3
+ size 39832627
data/stars/2014/11/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:331d5908beaae94daa332a91ce38c981a47ced62014eb2c33ad7229fb889931b
3
+ size 1912004
data/wiki_pages/2014/11/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f44fb7ff0e4d4126badb5cbfb070b0c0dd4ec8392449196cd309e4e5148362fe
3
+ size 349458
stats.csv CHANGED
@@ -1343,6 +1343,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,31.4
1346
- 2014-11-16,429838,1910,202449,70809,30544,14195,0,3574,34356,12964,45202,5515,1022,2451,4523,0,324,0,224650413,109.1,40367998,62.4,109.1,0.0
 
1347
  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
1348
  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
 
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,31.4
1346
+ 2014-11-16,429838,1910,202449,70809,30544,14195,0,3574,34356,12964,45202,5515,1022,2451,4523,0,324,0,224650413,109.1,40367998,62.4,109.1,107.6
1347
+ 2014-11-17,516913,3001,255543,39339,45620,24098,0,8761,43073,16612,59381,10030,1449,4085,5363,0,558,0,292418524,139.0,54597433,50.1,139.0,0.0
1348
  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
1349
  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