tamnd commited on
Commit
961c295
·
verified ·
1 Parent(s): 53c30a5

Add 2014-06-28 — 218.4K events, 11 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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,054 days), totaling **179,934,192 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.9 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
 
@@ -134,7 +134,7 @@ duckdb.sql("""
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
- 2014 ██████████████████████░░░░░░░░ 56.6M
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 | 174 | 56,586,046 | 325,207 | 17.3 GB | 5.2 GB | 1h53m | 9h52m | 2h37m |
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 ██████████████████████░░░░░░░░ 28.8M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
@@ -610,20 +610,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
- | `pushes` | PushEvent | 90,360,037 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 9,993,138 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 15,724,862 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 7,314,837 | 4.1% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,673,685 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 16,852,983 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,478,254 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 22,597,202 | 12.6% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,291,485 | 1.3% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 211,268 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,678,091 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,978,365 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 166,648 | 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,055 days), totaling **180,152,631 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.9 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
 
 
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
+ 2014 ██████████████████████░░░░░░░░ 56.8M
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 | 175 | 56,804,485 | 324,597 | 17.4 GB | 5.2 GB | 1h54m | 9h54m | 2h38m |
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 ██████████████████████░░░░░░░░ 28.9M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 90,476,970 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 10,003,643 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,741,658 | 8.7% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 7,323,265 | 4.1% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,675,332 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 16,875,448 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,486,203 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 22,622,536 | 12.6% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,294,954 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 211,850 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,679,423 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,980,344 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 166,830 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64729b9f9c096a0f44580b08a03887341bbb415200dbc4c7df444f3609f4978d
3
+ size 50230
data/creates/2014/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90353781cafdded5fa60f2378a082c0728661f40068d00e6757bbd8115916439
3
+ size 869006
data/deletes/2014/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f295c5b594082b7c92901920fb7d69797a5d976ad09f3ab4d11e9d3472d4b28
3
+ size 94845
data/forks/2014/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c5bda8e4d2c3749cbe1a53c0761f64e4cd29ae3fc87a6de92433cfa322a67a9
3
+ size 220022
data/issue_comments/2014/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5bae7b4dce6406e621988922b356c8aeb1b40a0ae2004acef4077bdd2566d65f
3
+ size 407377
data/issues/2014/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:132f082c7f4ecefdfef261d2714cd5076a9220cd6aecd8b1e19ca21ceba8ab6a
3
+ size 274871
data/public_events/2014/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9616f07a263bb9d4c83b12e59252d7b881f6e301edf30f5e3ec592309b639e6
3
+ size 8492
data/pull_requests/2014/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24a28d257d3952e60688e4d3ef59d424a042417b4ffe94a75d11685b8f0cbde7
3
+ size 1490924
data/pushes/2014/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1489625be84f04cf8acd2c567eb821d9bcd176a1e1614d51df0c9d8c41ed1a3
3
+ size 18383146
data/stars/2014/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:220efd2ca7460ad36467cc62c2202c810ad9bc90040d31c02b216fc34006220b
3
+ size 518379
data/wiki_pages/2014/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96f450a1077a4b1fd7b1cb99fbb5da6a389cc27fa32bfef0f2efef3f4cf5f6d9
3
+ size 145140
stats.csv CHANGED
@@ -1050,6 +1050,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1050
  2014-06-24,400917,1590,199061,21132,39754,19233,0,6460,38948,15218,43168,7736,1007,3314,3887,0,409,0,142695423,267.9,40337812,46.6,267.9,43.3
1051
  2014-06-25,399097,1704,198226,22029,38694,18925,0,7582,37083,14855,44594,6562,997,3075,4376,0,395,0,145529187,272.1,40316347,36.2,272.1,42.6
1052
  2014-06-26,386150,1725,192620,18664,36327,18574,0,6443,39017,14054,42450,7271,1176,3331,4130,0,368,0,141246388,258.2,40408864,58.2,258.2,53.1
1053
- 2014-06-27,346762,1418,169519,20863,39063,16227,0,5116,32364,12087,37144,5800,842,2445,3559,0,315,0,119972613,217.2,33691155,45.8,217.2,0.0
 
1054
  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
1055
  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
 
1050
  2014-06-24,400917,1590,199061,21132,39754,19233,0,6460,38948,15218,43168,7736,1007,3314,3887,0,409,0,142695423,267.9,40337812,46.6,267.9,43.3
1051
  2014-06-25,399097,1704,198226,22029,38694,18925,0,7582,37083,14855,44594,6562,997,3075,4376,0,395,0,145529187,272.1,40316347,36.2,272.1,42.6
1052
  2014-06-26,386150,1725,192620,18664,36327,18574,0,6443,39017,14054,42450,7271,1176,3331,4130,0,368,0,141246388,258.2,40408864,58.2,258.2,53.1
1053
+ 2014-06-27,346762,1418,169519,20863,39063,16227,0,5116,32364,12087,37144,5800,842,2445,3559,0,315,0,119972613,217.2,33691155,45.8,217.2,46.5
1054
+ 2014-06-28,218439,838,116933,10505,16796,8428,0,1647,22465,7949,25334,3469,582,1332,1979,0,182,0,71508725,151.6,22462432,31.2,151.6,0.0
1055
  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
1056
  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