tamnd commited on
Commit
11a5194
·
verified ·
1 Parent(s): 0e61283

Add 2013-10-24 — 284.2K 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 **2013-10-23** (815 days), totaling **106,487,425 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 29.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.1 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
 
@@ -688,14 +688,14 @@ duckdb.sql("""
688
  ```
689
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
690
  2012 █████████████████░░░░░░░░░░░░░ 34.3M
691
- 2013 ██████████████████████████████ 58.1M
692
  ```
693
 
694
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
695
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
696
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
697
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
698
- | 2013 | 281 | 58,134,440 | 206,884 | 17.7 GB | 5.5 GB | 2h51m | 8h13m | 3h39m |
699
 
700
 
701
  ### Pushes per year
@@ -703,7 +703,7 @@ duckdb.sql("""
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
  2012 ████████████████░░░░░░░░░░░░░░ 16.5M
706
- 2013 ██████████████████████████████ 29.7M
707
  ```
708
 
709
 
@@ -712,14 +712,14 @@ duckdb.sql("""
712
  ```
713
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
714
  2012 █████████████████░░░░░░░░░░░░░ 1.9M
715
- 2013 ██████████████████████████████ 3.3M
716
  ```
717
 
718
 
719
  ### Pull requests per year
720
 
721
  ```
722
- 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
723
  2012 ████████████████████░░░░░░░░░░ 1.5M
724
  2013 ██████████████████████████████ 2.2M
725
  ```
@@ -730,7 +730,7 @@ duckdb.sql("""
730
  ```
731
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
732
  2012 █████████████████░░░░░░░░░░░░░ 3.3M
733
- 2013 ██████████████████████████████ 5.4M
734
  ```
735
 
736
 
@@ -1114,20 +1114,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1114
 
1115
  | Table | GitHub Event | Events | % | Description |
1116
  |-------|-------------|-------:|---:|-------------|
1117
- | `pushes` | PushEvent | 52,873,253 | 49.7% | Git pushes with commits |
1118
- | `issues` | IssuesEvent | 6,020,666 | 5.7% | Issue lifecycle events |
1119
- | `issue_comments` | IssueCommentEvent | 9,089,987 | 8.5% | Comments on issues/PRs |
1120
- | `pull_requests` | PullRequestEvent | 4,122,948 | 3.9% | PR lifecycle events |
1121
- | `pr_review_comments` | PullRequestReviewCommentEvent | 801,160 | 0.8% | Line-level PR comments |
1122
- | `stars` | WatchEvent | 10,104,616 | 9.5% | Repository stars |
1123
- | `forks` | ForkEvent | 3,830,987 | 3.6% | Repository forks |
1124
- | `creates` | CreateEvent | 14,255,138 | 13.4% | Branch/tag/repo creation |
1125
- | `deletes` | DeleteEvent | 933,029 | 0.9% | Branch/tag deletion |
1126
- | `releases` | ReleaseEvent | 45,154 | 0.0% | Release publications |
1127
- | `commit_comments` | CommitCommentEvent | 1,072,138 | 1.0% | Comments on commits |
1128
- | `wiki_pages` | GollumEvent | 2,007,729 | 1.9% | Wiki page edits |
1129
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1130
- | `public_events` | PublicEvent | 97,200 | 0.1% | Repo made public |
1131
 
1132
  ## How it's built
1133
 
 
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 **2013-10-25** (817 days), totaling **107,031,907 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 29.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.1 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
 
 
688
  ```
689
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
690
  2012 █████████████████░░░░░░░░░░░░░ 34.3M
691
+ 2013 ██████████████████████████████ 58.7M
692
  ```
693
 
694
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
695
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
696
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
697
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
698
+ | 2013 | 283 | 58,678,922 | 207,346 | 17.9 GB | 5.5 GB | 2h53m | 8h19m | 3h40m |
699
 
700
 
701
  ### Pushes per year
 
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
  2012 ████████████████░░░░░░░░░░░░░░ 16.5M
706
+ 2013 ██████████████████████████████ 30.0M
707
  ```
708
 
709
 
 
712
  ```
713
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
714
  2012 █████████████████░░░░░░░░░░░░░ 1.9M
715
+ 2013 ██████████████████████████████ 3.4M
716
  ```
717
 
718
 
719
  ### Pull requests per year
720
 
721
  ```
722
+ 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
723
  2012 ████████████████████░░░░░░░░░░ 1.5M
724
  2013 ██████████████████████████████ 2.2M
725
  ```
 
730
  ```
731
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
732
  2012 █████████████████░░░░░░░░░░░░░ 3.3M
733
+ 2013 ██████████████████████████████ 5.5M
734
  ```
735
 
736
 
 
1114
 
1115
  | Table | GitHub Event | Events | % | Description |
1116
  |-------|-------------|-------:|---:|-------------|
1117
+ | `pushes` | PushEvent | 53,145,154 | 49.7% | Git pushes with commits |
1118
+ | `issues` | IssuesEvent | 6,053,949 | 5.7% | Issue lifecycle events |
1119
+ | `issue_comments` | IssueCommentEvent | 9,141,996 | 8.5% | Comments on issues/PRs |
1120
+ | `pull_requests` | PullRequestEvent | 4,147,283 | 3.9% | PR lifecycle events |
1121
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 807,041 | 0.8% | Line-level PR comments |
1122
+ | `stars` | WatchEvent | 10,152,829 | 9.5% | Repository stars |
1123
+ | `forks` | ForkEvent | 3,850,648 | 3.6% | Repository forks |
1124
+ | `creates` | CreateEvent | 14,316,347 | 13.4% | Branch/tag/repo creation |
1125
+ | `deletes` | DeleteEvent | 943,005 | 0.9% | Branch/tag deletion |
1126
+ | `releases` | ReleaseEvent | 46,242 | 0.0% | Release publications |
1127
+ | `commit_comments` | CommitCommentEvent | 1,076,672 | 1.0% | Comments on commits |
1128
+ | `wiki_pages` | GollumEvent | 2,016,169 | 1.9% | Wiki page edits |
1129
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1130
+ | `public_events` | PublicEvent | 97,680 | 0.1% | Repo made public |
1131
 
1132
  ## How it's built
1133
 
data/commit_comments/2013/10/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35af51a366e0fa4a8fe4c9771af32f8683924e9b3504117ae4109996f3681686
3
+ size 85309
data/creates/2013/10/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0bf907b8ac4093a977c8fa8df3b1f216f2720d6c70aca0d3482e5bde6f4b27f
3
+ size 1178909
data/deletes/2013/10/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04ba679f16cd6ac86d9e2f55e0bed89da057f15477e244f9a1249aeb2c28eda0
3
+ size 139745
data/forks/2013/10/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf9775795798e86a03eb09c9b541fcf4c90ec0e6a83a79671e04419b0d5be4e3
3
+ size 278088
data/issue_comments/2013/10/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9694af0034803d7af579229833a364070c6443d73d2ff2f1365cc7263e9f76d1
3
+ size 727639
data/issues/2013/10/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a7f2ed308b4ad375977278870e2e5ceb288b0890787059b0bd16b3b7455a4c8
3
+ size 436012
data/public_events/2013/10/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:414f37e0a359af02760be1fb408df9334946ed8773ce4a6105373b4bb9f4b8a4
3
+ size 10706
data/pull_requests/2013/10/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0bbfd3c6e9f9f5e7c1e04cf3cf0b0211ec7873e1ef9666ca1279b5d9bfc7b6a
3
+ size 2245058
data/pushes/2013/10/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d86b28c43777f44a5cc6392f4e42d1529897e7a9e486030d46b7fe986fc1b1c
3
+ size 22840897
data/stars/2013/10/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00ffab3a71b9bdf178abbfad2c7f73f8bc961c28e0a7a29457e72e7e3dd78abc
3
+ size 539764
data/wiki_pages/2013/10/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dc0804e51b6df6c776b7cc517ab704303968134e38ed9de167a6ec32b3796af
3
+ size 287208
stats.csv CHANGED
@@ -813,4 +813,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
813
  2013-10-20,188550,976,102428,10048,13334,6338,0,1120,17397,6578,21440,3127,369,1541,3653,0,201,0,59361533,108.8,18917584,36.6,108.8,32.0
814
  2013-10-21,260539,1702,132216,13237,22664,11636,0,2998,24003,10105,29865,4589,444,2445,4358,0,277,0,87999917,148.8,27030111,28.9,148.8,39.3
815
  2013-10-22,249214,1348,126140,13501,22107,11373,0,3034,22545,9560,28364,4439,341,2483,3735,0,244,0,85767370,142.6,26549283,53.0,142.6,48.7
816
- 2013-10-23,278159,2225,136412,16595,26622,12267,0,3227,27427,10193,31492,4308,438,2415,4276,0,262,0,93296398,150.6,28504908,47.4,150.7,0.0
 
 
 
813
  2013-10-20,188550,976,102428,10048,13334,6338,0,1120,17397,6578,21440,3127,369,1541,3653,0,201,0,59361533,108.8,18917584,36.6,108.8,32.0
814
  2013-10-21,260539,1702,132216,13237,22664,11636,0,2998,24003,10105,29865,4589,444,2445,4358,0,277,0,87999917,148.8,27030111,28.9,148.8,39.3
815
  2013-10-22,249214,1348,126140,13501,22107,11373,0,3034,22545,9560,28364,4439,341,2483,3735,0,244,0,85767370,142.6,26549283,53.0,142.6,48.7
816
+ 2013-10-23,278159,2225,136412,16595,26622,12267,0,3227,27427,10193,31492,4308,438,2415,4276,0,262,0,93296398,150.6,28504908,47.4,150.7,43.8
817
+ 2013-10-24,284228,1685,138989,19831,29699,12797,0,3184,24917,10396,30463,4869,563,2413,4169,0,253,0,93516314,160.5,28769335,63.1,160.5,0.0
818
+ 2013-10-25,260254,1787,132912,13452,22310,11538,0,2697,23296,9265,30746,5107,525,2121,4271,0,227,0,88191541,147.1,27079321,33.9,147.1,0.0