tamnd commited on
Commit
a51fe33
·
verified ·
1 Parent(s): 54a4900

Add 2014-07-02 — 396.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,058 days), totaling **181,193,401 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.0 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 ███████████████████████░░░░░░░ 57.8M
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 | 178 | 57,845,255 | 324,973 | 17.7 GB | 5.3 GB | 1h56m | 10h07m | 2h40m |
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 ███████████████████████░░░░░░░ 29.5M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
@@ -197,7 +197,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
197
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
198
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
199
  2013 ██████████████████████████████ 2.9M
200
- 2014 ██████████████████████████���░░░ 2.5M
201
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
202
  ```
203
 
@@ -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.3M
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 | 90,992,781 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 10,062,571 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 15,849,985 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 7,370,439 | 4.1% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,689,061 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 16,972,168 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,522,438 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 22,740,472 | 12.6% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,313,177 | 1.3% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 214,830 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,687,490 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,991,836 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 167,838 | 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,059 days), totaling **181,590,070 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.0 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 ███████████████████████░░░░░░░ 58.2M
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 | 179 | 58,241,924 | 325,373 | 17.8 GB | 5.3 GB | 1h57m | 10h12m | 2h40m |
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 ███████████████████████░░░░░░░ 29.7M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
197
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
198
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
199
  2013 ██████████████████████████████ 2.9M
200
+ 2014 ██████████████████████████░░░ 2.6M
201
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
202
  ```
203
 
 
218
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
219
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
220
  2013 ██████████████████████████████ 7.0M
221
+ 2014 ██████████████████████░░░░░░░ 5.3M
222
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
223
  ```
224
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 91,187,262 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 10,083,864 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,889,608 | 8.8% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 7,389,561 | 4.1% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,694,717 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 17,011,016 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,536,983 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 22,785,547 | 12.5% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,319,943 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 215,953 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,691,292 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,996,214 | 1.6% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 168,183 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/07/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d14a7a4918dc492fe0fbe97eb0911c2fcb52dc236485cdc1a857255029413d3c
3
+ size 119843
data/creates/2014/07/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c5252388f295e727f8de52c488cdd44642bc1003d8c4dc6fd2f69e1140e18cc
3
+ size 1586866
data/deletes/2014/07/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52441632084733b959d53e0849b9a86e9dd3c3e8707ca5598f7144fc519f53c5
3
+ size 200363
data/forks/2014/07/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30cfbf89c0e488956dc076f16307606a5cece30e586e687032ad1b0efdecf0f7
3
+ size 389775
data/issue_comments/2014/07/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e6fd4472a62378e20714651ccd5c5de9305fd894c762b7df70dfb60e2396dd9
3
+ size 962522
data/issues/2014/07/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e55e678477b5477de7a81414fc68f563b470b6aa5fbf4ce54367a580fbf0abe
3
+ size 524275
data/public_events/2014/07/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:717a6b27177c4028561b9a9c94abb755f7326704b259060a2a4ffff2367f8330
3
+ size 13374
data/pull_requests/2014/07/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce8c3559ff68334f11825ed66b17860803d01e295e33f79a1b69da39e597f161
3
+ size 3365238
data/pushes/2014/07/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ef99083993af6c630d66bc363f19b6d592fb33740ac0a90787134fdbdd11356
3
+ size 30594015
data/stars/2014/07/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4349d3da79c9ac62c2eb27914e56254bcc98bff7704e30200ade19260a7fe6a
3
+ size 833070
data/wiki_pages/2014/07/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca2dbef7dbb5f4093d3ee6eb2abc60631cb9b39c618bd2545442a10c9df8ae31
3
+ size 319742
stats.csv CHANGED
@@ -1054,6 +1054,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,37.1
1055
  2014-06-29,279603,849,137177,19950,34465,9578,0,2131,26270,9173,30338,3918,796,1720,2961,0,277,0,83832865,186.4,25128734,42.8,186.4,47.6
1056
  2014-06-30,381299,1643,189093,19915,37372,19129,0,6093,35202,13315,43136,7300,986,3316,4415,0,384,0,137976943,286.1,38761789,50.6,286.1,35.5
1057
- 2014-07-01,379868,1648,189541,19063,36490,18467,0,5505,35248,13747,44462,7005,1198,3031,4116,0,347,0,136549099,289.6,38646203,39.2,289.6,0.0
 
1058
  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
1059
  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
 
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,37.1
1055
  2014-06-29,279603,849,137177,19950,34465,9578,0,2131,26270,9173,30338,3918,796,1720,2961,0,277,0,83832865,186.4,25128734,42.8,186.4,47.6
1056
  2014-06-30,381299,1643,189093,19915,37372,19129,0,6093,35202,13315,43136,7300,986,3316,4415,0,384,0,137976943,286.1,38761789,50.6,286.1,35.5
1057
+ 2014-07-01,379868,1648,189541,19063,36490,18467,0,5505,35248,13747,44462,7005,1198,3031,4116,0,347,0,136549099,289.6,38646203,39.2,289.6,47.1
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,0.0
1059
  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
1060
  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