tamnd commited on
Commit
1d64b87
·
verified ·
1 Parent(s): bf7ec51

Add 2013-11-01 — 241.6K 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-31** (823 days), totaling **108,626,993 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.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
 
@@ -686,24 +686,24 @@ duckdb.sql("""
686
  ## Events per year
687
 
688
  ```
689
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
690
- 2012 ████████████████░░░░░░░░░░░░░ 34.3M
691
- 2013 ██████████████████████████████ 60.3M
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 | 289 | 60,274,008 | 208,560 | 18.4 GB | 5.7 GB | 2h57m | 8h35m | 3h46m |
699
 
700
 
701
  ### Pushes per year
702
 
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
- 2012 ███████████████░░░░░░░░░░░░░░ 16.5M
706
- 2013 ██████████████████████████████ 30.8M
707
  ```
708
 
709
 
@@ -720,7 +720,7 @@ duckdb.sql("""
720
 
721
  ```
722
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
723
- 2012 ███████████████████░░░░░░░░░░ 1.5M
724
  2013 ██████████████████████████████ 2.3M
725
  ```
726
 
@@ -730,7 +730,7 @@ duckdb.sql("""
730
  ```
731
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
732
  2012 ████████████��████░░░░░░░░░░░░░ 3.3M
733
- 2013 ██████████████████████████████ 5.6M
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 | 53,956,032 | 49.7% | Git pushes with commits |
1118
- | `issues` | IssuesEvent | 6,142,971 | 5.7% | Issue lifecycle events |
1119
- | `issue_comments` | IssueCommentEvent | 9,280,001 | 8.5% | Comments on issues/PRs |
1120
- | `pull_requests` | PullRequestEvent | 4,214,089 | 3.9% | PR lifecycle events |
1121
- | `pr_review_comments` | PullRequestReviewCommentEvent | 822,888 | 0.8% | Line-level PR comments |
1122
- | `stars` | WatchEvent | 10,297,053 | 9.5% | Repository stars |
1123
- | `forks` | ForkEvent | 3,909,111 | 3.6% | Repository forks |
1124
- | `creates` | CreateEvent | 14,501,215 | 13.3% | Branch/tag/repo creation |
1125
- | `deletes` | DeleteEvent | 975,792 | 0.9% | Branch/tag deletion |
1126
- | `releases` | ReleaseEvent | 49,293 | 0.0% | Release publications |
1127
- | `commit_comments` | CommitCommentEvent | 1,091,573 | 1.0% | Comments on commits |
1128
- | `wiki_pages` | GollumEvent | 2,041,334 | 1.9% | Wiki page edits |
1129
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1130
- | `public_events` | PublicEvent | 99,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-11-02** (825 days), totaling **109,040,938 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.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
 
 
686
  ## Events per year
687
 
688
  ```
689
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
690
+ 2012 ████████████████░░░░░░░░░░░░░ 34.3M
691
+ 2013 ██████████████████████████████ 60.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 | 291 | 60,687,953 | 208,549 | 18.5 GB | 5.7 GB | 2h59m | 8h39m | 3h47m |
699
 
700
 
701
  ### Pushes per year
702
 
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
+ 2012 ███████████████░░░░░░░░░░░░░░ 16.5M
706
+ 2013 ██████████████████████████████ 31.0M
707
  ```
708
 
709
 
 
720
 
721
  ```
722
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
723
+ 2012 ███████████████████░░░░░░░░░░ 1.5M
724
  2013 ██████████████████████████████ 2.3M
725
  ```
726
 
 
730
  ```
731
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
732
  2012 ████████████��████░░░░░░░░░░░░░ 3.3M
733
+ 2013 ██████████████████████████████ 5.7M
734
  ```
735
 
736
 
 
1114
 
1115
  | Table | GitHub Event | Events | % | Description |
1116
  |-------|-------------|-------:|---:|-------------|
1117
+ | `pushes` | PushEvent | 54,168,749 | 49.7% | Git pushes with commits |
1118
+ | `issues` | IssuesEvent | 6,167,839 | 5.7% | Issue lifecycle events |
1119
+ | `issue_comments` | IssueCommentEvent | 9,315,083 | 8.5% | Comments on issues/PRs |
1120
+ | `pull_requests` | PullRequestEvent | 4,231,011 | 3.9% | PR lifecycle events |
1121
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 826,581 | 0.8% | Line-level PR comments |
1122
+ | `stars` | WatchEvent | 10,333,482 | 9.5% | Repository stars |
1123
+ | `forks` | ForkEvent | 3,924,003 | 3.6% | Repository forks |
1124
+ | `creates` | CreateEvent | 14,549,902 | 13.3% | Branch/tag/repo creation |
1125
+ | `deletes` | DeleteEvent | 982,572 | 0.9% | Branch/tag deletion |
1126
+ | `releases` | ReleaseEvent | 50,198 | 0.0% | Release publications |
1127
+ | `commit_comments` | CommitCommentEvent | 1,095,276 | 1.0% | Comments on commits |
1128
+ | `wiki_pages` | GollumEvent | 2,047,682 | 1.9% | Wiki page edits |
1129
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1130
+ | `public_events` | PublicEvent | 99,542 | 0.1% | Repo made public |
1131
 
1132
  ## How it's built
1133
 
data/commit_comments/2013/11/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a6b7aea70edec5f83eb2417399706d97909bbf49a8dee5fc38de222f0594dcc
3
+ size 77990
data/creates/2013/11/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c421bb61f93173757c503571edc4cdee6ea5ca22b30f605feb4dfd35c1ac8558
3
+ size 1072240
data/deletes/2013/11/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe4765da71c795e333ed6d9eeeb02bd3d9c79f18fbbd7006afa03a86a083fc7d
3
+ size 114110
data/forks/2013/11/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a8310b064fbc3191ecf5ead2b0a9bb215e4472b1c8338b2864be5bbe373b1a3
3
+ size 233017
data/issue_comments/2013/11/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dec53cc454f9a734b776d297b90e17c689285839e69cc26b882537f303529d99
3
+ size 517262
data/issues/2013/11/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a065d4feefd401afddfb5bdf100b05c17667b3268da21b32ece1cccc44295ab5
3
+ size 354680
data/public_events/2013/11/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8272edbe724db6e9c1dffd265db0b73f4dd0bc02fc4b34c9d501c38110d7c7e9
3
+ size 9827
data/pull_requests/2013/11/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec283d6751f308ba02358c55e243ddc0e8ea4520318fa7c39ccceac94c70c998
3
+ size 1843161
data/pushes/2013/11/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f2fb3ffc63f0b7a4894f5bddf54ab331f826e088d865f3dc4d4a5ec9fb620bf
3
+ size 19378897
data/stars/2013/11/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50bdd59fe68eb6652dbaa291552d869a6aa820985350a7991bcb4ae85ef4a17d
3
+ size 479401
data/wiki_pages/2013/11/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a9dd4294b52083a6c456d7792e6bd990b32d04b69bba2329affbbbc167b8a88
3
+ size 258280
stats.csv CHANGED
@@ -821,4 +821,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
821
  2013-10-28,307864,1780,150926,15955,26374,13847,0,3336,27170,11071,41007,7528,590,3332,4613,0,335,0,102038718,194.9,30952715,46.3,194.9,84.0
822
  2013-10-29,306953,1964,154086,15948,27198,13156,0,3300,28464,11786,35034,8023,565,2771,4352,0,306,0,101772187,198.1,30790707,43.0,198.1,56.2
823
  2013-10-30,306520,1696,148701,21683,31605,13418,0,3446,27172,11356,31765,7129,563,2774,4928,0,284,0,99180585,194.3,29478887,35.5,194.3,38.3
824
- 2013-10-31,279493,1737,141508,15903,25529,12192,0,3258,25349,10216,31437,4615,506,2796,4208,0,239,0,91059583,173.5,27399640,41.5,173.5,0.0
 
 
 
821
  2013-10-28,307864,1780,150926,15955,26374,13847,0,3336,27170,11071,41007,7528,590,3332,4613,0,335,0,102038718,194.9,30952715,46.3,194.9,84.0
822
  2013-10-29,306953,1964,154086,15948,27198,13156,0,3300,28464,11786,35034,8023,565,2771,4352,0,306,0,101772187,198.1,30790707,43.0,198.1,56.2
823
  2013-10-30,306520,1696,148701,21683,31605,13418,0,3446,27172,11356,31765,7129,563,2774,4928,0,284,0,99180585,194.3,29478887,35.5,194.3,38.3
824
+ 2013-10-31,279493,1737,141508,15903,25529,12192,0,3258,25349,10216,31437,4615,506,2796,4208,0,239,0,91059583,173.5,27399640,41.5,173.5,44.6
825
+ 2013-11-01,241589,1507,120441,15167,22259,10691,0,2733,21189,8560,28368,4048,537,2262,3613,0,214,0,79980764,143.5,24338865,71.2,143.5,0.0
826
+ 2013-11-02,172356,1070,92276,9701,12823,6231,0,960,15240,6332,20319,2732,368,1441,2735,0,128,0,54006565,101.6,16933502,25.9,101.6,0.0