tamnd commited on
Commit
69651c4
·
verified ·
1 Parent(s): 12f03ba

Add 2014-04-06 — 272.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-05** (973 days), totaling **152,131,634 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 43.5 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
 
@@ -723,7 +723,7 @@ duckdb.sql("""
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
- 2014 ███████████░░░░░░░░░░░░░░░░░░░ 29.3M
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 | 95 | 29,295,237 | 308,370 | 8.9 GB | 2.7 GB | 1h03m | 4h52m | 1h26m |
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 ███████████░░░░░░░░░░░░░░░░░░░ 14.9M
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 | 76,139,705 | 50.0% | Git pushes with commits |
1158
- | `issues` | IssuesEvent | 8,542,608 | 5.6% | Issue lifecycle events |
1159
- | `issue_comments` | IssueCommentEvent | 13,215,515 | 8.7% | Comments on issues/PRs |
1160
- | `pull_requests` | PullRequestEvent | 6,088,918 | 4.0% | PR lifecycle events |
1161
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,304,333 | 0.9% | Line-level PR comments |
1162
- | `stars` | WatchEvent | 14,338,679 | 9.4% | Repository stars |
1163
- | `forks` | ForkEvent | 5,467,794 | 3.6% | Repository forks |
1164
- | `creates` | CreateEvent | 19,401,397 | 12.8% | Branch/tag/repo creation |
1165
- | `deletes` | DeleteEvent | 1,755,541 | 1.2% | Branch/tag deletion |
1166
- | `releases` | ReleaseEvent | 142,654 | 0.1% | Release publications |
1167
- | `commit_comments` | CommitCommentEvent | 1,457,455 | 1.0% | Comments on commits |
1168
- | `wiki_pages` | GollumEvent | 2,656,415 | 1.7% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
- | `public_events` | PublicEvent | 140,681 | 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-06** (974 days), totaling **152,403,765 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 43.6 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
 
 
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
+ 2014 ███████████░░░░░░░░░░░░░░░░░░░ 29.6M
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 | 96 | 29,567,368 | 307,993 | 9.0 GB | 2.7 GB | 1h03m | 4h56m | 1h27m |
735
 
736
 
737
  ### Pushes per year
 
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
+ 2014 ███████████░░░░░░░░░░░░░░░░░░░ 15.0M
744
  ```
745
 
746
 
 
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
+ | `pushes` | PushEvent | 76,286,238 | 50.1% | Git pushes with commits |
1158
+ | `issues` | IssuesEvent | 8,556,959 | 5.6% | Issue lifecycle events |
1159
+ | `issue_comments` | IssueCommentEvent | 13,238,031 | 8.7% | Comments on issues/PRs |
1160
+ | `pull_requests` | PullRequestEvent | 6,098,557 | 4.0% | PR lifecycle events |
1161
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,306,411 | 0.9% | Line-level PR comments |
1162
+ | `stars` | WatchEvent | 14,363,426 | 9.4% | Repository stars |
1163
+ | `forks` | ForkEvent | 5,476,250 | 3.6% | Repository forks |
1164
+ | `creates` | CreateEvent | 19,432,224 | 12.8% | Branch/tag/repo creation |
1165
+ | `deletes` | DeleteEvent | 1,760,200 | 1.2% | Branch/tag deletion |
1166
+ | `releases` | ReleaseEvent | 143,292 | 0.1% | Release publications |
1167
+ | `commit_comments` | CommitCommentEvent | 1,459,432 | 1.0% | Comments on commits |
1168
+ | `wiki_pages` | GollumEvent | 2,660,612 | 1.7% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
+ | `public_events` | PublicEvent | 140,923 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
data/commit_comments/2014/04/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a03ed9d17daf98d00ac6ab63bf2aa88313ce03d2ae8a789278697896199a3b67
3
+ size 77890
data/creates/2014/04/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da2f952e819dd992885a5d39423bdceef15bfa763680c791885631645c79d215
3
+ size 1068854
data/deletes/2014/04/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb79c762c80eca01001b0fccc3cc580cf1ebdd5b30fe5d90b79a4ce3986108e9
3
+ size 117719
data/forks/2014/04/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:529d364e9f9ccdcb6f4533ba188f1755b0eac56744973d7ad064e724ca57085f
3
+ size 242272
data/issue_comments/2014/04/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:763a0d23d6cc490003637cf862aea202cd5bdfcb67fb9c711047af6d376cd2eb
3
+ size 491173
data/issues/2014/04/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5fa15a6454e836411c2deaa2b5dd40ae1d10746a55f74425287175cfe53b015
3
+ size 328475
data/public_events/2014/04/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcc1657445c06cbfca4ad89c1d49539ba6658a8b7588788ec7f4bcced513add9
3
+ size 9785
data/pull_requests/2014/04/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69358aa74eed23db783860d49d517408051e0462c8ac438a8406be15316fa656
3
+ size 1682052
data/pushes/2014/04/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5a3ffd502e213556e85888b10b8de057f0e3dc7dbce4f0a6db592e3c54ff543
3
+ size 21989770
data/stars/2014/04/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c714bf09330542b41c0dcf7a4d629fdff09bc5c68927b224bd246734255415c9
3
+ size 544580
data/wiki_pages/2014/04/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:850249ce706985b7111f261baa44e9b6c3d33ebbd07e776ce82055f05e92c364
3
+ size 218908
stats.csv CHANGED
@@ -971,4 +971,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
971
  2014-04-02,337853,1910,164916,15974,33229,14823,0,4569,28922,11302,36452,17324,769,2603,4712,0,348,0,108878982,223.1,32760928,42.1,223.1,60.2
972
  2014-04-03,389241,2216,195239,19186,36216,18395,0,4826,34584,13265,47710,7726,840,3147,5533,0,358,0,129234203,300.2,38758302,46.9,300.2,43.3
973
  2014-04-04,322983,2047,164617,16750,29286,14966,0,4024,28689,10928,36572,7134,789,2583,4297,0,301,0,107856690,268.3,32584092,52.2,268.3,48.2
974
- 2014-04-05,240446,1497,130230,11393,18402,8886,0,1593,22222,8161,28028,4194,566,1676,3363,0,235,0,74537156,209.4,23899983,30.1,209.4,0.0
 
 
971
  2014-04-02,337853,1910,164916,15974,33229,14823,0,4569,28922,11302,36452,17324,769,2603,4712,0,348,0,108878982,223.1,32760928,42.1,223.1,60.2
972
  2014-04-03,389241,2216,195239,19186,36216,18395,0,4826,34584,13265,47710,7726,840,3147,5533,0,358,0,129234203,300.2,38758302,46.9,300.2,43.3
973
  2014-04-04,322983,2047,164617,16750,29286,14966,0,4024,28689,10928,36572,7134,789,2583,4297,0,301,0,107856690,268.3,32584092,52.2,268.3,48.2
974
+ 2014-04-05,240446,1497,130230,11393,18402,8886,0,1593,22222,8161,28028,4194,566,1676,3363,0,235,0,74537156,209.4,23899983,30.1,209.4,60.3
975
+ 2014-04-06,272131,1271,146533,14351,22516,9639,0,2078,24747,8456,30827,4659,638,1977,4197,0,242,0,83462497,221.1,26771478,33.7,221.1,0.0