tamnd commited on
Commit
698d3b9
·
verified ·
1 Parent(s): 283a5d2

Add 2013-11-10 — 228.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-11-09** (831 days), totaling **110,651,536 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 30.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.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
 
@@ -482,7 +482,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
482
  | 2025-09-24 | 2 | 2 |
483
  | 2025-09-25 | 2 | 2 |
484
  | 2025-09-26 | 3 | 3 |
485
- | 2025-09-27 | 2 | 2 |
486
  | 2025-09-28 | 1 | 1 |
487
  | 2025-09-29 | 3 | 3 |
488
  | 2025-09-30 | 3 | 3 |
@@ -602,7 +602,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
602
  | 2026-02-01 | 6 | 6 |
603
  | 2026-02-02 | 20 | 12 |
604
  | 2026-02-03 | 16 | 15 |
605
- | 2026-02-04 | 18 | 18 |
606
  | 2026-02-05 | 10 | 10 |
607
  | 2026-02-06 | 8 | 7 |
608
  | 2026-02-07 | 7 | 6 |
@@ -689,14 +689,14 @@ duckdb.sql("""
689
  ```
690
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
691
  2012 ████████████████░░░░░░░░░░░░░░ 34.3M
692
- 2013 ██████████████████████████████ 62.3M
693
  ```
694
 
695
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
696
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
697
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
698
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
699
- | 2013 | 297 | 62,298,551 | 209,759 | 19.0 GB | 5.9 GB | 3h01m | 8h57m | 3h52m |
700
 
701
 
702
  ### Pushes per year
@@ -704,7 +704,7 @@ duckdb.sql("""
704
  ```
705
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
706
  2012 ███████████████░░░░░░░░░░░░░░░ 16.5M
707
- 2013 ██████████████████████████████ 31.8M
708
  ```
709
 
710
 
@@ -1115,20 +1115,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1115
 
1116
  | Table | GitHub Event | Events | % | Description |
1117
  |-------|-------------|-------:|---:|-------------|
1118
- | `pushes` | PushEvent | 54,993,823 | 49.7% | Git pushes with commits |
1119
- | `issues` | IssuesEvent | 6,254,808 | 5.7% | Issue lifecycle events |
1120
- | `issue_comments` | IssueCommentEvent | 9,454,563 | 8.5% | Comments on issues/PRs |
1121
- | `pull_requests` | PullRequestEvent | 4,300,090 | 3.9% | PR lifecycle events |
1122
- | `pr_review_comments` | PullRequestReviewCommentEvent | 844,104 | 0.8% | Line-level PR comments |
1123
- | `stars` | WatchEvent | 10,480,215 | 9.5% | Repository stars |
1124
- | `forks` | ForkEvent | 3,985,378 | 3.6% | Repository forks |
1125
- | `creates` | CreateEvent | 14,731,366 | 13.3% | Branch/tag/repo creation |
1126
- | `deletes` | DeleteEvent | 1,011,566 | 0.9% | Branch/tag deletion |
1127
- | `releases` | ReleaseEvent | 53,290 | 0.0% | Release publications |
1128
- | `commit_comments` | CommitCommentEvent | 1,108,681 | 1.0% | Comments on commits |
1129
- | `wiki_pages` | GollumEvent | 2,072,933 | 1.9% | Wiki page edits |
1130
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1131
- | `public_events` | PublicEvent | 100,927 | 0.1% | Repo made public |
1132
 
1133
  ## How it's built
1134
 
 
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-11-10** (832 days), totaling **110,879,762 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 31.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.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
 
 
482
  | 2025-09-24 | 2 | 2 |
483
  | 2025-09-25 | 2 | 2 |
484
  | 2025-09-26 | 3 | 3 |
485
+ | 2025-09-27 | 3 | 3 |
486
  | 2025-09-28 | 1 | 1 |
487
  | 2025-09-29 | 3 | 3 |
488
  | 2025-09-30 | 3 | 3 |
 
602
  | 2026-02-01 | 6 | 6 |
603
  | 2026-02-02 | 20 | 12 |
604
  | 2026-02-03 | 16 | 15 |
605
+ | 2026-02-04 | 19 | 19 |
606
  | 2026-02-05 | 10 | 10 |
607
  | 2026-02-06 | 8 | 7 |
608
  | 2026-02-07 | 7 | 6 |
 
689
  ```
690
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
691
  2012 ████████████████░░░░░░░░░░░░░░ 34.3M
692
+ 2013 ██████████████████████████████ 62.5M
693
  ```
694
 
695
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
696
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
697
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
698
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
699
+ | 2013 | 298 | 62,526,777 | 209,821 | 19.1 GB | 5.9 GB | 3h01m | 8h59m | 3h53m |
700
 
701
 
702
  ### Pushes per year
 
704
  ```
705
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
706
  2012 ███████████████░░░░░░░░░░░░░░░ 16.5M
707
+ 2013 ██████████████████████████████ 31.9M
708
  ```
709
 
710
 
 
1115
 
1116
  | Table | GitHub Event | Events | % | Description |
1117
  |-------|-------------|-------:|---:|-------------|
1118
+ | `pushes` | PushEvent | 55,112,224 | 49.7% | Git pushes with commits |
1119
+ | `issues` | IssuesEvent | 6,274,706 | 5.7% | Issue lifecycle events |
1120
+ | `issue_comments` | IssueCommentEvent | 9,470,250 | 8.5% | Comments on issues/PRs |
1121
+ | `pull_requests` | PullRequestEvent | 4,307,689 | 3.9% | PR lifecycle events |
1122
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 845,577 | 0.8% | Line-level PR comments |
1123
+ | `stars` | WatchEvent | 10,501,416 | 9.5% | Repository stars |
1124
+ | `forks` | ForkEvent | 3,993,408 | 3.6% | Repository forks |
1125
+ | `creates` | CreateEvent | 14,756,843 | 13.3% | Branch/tag/repo creation |
1126
+ | `deletes` | DeleteEvent | 1,015,105 | 0.9% | Branch/tag deletion |
1127
+ | `releases` | ReleaseEvent | 53,706 | 0.0% | Release publications |
1128
+ | `commit_comments` | CommitCommentEvent | 1,110,235 | 1.0% | Comments on commits |
1129
+ | `wiki_pages` | GollumEvent | 2,076,474 | 1.9% | Wiki page edits |
1130
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1131
+ | `public_events` | PublicEvent | 101,113 | 0.1% | Repo made public |
1132
 
1133
  ## How it's built
1134
 
data/commit_comments/2013/11/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a808ca8e09d54bd0843e307f0ac5a9c81fb719c0e8392c96ac4ff8809b635f1
3
+ size 59738
data/creates/2013/11/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d32a611cba6fa766a397d7579a9c6792a7464a552002582f21628e61d3468ea1
3
+ size 904619
data/deletes/2013/11/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19a21be5eedd3db857f8e82a6e3084bd43fbb3f8f7ea3d73311656c85019b87a
3
+ size 94287
data/forks/2013/11/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83e6007afe33774e28ad6373d4d2d4977180172b02cb43484f9b2166708c5193
3
+ size 217431
data/issue_comments/2013/11/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6580121cbb241c8f6cfa58820c7c34a92c2db4bd696f9793ef586697584612bc
3
+ size 370358
data/issues/2013/11/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90e6933ba10a0a177956ec387b77078f739905b45ce30f765f12678028bcc579
3
+ size 322024
data/public_events/2013/11/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48c0d30f9b8145e3e3d1c2202727cbb4a3867aa9399a05e7c9a90d10f81e5c94
3
+ size 8583
data/pull_requests/2013/11/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fd2b64f6e71777977eb334ffa8dc92af7d3e9399f2570ad5f99d3ce80915826
3
+ size 1316599
data/pushes/2013/11/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4353e89be2ede768d1165ff2f0e481511305bf0fe7ecd24d5547ba2dc1ad5b9
3
+ size 17368473
data/stars/2013/11/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d1948b230c500fb7b3aba11d4e88aa15c1cf854a2d48750f4c36bff61d3464d
3
+ size 463141
data/wiki_pages/2013/11/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f371ec3ba43a9f7fc0471ce06618b9526eeea0112a63fa3cf6cb483c9edf0cb3
3
+ size 251433
stats.csv CHANGED
@@ -829,4 +829,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
829
  2013-11-06,320413,2002,158722,18572,33358,14211,0,3920,28803,11991,34814,5526,591,2824,4812,0,267,0,106091867,219.7,32034468,1.2,219.7,44.8
830
  2013-11-07,305522,2020,154243,16235,27732,13838,0,4013,27939,11298,33662,6542,496,2765,4445,0,294,0,102958085,214.6,30472954,1.3,214.6,42.4
831
  2013-11-08,270463,2204,136947,14005,23039,12403,0,3377,24696,10072,31126,4912,614,2449,4390,0,229,0,91126747,195.9,27115870,20.3,195.9,52.2
832
- 2013-11-09,199631,1465,108053,11310,14159,7454,0,1239,17963,7298,22608,3020,398,1442,3069,0,153,0,62088015,134.3,19502844,39.1,134.3,0.0
 
 
829
  2013-11-06,320413,2002,158722,18572,33358,14211,0,3920,28803,11991,34814,5526,591,2824,4812,0,267,0,106091867,219.7,32034468,1.2,219.7,44.8
830
  2013-11-07,305522,2020,154243,16235,27732,13838,0,4013,27939,11298,33662,6542,496,2765,4445,0,294,0,102958085,214.6,30472954,1.3,214.6,42.4
831
  2013-11-08,270463,2204,136947,14005,23039,12403,0,3377,24696,10072,31126,4912,614,2449,4390,0,229,0,91126747,195.9,27115870,20.3,195.9,52.2
832
+ 2013-11-09,199631,1465,108053,11310,14159,7454,0,1239,17963,7298,22608,3020,398,1442,3069,0,153,0,62088015,134.3,19502844,39.1,134.3,42.9
833
+ 2013-11-10,228226,1224,118401,19898,15687,7599,0,1473,21201,8030,25477,3539,416,1554,3541,0,186,0,68267758,139.6,21376686,28.7,139.6,0.0