tamnd commited on
Commit
996e1c0
·
verified ·
1 Parent(s): 7ff5767

Add 2014-04-11 — 337.1K 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 **2014-04-10** (978 days), totaling **153,966,296 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 44.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.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
 
@@ -723,7 +723,7 @@ duckdb.sql("""
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
- 2014 ████████████░░░░░░░░░░░░░░░░░░ 31.1M
727
  ```
728
 
729
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
@@ -731,7 +731,7 @@ duckdb.sql("""
731
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
732
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
733
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
734
- | 2014 | 100 | 31,129,899 | 311,298 | 9.4 GB | 2.9 GB | 1h06m | 5h15m | 1h31m |
735
 
736
 
737
  ### Pushes per year
@@ -740,7 +740,7 @@ duckdb.sql("""
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
- 2014 ████████████░░░░░░░░░░░░░░░░░░ 15.8M
744
  ```
745
 
746
 
@@ -1154,20 +1154,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
- | `pushes` | PushEvent | 77,080,018 | 50.1% | Git pushes with commits |
1158
- | `issues` | IssuesEvent | 8,634,669 | 5.6% | Issue lifecycle events |
1159
- | `issue_comments` | IssueCommentEvent | 13,386,707 | 8.7% | Comments on issues/PRs |
1160
- | `pull_requests` | PullRequestEvent | 6,169,927 | 4.0% | PR lifecycle events |
1161
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,328,088 | 0.9% | Line-level PR comments |
1162
- | `stars` | WatchEvent | 14,497,248 | 9.4% | Repository stars |
1163
- | `forks` | ForkEvent | 5,532,612 | 3.6% | Repository forks |
1164
- | `creates` | CreateEvent | 19,614,511 | 12.7% | Branch/tag/repo creation |
1165
- | `deletes` | DeleteEvent | 1,788,765 | 1.2% | Branch/tag deletion |
1166
- | `releases` | ReleaseEvent | 146,757 | 0.1% | Release publications |
1167
- | `commit_comments` | CommitCommentEvent | 1,472,113 | 1.0% | Comments on commits |
1168
- | `wiki_pages` | GollumEvent | 2,681,678 | 1.7% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
- | `public_events` | PublicEvent | 142,430 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
 
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 **2014-04-12** (980 days), totaling **154,545,812 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 44.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.5 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
 
 
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
+ 2014 ████████████░░░░░░░░░░░░░░░░░░ 31.7M
727
  ```
728
 
729
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
 
731
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
732
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
733
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
734
+ | 2014 | 102 | 31,709,415 | 310,876 | 9.6 GB | 2.9 GB | 1h07m | 5h22m | 1h31m |
735
 
736
 
737
  ### Pushes per year
 
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
+ 2014 ████████████░░░░░░░░░░░░░░░░░░ 16.1M
744
  ```
745
 
746
 
 
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
+ | `pushes` | PushEvent | 77,383,837 | 50.1% | Git pushes with commits |
1158
+ | `issues` | IssuesEvent | 8,663,136 | 5.6% | Issue lifecycle events |
1159
+ | `issue_comments` | IssueCommentEvent | 13,438,313 | 8.7% | Comments on issues/PRs |
1160
+ | `pull_requests` | PullRequestEvent | 6,194,074 | 4.0% | PR lifecycle events |
1161
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,333,897 | 0.9% | Line-level PR comments |
1162
+ | `stars` | WatchEvent | 14,545,459 | 9.4% | Repository stars |
1163
+ | `forks` | ForkEvent | 5,553,517 | 3.6% | Repository forks |
1164
+ | `creates` | CreateEvent | 19,683,910 | 12.7% | Branch/tag/repo creation |
1165
+ | `deletes` | DeleteEvent | 1,798,245 | 1.2% | Branch/tag deletion |
1166
+ | `releases` | ReleaseEvent | 148,029 | 0.1% | Release publications |
1167
+ | `commit_comments` | CommitCommentEvent | 1,476,426 | 1.0% | Comments on commits |
1168
+ | `wiki_pages` | GollumEvent | 2,689,023 | 1.7% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
+ | `public_events` | PublicEvent | 142,949 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
data/commit_comments/2014/04/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a548e6314f169d9329e44bb40e21931dba8841f78e125201155accef463bb88
3
+ size 94538
data/creates/2014/04/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c456439fb784dc30ce80f3b3a9ab533722c24e833ce240ffd5c4ca33f7baf27a
3
+ size 1409336
data/deletes/2014/04/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd1bc6152b6a3d4e171f28897a42fb6c749974d13e3905f842504149487ac82d
3
+ size 173941
data/forks/2014/04/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17db86711e489555930fafa24eccfbb964d6750050cbc83d2f925a7dec0b41ef
3
+ size 354450
data/issue_comments/2014/04/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:477f0c3c6d3788e65046aa437d7c60b491eec3766edde6f75ca4769cce83561a
3
+ size 715041
data/issues/2014/04/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d85960ce797d606fb03190ea6ff5c10448fbcb5029d5972260e8d3391307329
3
+ size 423963
data/public_events/2014/04/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb6eb89e7adde7c14fa1a908dc81c9585b8580da08e1c7692a13eabd983dcf20
3
+ size 13430
data/pull_requests/2014/04/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56b77384b23e80235ee6836396690147fc252c7452331af77ae8497bca9aba9c
3
+ size 2649404
data/pushes/2014/04/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef73e3eab9ea2489abc4aa2fbf6b0d81ff6b2ff18941becd8304fc70713ab283
3
+ size 27570992
data/stars/2014/04/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5343f7c7f5e9d971114464c2d240a80c7b4b6b6b41d927f944a3ca1052bcef3
3
+ size 648586
data/wiki_pages/2014/04/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4307d89898db6ab44de76a3e524966c0f728296847a7684c31001883d0d99487
3
+ size 319702
stats.csv CHANGED
@@ -976,4 +976,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
976
  2014-04-07,386215,2092,194750,19185,35502,17680,0,4960,33377,14088,46996,7651,938,3210,5427,0,359,0,127095636,288.3,39018403,41.8,288.3,50.1
977
  2014-04-08,395835,2552,204853,18448,35106,18123,0,5335,33883,14200,46141,7261,808,3013,5724,0,388,0,132392784,285.1,41122399,44.5,285.1,64.3
978
  2014-04-09,387745,2547,199034,17866,34380,18202,0,6286,34067,13915,45019,6777,828,3293,5130,0,401,0,131074955,283.8,39801911,30.9,283.8,56.3
979
- 2014-04-10,392736,2372,195143,22211,43688,17365,0,5096,32495,14159,44131,6876,891,3165,4785,0,359,0,125992211,280.1,37727540,50.1,280.1,0.0
 
 
 
976
  2014-04-07,386215,2092,194750,19185,35502,17680,0,4960,33377,14088,46996,7651,938,3210,5427,0,359,0,127095636,288.3,39018403,41.8,288.3,50.1
977
  2014-04-08,395835,2552,204853,18448,35106,18123,0,5335,33883,14200,46141,7261,808,3013,5724,0,388,0,132392784,285.1,41122399,44.5,285.1,64.3
978
  2014-04-09,387745,2547,199034,17866,34380,18202,0,6286,34067,13915,45019,6777,828,3293,5130,0,401,0,131074955,283.8,39801911,30.9,283.8,56.3
979
+ 2014-04-10,392736,2372,195143,22211,43688,17365,0,5096,32495,14159,44131,6876,891,3165,4785,0,359,0,125992211,280.1,37727540,50.1,280.1,43.4
980
+ 2014-04-11,337123,2286,169732,17616,34224,15329,0,4128,28334,11808,39328,6265,796,2765,4181,0,331,0,111384975,249.1,34373383,40.9,249.1,0.0
981
+ 2014-04-12,242393,1938,134087,10851,17382,8818,0,1681,19877,9097,30071,3215,476,1548,3164,0,188,0,74621102,163.4,24248267,34.6,163.4,0.0