tamnd commited on
Commit
18a55ef
·
verified ·
1 Parent(s): 509f4e3

Add 2011-11-12 to 2011-11-18 — 7 days, 499.3K 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,158 days), totaling **191,582,208 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.7 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
 
@@ -136,7 +136,7 @@ duckdb.sql("""
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 █████████████████████████░░░░ 64.3M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
@@ -145,7 +145,7 @@ duckdb.sql("""
145
  | 2011 | 323 | 18,009,050 | 55,755 | 3.5 GB | 425.7 MB | 55m07s | 51m04s | 51m33s |
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 | 198 | 64,321,156 | 324,854 | 20.1 GB | 5.9 GB | 2h09m | 11h26m | 2h59m |
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 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 █████████████████████████░░░░░ 32.7M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -223,7 +223,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
- 2014 █████████████████████████���░░░░ 5.9M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 96,229,290 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,629,653 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,640,840 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,759,270 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,775,394 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 18,024,115 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,871,480 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 24,168,437 | 12.6% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,470,648 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 232,105 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,788,623 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,146,633 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 129,837 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 176,896 | 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,159 days), totaling **191,994,714 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.9 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
 
 
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 █████████████████████████░░░░ 64.7M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
 
145
  | 2011 | 323 | 18,009,050 | 55,755 | 3.5 GB | 425.7 MB | 55m07s | 51m04s | 51m33s |
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 | 199 | 64,733,662 | 325,294 | 20.3 GB | 5.9 GB | 2h10m | 11h34m | 2h59m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 █████████████████████████░░░░░ 32.9M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
+ 2014 █████████████████████████░░░░ 6.0M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 96,425,922 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,650,617 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,682,517 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,778,652 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,781,901 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,061,933 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,884,602 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 24,228,123 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,477,231 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 233,270 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,791,639 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,150,797 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 129,837 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 177,235 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/11/12.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:19afa8525a3c040d77b6b19037afdb009cdf1b285c7b3bc846c0e4efe3c70cfd
3
- size 132988
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9c2a473bf24b529e5790d23b24b1998cfee8b87d8ffb3e0975085c4b72679e5
3
+ size 193402
data/stars/2011/11/13.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cbc1bdfb82b7499408f33330de05a40b40325b010814c053434f7f77833d0533
3
- size 143101
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ad14e41f3287abedc338cdab0176c6a766c2a9d9e580e0b23010e47f647a008
3
+ size 208295
data/stars/2011/11/14.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0539b17447f3bf6b2225d283974e40d4eccf66d74fe8ab411c18c83e29e016d6
3
- size 197996
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad33b78c49f4f1f07ef2461f9a3358147991db1212fcbd9cbe5998f62d51014c
3
+ size 291717
data/stars/2011/11/15.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:33d58a78caab1a93e03d311868f61df2e081d0e0dbe48c2d61f9bf7cb6762902
3
- size 221391
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b823a1ca3e9963127b2918e5270b38e1ece125ec085f6c859a60e0aa9280fe9c
3
+ size 330075
data/stars/2011/11/16.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c93e003b018732802bdfa32ee930602d04d8b8d43918a1c4c8615fab02b981e2
3
- size 196695
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f3f78494957c091ef9b84ec37d6c6216a59a624f39045d686ef9e4f9907c1c7
3
+ size 290883
data/stars/2011/11/17.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6357601f83bdd4aeb53f7071353460a2ba803c72f795973e04c2888c42724093
3
- size 245760
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3972fac608cf444a2ad56f7c9639e00cde36fcf74a503ecb0429a6d91c726db
3
+ size 348648
data/stars/2011/11/18.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:dce201a031b895ef4096859c8b668a90619469a429d405f02f1e478d2814ed04
3
- size 175316
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d772b3d53ef1d02ee1efd9db3d2547a5a809b3b50f9f79ca72d189f136a4b15
3
+ size 257452
stats.csv CHANGED
@@ -1154,6 +1154,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1154
  2014-07-26,233635,917,118941,9805,15904,8286,0,1790,21475,8834,39374,3751,698,1510,2192,0,158,0,122087793,272.5,22277284,47.0,272.5,48.9
1155
  2014-07-27,275678,880,148033,11627,20202,9986,0,2697,26505,11053,35125,4191,823,1717,2612,0,227,0,150266595,281.2,26676436,40.7,281.2,120.3
1156
  2014-07-28,361726,1481,178286,18228,36321,17158,0,6189,36579,12028,41587,6280,992,2737,3513,0,347,0,211443298,394.3,38705018,60.6,394.3,51.6
1157
- 2014-07-29,382885,1380,182055,19301,37346,17721,0,6180,36943,12340,54130,6980,1112,3202,3906,0,289,0,220264018,419.1,38801822,53.6,419.1,0.0
 
1158
  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
1159
  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
 
1154
  2014-07-26,233635,917,118941,9805,15904,8286,0,1790,21475,8834,39374,3751,698,1510,2192,0,158,0,122087793,272.5,22277284,47.0,272.5,48.9
1155
  2014-07-27,275678,880,148033,11627,20202,9986,0,2697,26505,11053,35125,4191,823,1717,2612,0,227,0,150266595,281.2,26676436,40.7,281.2,120.3
1156
  2014-07-28,361726,1481,178286,18228,36321,17158,0,6189,36579,12028,41587,6280,992,2737,3513,0,347,0,211443298,394.3,38705018,60.6,394.3,51.6
1157
+ 2014-07-29,382885,1380,182055,19301,37346,17721,0,6180,36943,12340,54130,6980,1112,3202,3906,0,289,0,220264018,419.1,38801822,53.6,419.1,52.3
1158
+ 2014-07-30,412506,1451,196632,20964,41677,19382,0,6507,37818,13122,59686,6583,1165,3016,4164,0,339,0,238023214,446.9,41774622,54.7,446.9,0.0
1159
  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
1160
  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