tamnd commited on
Commit
85c4f4b
·
verified ·
1 Parent(s): 8501513

Add 2013-10-22 — 249.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-21** (813 days), totaling **105,960,052 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.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
 
@@ -688,14 +688,14 @@ duckdb.sql("""
688
  ```
689
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
690
  2012 █████████████████░░░░░░░░░░░░░ 34.3M
691
- 2013 ██████████████████████████████ 57.6M
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 | 279 | 57,607,067 | 206,476 | 17.6 GB | 5.4 GB | 2h49m | 8h09m | 3h38m |
699
 
700
 
701
  ### Pushes per year
@@ -703,7 +703,7 @@ duckdb.sql("""
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
  2012 ████████████████░░░░░░░░░░░░░░ 16.5M
706
- 2013 ██████████████████████████████ 29.4M
707
  ```
708
 
709
 
@@ -720,7 +720,7 @@ duckdb.sql("""
720
 
721
  ```
722
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
723
- 2012 ████████████████████░░░░░░░░░ 1.5M
724
  2013 ██████████████████████████████ 2.2M
725
  ```
726
 
@@ -729,7 +729,7 @@ duckdb.sql("""
729
 
730
  ```
731
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
732
- 2012 █████████████████░░░░░░░░░░░░ 3.3M
733
  2013 ██████████████████████████████ 5.4M
734
  ```
735
 
@@ -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,610,701 | 49.7% | Git pushes with commits |
1118
- | `issues` | IssuesEvent | 5,990,570 | 5.7% | Issue lifecycle events |
1119
- | `issue_comments` | IssueCommentEvent | 9,041,258 | 8.5% | Comments on issues/PRs |
1120
- | `pull_requests` | PullRequestEvent | 4,099,308 | 3.9% | PR lifecycle events |
1121
- | `pr_review_comments` | PullRequestReviewCommentEvent | 794,899 | 0.8% | Line-level PR comments |
1122
- | `stars` | WatchEvent | 10,054,644 | 9.5% | Repository stars |
1123
- | `forks` | ForkEvent | 3,811,234 | 3.6% | Repository forks |
1124
- | `creates` | CreateEvent | 14,195,282 | 13.4% | Branch/tag/repo creation |
1125
- | `deletes` | DeleteEvent | 924,282 | 0.9% | Branch/tag deletion |
1126
- | `releases` | ReleaseEvent | 44,375 | 0.0% | Release publications |
1127
- | `commit_comments` | CommitCommentEvent | 1,067,240 | 1.0% | Comments on commits |
1128
- | `wiki_pages` | GollumEvent | 1,999,718 | 1.9% | Wiki page edits |
1129
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1130
- | `public_events` | PublicEvent | 96,694 | 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-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
  ```
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 | 3h38m |
699
 
700
 
701
  ### Pushes per year
 
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
  2012 ████████████████░░░░░░░░░░░░░░ 16.5M
706
+ 2013 ██████████████████████████████ 29.7M
707
  ```
708
 
709
 
 
720
 
721
  ```
722
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
723
+ 2012 ████████████████████░░░░░░░░░ 1.5M
724
  2013 ██████████████████████████████ 2.2M
725
  ```
726
 
 
729
 
730
  ```
731
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
732
+ 2012 █████████████████░░░░░░░░░░░░ 3.3M
733
  2013 ██████████████████████████████ 5.4M
734
  ```
735
 
 
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
 
data/commit_comments/2013/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a41dee2f4bf64feac31d4167de0432c044d0faaca6f779c757761987631bb3d8
3
+ size 87284
data/creates/2013/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf9f1e479cc630c15a8b17cb130527115d4a62826e5cef8ddeb367d5b129cd38
3
+ size 1035098
data/deletes/2013/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0f86b134573b55197bbe9ff8a6ee72a61b37e770928d781b008a60eecc0624a
3
+ size 124987
data/forks/2013/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e9e45763f9d9e8e1f394ec139493b5b9c279978a0324c03edb18678b0008326
3
+ size 253176
data/issue_comments/2013/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdcd6c40b7026b0481aff88f0912040c61208e56ac3b8289bdef5444fb9d5348
3
+ size 527492
data/issues/2013/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9104a1d09f814e0e0ea60eacb01fe5fcf27f9b5f7141b03d72ba7c873b17b17
3
+ size 343438
data/public_events/2013/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5ef386c091a4f5bc5979f81c3cc4df2e673a49531bf9cba15a45770bccfac1e
3
+ size 10614
data/pull_requests/2013/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a261b92af51c8dc4d15229605b3a4cee2d89271344776790c9d5d5fed883069
3
+ size 2102124
data/pushes/2013/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bb97381f4cf28dff8310bb72f376640cf5f5b03e19089501a2513078babd8f8
3
+ size 21294376
data/stars/2013/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c8acbaaf25207df1a65b91c89a4ba413f6083dfb6b1054df23ea25b5d4f9fa3
3
+ size 499006
data/wiki_pages/2013/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e3eff1ed60263b523ac39dadf961299a73c1394125ea2d562ce8ff3d95264f8
3
+ size 271688
stats.csv CHANGED
@@ -811,4 +811,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
811
  2013-10-18,256743,1682,127701,13726,22452,11686,0,3052,25084,9284,29800,4481,434,2351,4764,0,246,0,86259895,156.1,25632534,45.5,156.2,112.2
812
  2013-10-19,176540,1165,96193,8696,12017,6018,0,1059,17161,6675,20229,2258,316,1387,3217,0,149,0,54916039,99.1,17439591,31.0,99.1,35.6
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,0.0
 
 
 
811
  2013-10-18,256743,1682,127701,13726,22452,11686,0,3052,25084,9284,29800,4481,434,2351,4764,0,246,0,86259895,156.1,25632534,45.5,156.2,112.2
812
  2013-10-19,176540,1165,96193,8696,12017,6018,0,1059,17161,6675,20229,2258,316,1387,3217,0,149,0,54916039,99.1,17439591,31.0,99.1,35.6
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,0.0
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