tamnd commited on
Commit
b8340ba
·
verified ·
1 Parent(s): f9804e3

Add 2011-10-15 to 2011-10-21 — 7 days, 498.9K 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,140 days), totaling **189,731,388 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 55.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.6 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,7 +133,7 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 16.9M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 █████████████████████████░░░░░ 63.6M
@@ -142,7 +142,7 @@ duckdb.sql("""
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 307 | 16,902,841 | 55,058 | 3.2 GB | 567.2 MB | 55m28s | 52m05s | 58m51s |
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 | 196 | 63,576,545 | 324,370 | 19.7 GB | 5.8 GB | 2h07m | 11h13m | 2h58m |
@@ -154,7 +154,7 @@ 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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.2M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 █████████████████████████░░░░░ 32.3M
@@ -175,7 +175,7 @@ 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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 880.0K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ███████████████████████░░░░░░░ 3.4M
@@ -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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 445.0K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.8M
@@ -220,7 +220,7 @@ GROUP BY repo_name ORDER BY merged_prs DESC LIMIT 20;
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
- 2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.7M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 █████████████████████████░░░░░ 5.9M
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 95,365,598 | 50.3% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,492,971 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,494,409 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,694,228 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,763,025 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,853,793 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,817,165 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,850,748 | 12.6% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,444,878 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 230,001 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,771,330 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,118,583 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 123,339 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 175,194 | 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,146 days), totaling **190,163,461 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 55.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.6 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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 17.3M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 █████████████████████████░░░░░ 63.6M
 
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 313 | 17,334,914 | 55,383 | 3.4 GB | 568.8 MB | 56m16s | 53m46s | 59m34s |
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 | 196 | 63,576,545 | 324,370 | 19.7 GB | 5.8 GB | 2h07m | 11h13m | 2h58m |
 
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.4M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 █████████████████████████░░░░░ 32.3M
 
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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 945.5K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ███████████████████████░░░░░░░ 3.4M
 
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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 456.9K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.8M
 
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
+ 2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 █████████████████████████░░░░░ 5.9M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 95,566,825 | 50.3% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,558,496 | 5.6% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,525,333 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,706,143 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,763,025 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,893,268 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,829,007 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,901,602 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,449,780 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 230,001 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,775,988 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,126,210 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 126,019 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 175,638 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/10/15.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8d435a8f7a77c753ebf92c459dfea10526536d9cdbdf1cb88277bc8819f00405
3
- size 143427
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2f85d45f0c252ab1c0862deb815066084d27b0c0556cfbb9831e9e225bb5e42
3
+ size 209707
data/stars/2011/10/16.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1f94257456ab099362417d32e82532f3a6f3beea9e6d56d91eba34748cc63b63
3
- size 144374
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2457944899a376311b4b351bac81f7dca41a3f577de5cadfc7cc7ed5a7ad8757
3
+ size 209980
data/stars/2011/10/17.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e39f8f4b14f803f216ecf9ec48b5353b9672e1f1022985cfb9984f0fae797180
3
- size 218281
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2560f14b0dd6e481e3ae478868925b49ade6e351326fd30c35c8d59ac73364be
3
+ size 319819
data/stars/2011/10/18.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:03e6fddfa0808d267188d8e82291b7e51f8766ec0372a959564ead2a0e3fc96c
3
- size 213933
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5b0b9c3f92547d751f53cdf33bfa65c9e86c2786216b1cf4f3e58cb80a6d190
3
+ size 314963
data/stars/2011/10/19.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8c6b2fb86aa166eb8135c4ae7be761546c804e475aa2ef4232d8fff984d1a0bf
3
- size 216692
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72467efc3f68d0b20fc087e86ab4a633d4dfe88bb950ca87ae1fac7d3583a8cd
3
+ size 316337
data/stars/2011/10/20.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:348490feede6c2eceec9c245c8bc5a70f63695953da2e664aa91f6fdca5a5a13
3
- size 230479
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7068e41f9853e70d22e6eadd49afef25d8a6768ed0dc17104c125c323a11acc3
3
+ size 340881
data/stars/2011/10/21.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:99013806e0cacabcfcfb42c3258f893f6f81528c0761f296bb185ea49d521e1d
3
- size 213757
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a370d66d11d01fc34053aebb250d5c4a6e3f3c525fce3b8448b7a5343b570d6b
3
+ size 315075
stats.csv CHANGED
@@ -237,16 +237,22 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
237
  2011-10-05,82048,0,48302,3883,5268,2146,0,0,6746,2387,9309,957,0,932,1585,434,99,0,13342187,12.1,297266,5.9,12.1,13.6
238
  2011-10-06,69264,0,37721,3458,5242,2189,0,0,6051,1936,8737,872,0,936,1549,506,67,0,12305534,12.0,277892,19.9,12.0,13.6
239
  2011-10-07,68337,0,33322,4850,5821,2049,0,0,6396,1999,8498,2505,0,970,1468,406,53,0,13873868,12.6,281995,16.8,12.6,13.6
240
- 2011-10-08,44049,0,23180,2422,2832,1119,0,0,4668,1420,5988,558,0,506,1005,298,53,0,10598705,9.8,205115,5.5,9.8,0.0
241
- 2011-10-09,52237,0,25266,4397,5379,1202,0,0,5219,1367,7071,396,0,481,1116,294,49,0,12727220,11.5,225731,7.2,11.5,0.0
242
- 2011-10-10,60819,0,31158,3353,4676,1905,0,0,6364,1876,8006,776,0,781,1493,385,46,0,15790236,13.3,283257,18.2,13.3,0.0
243
- 2011-10-11,66806,0,30513,6230,9351,1854,0,0,5863,1888,7685,898,0,830,1263,376,55,0,17352378,12.7,261932,17.3,12.7,0.0
244
- 2011-10-12,69010,0,34960,3875,5399,2236,0,0,6581,2136,10113,839,0,890,1428,470,83,0,17844428,13.8,293559,5.9,13.8,0.0
245
- 2011-10-13,61936,0,30981,3596,4849,1888,0,0,6495,1979,8993,736,0,885,1040,433,61,0,16819447,12.8,285062,9.9,12.8,0.0
246
- 2011-10-14,64002,0,32906,3510,4959,2103,0,0,7363,2019,8186,661,0,699,1118,410,68,0,19415626,9.1,344264,11.6,9.1,0.0
247
  2011-10-15,47324,0,24074,3145,4115,1172,0,0,4753,1418,6370,512,0,491,894,316,64,0,13306380,6.6,209707,7.5,6.6,0.0
248
  2011-10-16,48820,0,26623,2716,3549,1103,0,0,4865,1480,6180,374,0,511,1121,258,40,0,13970617,7.1,209980,13.5,7.1,0.0
249
  2011-10-17,71601,0,36201,4534,6152,2121,0,0,7194,2223,9807,815,0,722,1303,446,83,0,21890311,11.5,319819,14.2,11.5,0.0
 
 
 
 
 
 
250
  2011-10-24,69453,0,36750,3942,5402,2319,0,0,7125,2105,8379,809,0,772,1270,502,78,0,21333055,31.2,10384681,8.3,31.2,39.5
251
  2011-10-25,74899,0,37462,4140,5634,2406,0,0,8668,2558,10184,881,0,896,1402,586,82,0,22294342,36.5,10746874,38.8,36.5,40.5
252
  2011-10-26,73436,0,37400,4083,5780,2276,0,0,8030,2369,8759,1460,0,930,1441,819,89,0,22413620,35.1,10821255,22.2,35.1,40.1
 
237
  2011-10-05,82048,0,48302,3883,5268,2146,0,0,6746,2387,9309,957,0,932,1585,434,99,0,13342187,12.1,297266,5.9,12.1,13.6
238
  2011-10-06,69264,0,37721,3458,5242,2189,0,0,6051,1936,8737,872,0,936,1549,506,67,0,12305534,12.0,277892,19.9,12.0,13.6
239
  2011-10-07,68337,0,33322,4850,5821,2049,0,0,6396,1999,8498,2505,0,970,1468,406,53,0,13873868,12.6,281995,16.8,12.6,13.6
240
+ 2011-10-08,44049,0,23180,2422,2832,1119,0,0,4668,1420,5988,558,0,506,1005,298,53,0,10598705,9.8,205115,5.5,9.8,6.2
241
+ 2011-10-09,52237,0,25266,4397,5379,1202,0,0,5219,1367,7071,396,0,481,1116,294,49,0,12727220,11.5,225731,7.2,11.5,6.2
242
+ 2011-10-10,60819,0,31158,3353,4676,1905,0,0,6364,1876,8006,776,0,781,1493,385,46,0,15790236,13.3,283257,18.2,13.3,6.2
243
+ 2011-10-11,66806,0,30513,6230,9351,1854,0,0,5863,1888,7685,898,0,830,1263,376,55,0,17352378,12.7,261932,17.3,12.7,6.2
244
+ 2011-10-12,69010,0,34960,3875,5399,2236,0,0,6581,2136,10113,839,0,890,1428,470,83,0,17844428,13.8,293559,5.9,13.8,6.2
245
+ 2011-10-13,61936,0,30981,3596,4849,1888,0,0,6495,1979,8993,736,0,885,1040,433,61,0,16819447,12.8,285062,9.9,12.8,6.2
246
+ 2011-10-14,64002,0,32906,3510,4959,2103,0,0,7363,2019,8186,661,0,699,1118,410,68,0,19415626,9.1,344264,11.6,9.1,6.2
247
  2011-10-15,47324,0,24074,3145,4115,1172,0,0,4753,1418,6370,512,0,491,894,316,64,0,13306380,6.6,209707,7.5,6.6,0.0
248
  2011-10-16,48820,0,26623,2716,3549,1103,0,0,4865,1480,6180,374,0,511,1121,258,40,0,13970617,7.1,209980,13.5,7.1,0.0
249
  2011-10-17,71601,0,36201,4534,6152,2121,0,0,7194,2223,9807,815,0,722,1303,446,83,0,21890311,11.5,319819,14.2,11.5,0.0
250
+ 2011-10-18,110511,0,37665,42780,5725,2224,0,0,7077,2241,9043,961,0,833,1340,523,99,0,24616402,20.9,314963,13.3,20.9,0.0
251
+ 2011-10-19,76774,0,37772,7563,6609,2410,0,0,7161,2257,9074,707,0,1076,1588,481,76,0,22776520,16.6,316337,9.1,16.6,0.0
252
+ 2011-10-20,75217,0,37498,5766,6151,2382,0,0,8088,2211,9323,824,0,890,1469,524,91,0,22511794,18.9,340881,25.2,18.9,0.0
253
+ 2011-10-21,68639,0,34793,3702,5146,2471,0,0,7426,2406,8658,1511,0,813,1163,478,72,0,20819104,19.0,315075,0.0,19.0,0.0
254
+ 2011-10-22,48814,0,25187,2984,3703,1230,0,0,5122,1370,6581,438,0,543,1194,414,48,0,13841117,13.2,218827,0.0,13.2,0.0
255
+ 2011-10-23,52118,0,28312,2730,3590,1198,0,0,4601,1357,8175,461,0,503,873,260,58,0,14451979,12.7,207745,0.0,12.7,0.0
256
  2011-10-24,69453,0,36750,3942,5402,2319,0,0,7125,2105,8379,809,0,772,1270,502,78,0,21333055,31.2,10384681,8.3,31.2,39.5
257
  2011-10-25,74899,0,37462,4140,5634,2406,0,0,8668,2558,10184,881,0,896,1402,586,82,0,22294342,36.5,10746874,38.8,36.5,40.5
258
  2011-10-26,73436,0,37400,4083,5780,2276,0,0,8030,2369,8759,1460,0,930,1441,819,89,0,22413620,35.1,10821255,22.2,35.1,40.1