tamnd commited on
Commit
21121d8
·
verified ·
1 Parent(s): 7636bb0

Add 2014-06-13 — 331.0K 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,039 days), totaling **174,872,973 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 50.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.4 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 ████████████████████░░░░░░░░░░ 51.5M
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 | 159 | 51,524,827 | 324,055 | 15.7 GB | 4.7 GB | 1h43m | 8h55m | 2h24m |
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 ████████████████████░░░░░░░░░░ 26.3M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
@@ -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 ████████████████████░░░░░░░���░░ 4.7M
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 | 87,794,663 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 9,739,886 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 15,262,769 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 7,082,676 | 4.1% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,601,856 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 16,382,557 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,287,426 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 22,006,950 | 12.6% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,202,378 | 1.3% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 198,061 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,634,866 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,924,494 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 161,966 | 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,041 days), totaling **175,432,276 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 50.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.4 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 ████████████████████░░░░░░░░░░ 52.1M
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 | 161 | 52,084,130 | 323,503 | 15.8 GB | 4.8 GB | 1h44m | 9h01m | 2h25m |
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 ████████████████████░░░░░░░░░░ 26.6M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
218
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
219
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
220
  2013 ██████████████████████████████ 7.0M
221
+ 2014 ████████████████████░░░░░░░░░ 4.8M
222
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
223
  ```
224
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 88,086,092 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 9,766,680 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,310,746 | 8.7% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 7,108,027 | 4.1% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,608,122 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 16,432,844 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,308,409 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 22,072,939 | 12.6% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,211,554 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 199,436 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,639,188 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,930,414 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 162,507 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d0e67ff3702ed578422822378a7345dfcc7340a68af6604b45ea0c743b71b86
3
+ size 98705
data/creates/2014/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba68c20478d5319cdb3b8a2f8a42e6bf11578ffac681b45b97bac780835e41ad
3
+ size 1404880
data/deletes/2014/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:604158f94862b7086f52af9036c8b8c338d2202afe42ed43940faeddb0c0d9e1
3
+ size 170271
data/forks/2014/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebefa46bf49e1d890a2b84e151e07b4e6bd5e8fe413cfe697ebd7e716d706bcb
3
+ size 318951
data/issue_comments/2014/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36465f1424e8350ab053b9cbafb6ec44fd9988b5fe77a4b71b9086abddfae394
3
+ size 746636
data/issues/2014/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d20a54d0cf56927ce558d8fdeb1f2f9394e06ad72a7d8cc35445d894227dfb0d
3
+ size 423995
data/public_events/2014/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2d656c8787a6cab43fee31d17e8d34a1bdce83628653793f377814f6b2d4f96
3
+ size 14146
data/pull_requests/2014/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19a46546093442e26bb4b66ac4a0da3e80b0b9899430850e4df59cf3989749c9
3
+ size 2926420
data/pushes/2014/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6f88297e92b48c8457fd3c295893d16033a94b33685748bf13787469609fa54
3
+ size 27480553
data/stars/2014/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffb1364fe5dd82967f3a3ba25220aa133009f2c42c1ebd71525450a015475026
3
+ size 643603
data/wiki_pages/2014/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e037adb9343b5cb9f1e27005f1a51a8dc87babb20a93982c5582017d1dd0815
3
+ size 187907
stats.csv CHANGED
@@ -1035,6 +1035,8 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1035
  2014-06-09,372150,1710,187955,17791,34058,17011,0,6229,35084,14076,42413,7270,753,3432,3958,0,410,0,133600249,229.0,38276170,45.6,229.0,47.9
1036
  2014-06-10,400717,1738,200567,19534,37328,18715,0,7161,39101,15414,44684,7385,944,3496,4281,0,369,0,144124985,268.5,40691408,51.1,268.5,44.4
1037
  2014-06-11,413326,1690,198024,19118,37490,18989,0,5961,36290,15149,64931,6851,967,3201,4297,0,368,0,142249064,271.2,40177157,48.3,271.2,46.0
1038
- 2014-06-12,379772,1679,192195,18831,36136,18386,0,6001,34496,14699,41792,6526,1175,3302,4215,0,339,0,137103757,264.8,38344978,45.8,264.8,0.0
 
 
1039
  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
1040
  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
 
1035
  2014-06-09,372150,1710,187955,17791,34058,17011,0,6229,35084,14076,42413,7270,753,3432,3958,0,410,0,133600249,229.0,38276170,45.6,229.0,47.9
1036
  2014-06-10,400717,1738,200567,19534,37328,18715,0,7161,39101,15414,44684,7385,944,3496,4281,0,369,0,144124985,268.5,40691408,51.1,268.5,44.4
1037
  2014-06-11,413326,1690,198024,19118,37490,18989,0,5961,36290,15149,64931,6851,967,3201,4297,0,368,0,142249064,271.2,40177157,48.3,271.2,46.0
1038
+ 2014-06-12,379772,1679,192195,18831,36136,18386,0,6001,34496,14699,41792,6526,1175,3302,4215,0,339,0,137103757,264.8,38344978,45.8,264.8,57.0
1039
+ 2014-06-13,330991,1631,167823,16405,30986,16364,0,4508,29212,12172,38326,5829,841,3000,3547,0,347,0,118286862,242.8,34416067,55.2,242.8,0.0
1040
+ 2014-06-14,228312,1262,123606,10389,16991,8987,0,1758,21075,8811,27663,3347,534,1322,2373,0,194,0,74100561,152.8,23321006,38.0,152.8,0.0
1041
  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
1042
  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