tamnd commited on
Commit
717b250
·
verified ·
1 Parent(s): f905524

Add 2013-02-23 to 2013-03-01 — 7 days, 1.4M 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,282 days), totaling **215,523,407 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 65.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.8 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
 
@@ -135,7 +135,7 @@ duckdb.sql("""
135
  ```
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
- 2013 █████████████████████████████░ 76.0M
139
  2014 ██████████████████████████████ 78.4M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
@@ -144,8 +144,8 @@ duckdb.sql("""
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
147
- | 2013 | 353 | 76,031,570 | 215,386 | 23.1 GB | 6.3 GB | 3h17m | 10h42m | 4h07m |
148
- | 2014 | 238 | 78,409,988 | 329,453 | 27.6 GB | 7.2 GB | 2h37m | 15h44m | 3h40m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 108,174,981 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,969,537 | 5.6% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 18,804,359 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,724,249 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,044,265 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 20,251,557 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,684,447 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 27,321,538 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,796,893 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 271,536 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 2,002,488 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,480,880 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 198,205 | 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,282 days), totaling **215,552,442 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 65.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.7 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
 
 
135
  ```
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
+ 2013 █████████████████████████████░ 76.1M
139
  2014 ██████████████████████████████ 78.4M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
 
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
147
+ | 2013 | 353 | 76,060,605 | 215,469 | 23.1 GB | 6.2 GB | 3h14m | 10h34m | 4h00m |
148
+ | 2014 | 238 | 78,409,988 | 329,453 | 27.6 GB | 7.2 GB | 2h37m | 15h44m | 3h41m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 108,189,837 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,971,034 | 5.6% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 18,807,308 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,725,463 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,044,532 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 20,254,270 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,685,522 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 27,324,711 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,797,157 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 271,536 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 2,002,849 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,481,336 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 198,234 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2013/02/23.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fff1d7c2fb6c60b830cf0f0e7125f414d38029f84eb9089858ef6c985545a97e
3
- size 303764
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2969fea3675a61cec8361639bd3577ff0e85c9eb6ebb84c414cbbb492343262d
3
+ size 603762
data/stars/2013/02/24.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0aec1fde120055601f542bc7846509f9b61dcc47b5fe86760fea76f03eaed3bf
3
- size 340377
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:059403859d448ce71f545ca9a9a97a913640c9b7572683b1fdfefdebd81e6b32
3
+ size 708429
data/stars/2013/02/25.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e926ded79d901ff9bbc465893f54f8a61d611035a70700ab267b7a573c370f34
3
- size 442827
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47277c53d1ec45e8110a4de2699234e2e45a747d2eadb09d60e1635ec13508d3
3
+ size 910717
data/stars/2013/02/26.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f4a2ab3a4a34bda12e9a356a5c3e1006d08966e14e2d9e9dc5684fc8d24bb4db
3
- size 424279
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc7382e888306c5383ff93617813c926512ccdd998bac32937f2bf1b55f0ac0d
3
+ size 909158
data/stars/2013/02/27.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8970d554a9c7e774417c6136c7f92e3826b38834a6fdc45cbd2b23d47963982f
3
- size 447172
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1e43df493c00610053a497638a2c6fc47b1b44bff75e078d6cfff1fdc3b327a
3
+ size 898421
data/stars/2013/02/28.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4391c063dca7022ef17e0f6ba7b850a48fcdf4bd52a4de0f4274964b0b0a9d5c
3
- size 431769
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:024287ff7f8cc6a12dfb2390d4ae552e5fe08e2dd0e107b07ac839f5d45078da
3
+ size 867719
data/stars/2013/03/01.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c29e28564ca16d25a9868012b204ba11ae013fcdcbf772f6c6176929f70f7436
3
- size 388818
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb2e849c9697747ca29b24cfe437228cad543a86dd7ec727df12bddf227de3d8
3
+ size 765901
stats.csv CHANGED
@@ -745,10 +745,10 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
745
  2013-02-24,165918,898,87231,9890,13589,4978,0,934,16095,5909,20770,1284,0,1343,2876,0,121,0,55484251,36.4,708429,7.4,36.4,0.0
746
  2013-02-25,214104,1471,107395,12031,20959,8464,0,1940,19754,8095,25452,1706,0,2331,4307,0,199,0,70351591,47.2,910717,7.3,47.2,0.0
747
  2013-02-26,221499,1620,112568,12899,21319,8629,0,1994,19765,8448,25899,1811,0,2363,3969,0,215,0,72652214,47.7,909158,7.5,47.7,0.0
748
- 2013-02-27,212165,1438,106620,13014,21043,8316,0,1828,19375,8157,24360,1758,0,2508,3526,0,222,0,69852871,122.0,21685441,29.3,122.0,38.5
749
- 2013-02-28,212690,1509,109295,12766,19278,8108,0,1907,19634,8000,24523,1710,0,2248,3492,0,220,0,70088719,121.4,21858285,37.6,121.4,107.1
750
- 2013-03-01,190848,1394,96604,11302,17690,7579,0,1790,16832,7267,23569,1548,0,2016,3092,0,165,0,62437659,110.8,19263803,47.8,110.8,41.8
751
- 2013-03-02,146742,973,78545,8756,11266,4706,0,785,12834,5301,18786,1062,0,1295,2309,0,124,0,48946335,88.8,15342522,28.3,88.8,36.4
752
  2013-03-03,165128,1054,87400,9988,12859,5546,0,1099,15683,6009,19672,1193,0,1491,2997,0,137,0,51424565,97.6,16023064,51.0,97.6,44.7
753
  2013-03-04,216352,1578,107458,14118,20667,8272,0,2100,20830,8294,25175,1665,0,2374,3641,0,180,0,70177501,143.8,21672361,53.7,143.8,40.1
754
  2013-03-05,218664,1513,107160,16856,20713,8499,0,1792,20924,8443,25041,1767,0,2074,3693,0,189,0,70261826,145.6,21778527,46.2,145.6,40.6
@@ -1278,6 +1278,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1278
  2014-09-04,382735,1758,190781,18483,36141,19221,0,6919,34838,13286,45951,6942,1023,2878,4141,0,373,0,223850627,423.6,38698449,39.7,423.6,63.1
1279
  2014-09-05,327295,1884,165567,15803,30194,16424,0,5336,27547,11093,39687,6253,936,2748,3494,0,329,0,193402751,362.4,34335000,54.1,362.4,51.6
1280
  2014-09-06,244058,1198,136000,11098,18542,9442,0,2029,20095,8144,28962,3647,621,1342,2711,0,227,0,138739344,256.5,25361563,44.6,256.5,37.3
1281
- 2014-09-07,290727,1035,162117,12322,21808,11148,0,2410,25387,9214,35021,4383,800,1853,2956,0,273,0,162165359,308.8,29846104,33.2,308.8,0.0
1282
  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
1283
  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
 
745
  2013-02-24,165918,898,87231,9890,13589,4978,0,934,16095,5909,20770,1284,0,1343,2876,0,121,0,55484251,36.4,708429,7.4,36.4,0.0
746
  2013-02-25,214104,1471,107395,12031,20959,8464,0,1940,19754,8095,25452,1706,0,2331,4307,0,199,0,70351591,47.2,910717,7.3,47.2,0.0
747
  2013-02-26,221499,1620,112568,12899,21319,8629,0,1994,19765,8448,25899,1811,0,2363,3969,0,215,0,72652214,47.7,909158,7.5,47.7,0.0
748
+ 2013-02-27,223668,1503,112497,13674,22263,8806,0,1931,20424,8549,25544,1871,0,2666,3708,0,232,0,73742218,45.8,898421,7.8,45.8,0.0
749
+ 2013-02-28,212690,1509,109295,12766,19278,8108,0,1907,19634,8000,24523,1710,0,2248,3492,0,220,0,70088719,46.1,867719,7.9,46.2,0.0
750
+ 2013-03-01,190848,1394,96604,11302,17690,7579,0,1790,16832,7267,23569,1548,0,2016,3092,0,165,0,62437659,42.6,765901,30.6,42.6,0.0
751
+ 2013-03-02,146742,973,78545,8756,11266,4706,0,785,12834,5301,18786,1062,0,1295,2309,0,124,0,48946335,35.6,599567,17.2,35.6,0.0
752
  2013-03-03,165128,1054,87400,9988,12859,5546,0,1099,15683,6009,19672,1193,0,1491,2997,0,137,0,51424565,97.6,16023064,51.0,97.6,44.7
753
  2013-03-04,216352,1578,107458,14118,20667,8272,0,2100,20830,8294,25175,1665,0,2374,3641,0,180,0,70177501,143.8,21672361,53.7,143.8,40.1
754
  2013-03-05,218664,1513,107160,16856,20713,8499,0,1792,20924,8443,25041,1767,0,2074,3693,0,189,0,70261826,145.6,21778527,46.2,145.6,40.6
 
1278
  2014-09-04,382735,1758,190781,18483,36141,19221,0,6919,34838,13286,45951,6942,1023,2878,4141,0,373,0,223850627,423.6,38698449,39.7,423.6,63.1
1279
  2014-09-05,327295,1884,165567,15803,30194,16424,0,5336,27547,11093,39687,6253,936,2748,3494,0,329,0,193402751,362.4,34335000,54.1,362.4,51.6
1280
  2014-09-06,244058,1198,136000,11098,18542,9442,0,2029,20095,8144,28962,3647,621,1342,2711,0,227,0,138739344,256.5,25361563,44.6,256.5,37.3
1281
+ 2014-09-07,290727,1035,162117,12322,21808,11148,0,2410,25387,9214,35021,4383,800,1853,2956,0,273,0,162165359,308.8,29846104,33.2,308.8,47.3
1282
  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
1283
  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