tamnd commited on
Commit
1c21891
·
verified ·
1 Parent(s): 1766a27

Add 2012-10-27 to 2012-11-02 — 7 days, 948.0K 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,242 days), totaling **206,541,614 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 62.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.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
 
@@ -136,7 +136,7 @@ duckdb.sql("""
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 40.1M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 █████████████████████████████░ 73.4M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
@@ -145,7 +145,7 @@ duckdb.sql("""
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
  | 2012 | 349 | 40,083,827 | 114,853 | 10.7 GB | 682.4 MB | 1h27m | 2h42m | 54m14s |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 224 | 73,430,043 | 327,812 | 25.0 GB | 6.7 GB | 2h27m | 14h12m | 3h26m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -157,7 +157,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ███████████████░░░░░░░░░░░░░░░ 19.3M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 █████████████████████████████░ 37.2M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -201,7 +201,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.7M
203
  2013 ██████████████████████████░░░░ 2.9M
204
- 2014 ██████████████████████████████ 3.2M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 103,623,740 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,400,723 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 17,966,181 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,358,490 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,939,953 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,438,947 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,374,958 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 26,282,827 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,683,894 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 257,655 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,922,340 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,352,685 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 190,342 | 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,243 days), totaling **206,947,228 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 62.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.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
 
 
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 40.1M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 █████████████████████████████░ 73.8M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
 
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
  | 2012 | 349 | 40,083,827 | 114,853 | 10.7 GB | 682.4 MB | 1h27m | 2h42m | 54m14s |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 225 | 73,835,657 | 328,158 | 25.2 GB | 6.8 GB | 2h28m | 14h20m | 3h27m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ███████████████░░░░░░░░░░░░░░░ 19.3M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 █████████████████████████████░ 37.4M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.7M
203
  2013 ██████████████████████████░░░░ 2.9M
204
+ 2014 ██████████████████████████████ 3.3M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 103,816,129 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,429,296 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 18,011,547 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,376,893 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,945,777 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 19,476,241 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,387,359 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 26,327,509 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,691,198 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 258,733 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,928,561 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,356,930 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 190,716 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/10/27.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:606224a719a3f6978f3ae6956e810b4c0ad5d5435aa6c3e5f45f9a8608526aac
3
- size 202070
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f94a1063079681156120da697dce48de0fe2ab9de0158f3507f3bb5779dfb83f
3
+ size 406179
data/stars/2012/10/28.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:852acb7caea5797621fe1ffde67341a7e0ca5a5cc6d55dbce00c682c2a2edfce
3
- size 226598
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c2bf18fa26971c6b79781bd0da8d7f4cc5fdef925f4731f2938edb9c883eff5
3
+ size 454777
data/stars/2012/10/29.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7ea241372f9a3bbd8ac42d6f18e868906c4f6f87d87e2f8b14f4d6df560208c0
3
- size 304461
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b993dfb6e5ff840ccb4981475eb89610b403ff1300197b6ecf973bcbb506998
3
+ size 606149
data/stars/2012/10/30.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9746113a5b54029806f2d936a28576e4183ba0efd8fa4c70f660e7eb295eca84
3
- size 309465
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae7f64fe39e48810c5e41a01820de209e1654c554f99f247d26ee3ccd49c004a
3
+ size 630972
data/stars/2012/10/31.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8e3e822ba33786a38717fbee23bbe421439ef5d4276f76147ad9a73bf95da1b3
3
- size 297823
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dde2ca8a59950f1672aeda2d580880640ac2b74feaebd2293f07878ffe864b7e
3
+ size 596949
data/stars/2012/11/01.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cee1b752ffa7c2288b96f2125706dd7556002e669b47ddeca7fc59d9bd102701
3
- size 280634
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b0c1f8568d1b494f1c859d1c7f3fc7fc8e578fdc254e685dd75d5b4beb43f15
3
+ size 564800
data/stars/2012/11/02.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4465abfa57cf4f2a2e313210f36c6211581c9bfcca1683b741547a09063bfa51
3
- size 276655
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5a6dc63b4f5b83992e7f47cd19e7de266165eaf6a33f4fd0c0d8ad3ea39444f
3
+ size 571109
stats.csv CHANGED
@@ -1238,6 +1238,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1238
  2014-08-21,394280,1499,196076,21257,38888,18754,0,7443,35164,13340,44580,9179,1116,3065,3594,0,325,0,233419185,443.6,39246587,44.6,443.6,22.7
1239
  2014-08-22,380583,1520,190255,22187,41293,17551,0,5632,33408,12643,41894,6686,1017,2574,3590,0,333,0,216226930,398.5,37002370,12.2,398.5,54.5
1240
  2014-08-23,258402,1115,141343,12322,18709,9426,0,2193,23119,9619,30680,4396,808,1940,2522,0,210,0,144557306,255.3,29063054,7.0,255.3,56.1
1241
- 2014-08-24,291100,854,150855,14547,22754,9980,0,1963,27730,10548,34281,11962,863,1650,2885,0,228,0,154269917,302.8,27488254,26.5,302.8,0.0
 
1242
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1243
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0
 
1238
  2014-08-21,394280,1499,196076,21257,38888,18754,0,7443,35164,13340,44580,9179,1116,3065,3594,0,325,0,233419185,443.6,39246587,44.6,443.6,22.7
1239
  2014-08-22,380583,1520,190255,22187,41293,17551,0,5632,33408,12643,41894,6686,1017,2574,3590,0,333,0,216226930,398.5,37002370,12.2,398.5,54.5
1240
  2014-08-23,258402,1115,141343,12322,18709,9426,0,2193,23119,9619,30680,4396,808,1940,2522,0,210,0,144557306,255.3,29063054,7.0,255.3,56.1
1241
+ 2014-08-24,291100,854,150855,14547,22754,9980,0,1963,27730,10548,34281,11962,863,1650,2885,0,228,0,154269917,302.8,27488254,26.5,302.8,56.7
1242
+ 2014-08-25,405614,1460,192389,28573,45366,18403,0,5824,37294,12401,44682,7304,1078,6221,4245,0,374,0,224633535,457.4,39063335,43.8,457.4,0.0
1243
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1244
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0