tamnd commited on
Commit
1c8d452
·
verified ·
1 Parent(s): 599418d

Add 2011-07-16 to 2011-07-22 — 7 days, 355.6K events, 7 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 **2015-01-03** (1,124 days), totaling **187,492,475 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 54.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.9 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
 
@@ -133,19 +133,19 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 16.3M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ████████████████████████░░░░░ 61.9M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 296 | 16,320,444 | 55,136 | 3.1 GB | 965.2 MB | 1h06m | 52m06s | 1h29m |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 191 | 61,920,029 | 324,188 | 19.0 GB | 5.6 GB | 2h03m | 10h44m | 2h52m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -154,10 +154,10 @@ duckdb.sql("""
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 7.9M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ████████████████████████░░░░░░ 31.5M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -175,10 +175,10 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 848.1K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
- 2014 ██████████████████████░░░░░░░ 3.3M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
@@ -198,7 +198,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
- 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 428.2K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 94,246,935 | 50.3% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,381,897 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,306,723 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,605,329 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,641,014 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,740,341 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,529,791 | 12.5% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,410,127 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,749,430 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,090,811 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 120,013 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 173,324 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
 
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 **2015-01-03** (1,129 days), totaling **187,910,459 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 54.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.9 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
 
 
133
  ## Events per year
134
 
135
  ```
136
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 16.5M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 ████████████████████████░░░░░ 62.2M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 300 | 16,504,793 | 55,015 | 3.2 GB | 966.1 MB | 1h06m | 52m37s | 1h29m |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 192 | 62,153,664 | 323,717 | 19.1 GB | 5.7 GB | 2h04m | 10h49m | 2h52m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.0M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ████████████████████████░░░░░░ 31.6M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 857.8K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
+ 2014 ██████████████████████░░░░░░░ 3.3M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
 
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
+ 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 433.3K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 94,460,534 | 50.3% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,401,456 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,335,007 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,618,673 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,742,949 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,683,924 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,754,521 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,594,832 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,416,218 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 226,213 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,753,502 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,097,050 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 120,949 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 173,648 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/07/16.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:86e35e84a4f7e7d080b5e78b0e55aec97af885409603c29a07ef1a0040be10b0
3
- size 126075
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8f8b621259f07b9c125e5d16392c78b763bbe83e271e5f17870bcf05fc37762
3
+ size 182362
data/stars/2011/07/17.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:de512962610070d96a90bd48517da9c2afbb8b857fc91fb99ac668b26b4eb01a
3
- size 137530
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb3f40563a6c80fbf1c81314bc1139876eba66137881cd8e89860af462c7a6e1
3
+ size 201697
data/stars/2011/07/18.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6162d4b2639d177e745c191d276a9898c52e3b5cc3ba63da48ad372b8fc5d6ce
3
- size 194382
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2630009bdf6955e8ad090ee9a6d79f1ce8a06251eac032a5ebf5d3e2c02e43d4
3
+ size 287453
data/stars/2011/07/19.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:05619f49fd4e49e0222568d021eda911829f10a1285766935a1492be759240df
3
- size 182834
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:618363baf5221f28d6bad1df96b3294af2d05ea163f0ea69a50b117eb3bc6696
3
+ size 271145
data/stars/2011/07/20.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9077d4a9ce6de887d9db57ca5f9c35e1f8f7133e499b03d23438498c20ed2515
3
- size 191307
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b8a95a8d4190af4c34d27a08bcca433cdfa42602fbf605e57fc875fa89d69bf
3
+ size 281305
data/stars/2011/07/21.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b63a98366e965f28f50d799683a5f3f022d012e551fda9b15cd4c865dae567a0
3
- size 184713
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fc7160ffce011df8e8bfb4f0535ae1e3e31823b9ebee4185a9aef5a121b522e
3
+ size 272076
data/stars/2011/07/22.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fb598c63953b1eec76da541f85de26b5e9fa477f290cb44690e69c45109d7486
3
- size 209304
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59d742b53dfeef31161ffe0de2314f6b67176ab33101fa482d81980021871053
3
+ size 299724
stats.csv CHANGED
@@ -146,19 +146,23 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
146
  2011-07-06,59903,0,30191,3876,5271,1777,0,0,6192,1757,7529,584,0,828,1524,335,39,0,11088651,9.1,271314,8.6,9.1,4.9
147
  2011-07-07,59146,0,29736,4563,5930,1724,0,0,5661,1718,6759,711,0,781,1195,316,52,0,10569418,10.8,255210,12.9,10.8,4.9
148
  2011-07-08,55125,0,27858,4357,5228,1497,0,0,5247,1493,6659,530,0,649,1240,320,47,0,9480776,9.5,236854,8.2,9.5,4.9
149
- 2011-07-09,37227,0,19703,2248,2938,992,0,0,3929,976,4674,335,0,506,685,206,35,0,6792863,7.4,173669,17.0,7.4,0.0
150
- 2011-07-10,37235,0,19487,1861,2291,951,0,0,4436,1124,5099,405,0,490,895,166,30,0,6669866,7.0,189616,6.3,7.0,0.0
151
- 2011-07-11,53097,0,28106,2883,3861,1681,0,0,5832,1578,6364,498,0,703,1168,368,55,0,9988279,9.4,280898,7.8,9.4,0.0
152
- 2011-07-12,57108,0,29815,3021,4101,1780,0,0,6166,1665,7266,664,0,832,1443,296,59,0,10750976,9.2,269057,21.8,9.2,0.0
153
- 2011-07-13,55698,0,28918,3104,4087,1807,0,0,5841,1725,6864,666,0,938,1367,325,56,0,10420914,9.0,254991,6.7,9.0,0.0
154
- 2011-07-14,53800,0,26717,3721,4197,1597,0,0,5249,1519,8046,606,0,768,1071,263,46,0,9527821,7.7,233161,14.9,7.7,0.0
155
- 2011-07-15,49232,0,25727,2498,3276,1421,0,0,5323,1739,6535,609,0,657,1071,327,49,0,9235370,8.5,239867,23.4,8.5,0.0
156
  2011-07-16,37469,0,20070,1742,2202,927,0,0,4175,1184,4996,330,0,503,1049,257,34,0,6750083,7.1,182362,4.4,7.1,0.0
157
  2011-07-17,38943,0,20641,1765,2277,955,0,0,4744,1098,5499,359,0,437,919,210,39,0,7038566,6.4,201697,4.2,6.4,0.0
158
  2011-07-18,58313,0,28896,3709,5634,1586,0,0,6608,1832,7022,586,0,772,1270,346,52,0,10507393,9.9,287453,4.9,9.9,0.0
159
  2011-07-19,53739,0,27636,2767,3925,1791,0,0,6271,1706,6564,562,0,783,1334,357,43,0,10113568,9.2,271145,5.7,9.2,0.0
160
  2011-07-20,56424,0,29026,3151,4337,1720,0,0,6377,1729,6825,675,0,790,1441,301,52,0,10553139,8.4,281305,4.6,8.4,0.0
161
  2011-07-21,58219,0,29337,4023,4661,1681,0,0,6276,1753,7129,669,0,755,1571,320,44,0,10732063,6.8,272076,4.7,6.8,0.0
 
 
 
 
162
  2011-07-28,56358,0,29500,3021,4520,1871,0,0,6379,1716,6503,615,0,875,998,313,47,0,10706435,17.1,6036716,22.1,17.1,36.6
163
  2011-07-29,54127,0,27086,2985,4143,1605,0,0,5667,1663,7901,694,0,753,1281,276,73,0,9881968,15.5,5375448,16.2,15.5,42.6
164
  2011-07-30,32233,0,17422,1519,2118,841,0,0,3509,926,4293,272,0,442,639,225,27,0,5963077,11.1,3373933,14.9,11.1,29.4
 
146
  2011-07-06,59903,0,30191,3876,5271,1777,0,0,6192,1757,7529,584,0,828,1524,335,39,0,11088651,9.1,271314,8.6,9.1,4.9
147
  2011-07-07,59146,0,29736,4563,5930,1724,0,0,5661,1718,6759,711,0,781,1195,316,52,0,10569418,10.8,255210,12.9,10.8,4.9
148
  2011-07-08,55125,0,27858,4357,5228,1497,0,0,5247,1493,6659,530,0,649,1240,320,47,0,9480776,9.5,236854,8.2,9.5,4.9
149
+ 2011-07-09,37227,0,19703,2248,2938,992,0,0,3929,976,4674,335,0,506,685,206,35,0,6792863,7.4,173669,17.0,7.4,4.8
150
+ 2011-07-10,37235,0,19487,1861,2291,951,0,0,4436,1124,5099,405,0,490,895,166,30,0,6669866,7.0,189616,6.3,7.0,4.8
151
+ 2011-07-11,53097,0,28106,2883,3861,1681,0,0,5832,1578,6364,498,0,703,1168,368,55,0,9988279,9.4,280898,7.8,9.4,4.8
152
+ 2011-07-12,57108,0,29815,3021,4101,1780,0,0,6166,1665,7266,664,0,832,1443,296,59,0,10750976,9.2,269057,21.8,9.2,4.8
153
+ 2011-07-13,55698,0,28918,3104,4087,1807,0,0,5841,1725,6864,666,0,938,1367,325,56,0,10420914,9.0,254991,6.7,9.0,4.8
154
+ 2011-07-14,53800,0,26717,3721,4197,1597,0,0,5249,1519,8046,606,0,768,1071,263,46,0,9527821,7.7,233161,14.9,7.7,4.8
155
+ 2011-07-15,49232,0,25727,2498,3276,1421,0,0,5323,1739,6535,609,0,657,1071,327,49,0,9235370,8.5,239867,23.4,8.5,4.8
156
  2011-07-16,37469,0,20070,1742,2202,927,0,0,4175,1184,4996,330,0,503,1049,257,34,0,6750083,7.1,182362,4.4,7.1,0.0
157
  2011-07-17,38943,0,20641,1765,2277,955,0,0,4744,1098,5499,359,0,437,919,210,39,0,7038566,6.4,201697,4.2,6.4,0.0
158
  2011-07-18,58313,0,28896,3709,5634,1586,0,0,6608,1832,7022,586,0,772,1270,346,52,0,10507393,9.9,287453,4.9,9.9,0.0
159
  2011-07-19,53739,0,27636,2767,3925,1791,0,0,6271,1706,6564,562,0,783,1334,357,43,0,10113568,9.2,271145,5.7,9.2,0.0
160
  2011-07-20,56424,0,29026,3151,4337,1720,0,0,6377,1729,6825,675,0,790,1441,301,52,0,10553139,8.4,281305,4.6,8.4,0.0
161
  2011-07-21,58219,0,29337,4023,4661,1681,0,0,6276,1753,7129,669,0,755,1571,320,44,0,10732063,6.8,272076,4.7,6.8,0.0
162
+ 2011-07-22,52510,0,27074,2714,3901,1575,0,0,6299,1579,6580,625,0,778,1084,257,44,0,9722444,8.7,299724,7.2,8.7,0.0
163
+ 2011-07-23,36837,0,19240,1951,2215,951,0,0,4533,1158,4866,354,0,552,789,196,32,0,6786184,6.8,195243,8.6,6.8,0.0
164
+ 2011-07-24,40060,0,20379,2115,2291,901,0,0,4140,1027,7022,497,0,457,1016,188,27,0,6973244,6.4,181363,0.0,6.4,0.0
165
+ 2011-07-25,54942,0,27965,2974,3973,1631,0,0,6463,1582,7199,864,0,775,1158,295,63,0,10136109,8.8,279506,0.0,8.8,0.0
166
  2011-07-28,56358,0,29500,3021,4520,1871,0,0,6379,1716,6503,615,0,875,998,313,47,0,10706435,17.1,6036716,22.1,17.1,36.6
167
  2011-07-29,54127,0,27086,2985,4143,1605,0,0,5667,1663,7901,694,0,753,1281,276,73,0,9881968,15.5,5375448,16.2,15.5,42.6
168
  2011-07-30,32233,0,17422,1519,2118,841,0,0,3509,926,4293,272,0,442,639,225,27,0,5963077,11.1,3373933,14.9,11.1,29.4