tamnd commited on
Commit
13c2ecd
·
verified ·
1 Parent(s): 6844e00

Add 2013-01-26 to 2013-02-01 — 7 days, 1.2M 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,269 days), totaling **212,697,150 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 64.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.0 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,10 +133,10 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
- 2013 ████████████████████████████░░ 74.5M
139
- 2014 ██████████████████████████████ 77.2M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
@@ -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 | 344 | 74,450,128 | 216,424 | 22.7 GB | 6.6 GB | 3h18m | 10h45m | 4h14m |
148
- | 2014 | 234 | 77,165,173 | 329,765 | 27.0 GB | 7.1 GB | 2h35m | 15h21m | 3h37m |
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 ███████████████░░░░░░░░░░░░░░░ 20.6M
159
  2013 █████████████████████████████░ 38.1M
160
- 2014 ██████████████████████████████ 39.1M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -221,9 +221,9 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
221
 
222
  ```
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
- 2012 ████████████████░░░░░░░░░░░░░ 4.0M
225
  2013 █████████████████████████████░ 7.0M
226
- 2014 ██████████████████████████████ 7.1M
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 | 106,735,107 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,792,156 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 18,544,232 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,611,664 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,014,225 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,994,814 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,585,898 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 26,991,784 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,763,382 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 268,156 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,977,769 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,440,723 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 195,536 | 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,271 days), totaling **213,187,358 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.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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 ██████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
+ 2013 ████████████████████████████░░ 74.6M
139
+ 2014 ██████████████████████████████ 77.5M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
 
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 | 345 | 74,557,601 | 216,108 | 22.7 GB | 6.5 GB | 3h17m | 10h44m | 4h12m |
148
+ | 2014 | 235 | 77,547,908 | 329,991 | 27.2 GB | 7.1 GB | 2h35m | 15h28m | 3h37m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ███████████████░░░░░░░░░░░░░░░ 20.6M
159
  2013 █████████████████████████████░ 38.1M
160
+ 2014 ██████████████████████████████ 39.3M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
221
 
222
  ```
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
+ 2012 ████████████████░░░░░░░░░░░░░ 4.0M
225
  2013 █████████████████████████████░ 7.0M
226
+ 2014 ██████████████████████████████ 7.2M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 106,983,417 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,817,235 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 18,589,127 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,633,644 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,021,462 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 20,040,201 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,602,833 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 27,050,748 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,771,115 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 269,179 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,981,392 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,447,034 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 196,003 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2013/01/26.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b70ac0e60a0399f237dfda3fd427f7ee7d141012189ade86797af378a1043f81
3
- size 298834
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95717459fe7b26802547317079e5cae3cc0da852bc02ff3bbe4ee8ba7f0ba72d
3
+ size 604053
data/stars/2013/01/27.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:689bbf60e291c74c49037c65ec777d03d7c2343bd89068482e40af9cc3617c3d
3
- size 327495
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5a7ae7404a9121f0526db59836480776505fb27d0609a04f42c8b3258bf03e2
3
+ size 626078
data/stars/2013/01/28.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0d85f3b2fd50450f8d5cc5f02cdd61bf5e7115a7dd4cf4d1a7886a9405ff8555
3
- size 447848
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2dff2b84c64735e7b27928f2269380051a90272e94a1b3adbc16fdb11b26474c
3
+ size 809055
data/stars/2013/01/29.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:99948cb40d06b3ca1b3fd9beb4e2613528f7725f45af2e7b8e6f1d8f30943369
3
- size 436153
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06296c20aa04984ca1f036aa70e2b227270ee8e0f6cf8296e9446ceb2a800bba
3
+ size 832990
data/stars/2013/01/30.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:095b2b9af24a959709d5ce3fc76ded5259f02a92df206cfd242aca670c8fe9cb
3
- size 446837
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd9efd97701d24c826fdd702f1e7f1c172279467db4bc37fe5413a61479da900
3
+ size 801518
data/stars/2013/01/31.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4887effd50255cceb8fd87f5c202303f8d93098c8ff861cb0f44021224cf57b3
3
- size 437500
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:214039fd41e608ddc6e56db807e4685f04d72e554892259f86fe4ef4120813f9
3
+ size 872038
data/stars/2013/02/01.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:96d824ac83de2d053b56c1b6bd97d92fef1beb6390dac8e375c435edfbaa2ab0
3
- size 387432
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:734f107542a1e408f1a807732bcc62a24dac1affe82df03839effe5da2765813
3
+ size 768199
stats.csv CHANGED
@@ -717,7 +717,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
717
  2013-01-27,139521,787,74781,8083,11551,3973,0,787,13497,5068,16091,889,0,1344,2562,0,108,0,43509601,30.3,626078,20.3,30.3,0.0
718
  2013-01-28,176278,1225,88430,9585,16072,6608,0,1309,18035,7306,20712,1407,0,1891,3542,0,156,0,58619839,34.6,809055,6.5,34.6,0.0
719
  2013-01-29,189397,1500,95010,11470,17667,7235,0,1799,18284,7367,22175,1473,0,1855,3384,0,178,0,62801781,35.0,832990,23.1,35.0,0.0
720
- 2013-01-30,212989,1450,110315,11126,18957,8026,0,2084,20408,8086,24340,1707,0,2081,4222,0,187,0,69356874,43.8,21080450,36.0,43.8,42.5
721
  2013-01-31,203659,1449,105665,11138,18716,7304,0,1862,19755,7174,23120,1509,0,1767,4061,0,139,0,65251284,33.9,872038,40.1,33.9,0.0
722
  2013-02-01,169686,1305,84928,8792,15435,6532,0,1290,17790,6243,20847,1380,0,1710,3272,0,162,0,56534479,28.3,768199,14.7,28.3,0.0
723
  2013-02-02,132268,880,69078,7993,11115,4086,0,642,12458,5251,16038,925,0,1334,2357,0,111,0,41092710,23.2,571509,10.0,23.2,0.0
@@ -1266,6 +1266,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1266
  2014-08-31,273461,964,147715,12833,21023,10365,0,2286,27044,9241,31881,4163,765,1981,2980,0,220,0,150060794,277.6,27369801,45.0,277.6,61.3
1267
  2014-09-01,364290,1391,187567,17638,31674,15803,0,4234,35884,12666,43364,6064,976,2357,4370,0,302,0,205500432,388.8,36506874,45.4,388.8,110.3
1268
  2014-09-02,425652,1952,212664,20760,40872,20534,0,6919,39090,14704,50638,7416,1205,3878,4670,0,350,0,247970027,480.6,43535632,50.5,480.6,116.2
1269
- 2014-09-03,402950,2016,194938,24852,45102,19344,0,7369,35413,12900,45683,6515,1069,2996,4381,0,372,0,233687395,460.2,40422953,46.0,460.2,0.0
 
1270
  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
1271
  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
 
717
  2013-01-27,139521,787,74781,8083,11551,3973,0,787,13497,5068,16091,889,0,1344,2562,0,108,0,43509601,30.3,626078,20.3,30.3,0.0
718
  2013-01-28,176278,1225,88430,9585,16072,6608,0,1309,18035,7306,20712,1407,0,1891,3542,0,156,0,58619839,34.6,809055,6.5,34.6,0.0
719
  2013-01-29,189397,1500,95010,11470,17667,7235,0,1799,18284,7367,22175,1473,0,1855,3384,0,178,0,62801781,35.0,832990,23.1,35.0,0.0
720
+ 2013-01-30,189143,1283,98570,9820,16663,7100,0,1855,17865,7069,21647,1529,0,1773,3798,0,171,0,61455920,40.3,801518,34.6,40.3,0.0
721
  2013-01-31,203659,1449,105665,11138,18716,7304,0,1862,19755,7174,23120,1509,0,1767,4061,0,139,0,65251284,33.9,872038,40.1,33.9,0.0
722
  2013-02-01,169686,1305,84928,8792,15435,6532,0,1290,17790,6243,20847,1380,0,1710,3272,0,162,0,56534479,28.3,768199,14.7,28.3,0.0
723
  2013-02-02,132268,880,69078,7993,11115,4086,0,642,12458,5251,16038,925,0,1334,2357,0,111,0,41092710,23.2,571509,10.0,23.2,0.0
 
1266
  2014-08-31,273461,964,147715,12833,21023,10365,0,2286,27044,9241,31881,4163,765,1981,2980,0,220,0,150060794,277.6,27369801,45.0,277.6,61.3
1267
  2014-09-01,364290,1391,187567,17638,31674,15803,0,4234,35884,12666,43364,6064,976,2357,4370,0,302,0,205500432,388.8,36506874,45.4,388.8,110.3
1268
  2014-09-02,425652,1952,212664,20760,40872,20534,0,6919,39090,14704,50638,7416,1205,3878,4670,0,350,0,247970027,480.6,43535632,50.5,480.6,116.2
1269
+ 2014-09-03,402950,2016,194938,24852,45102,19344,0,7369,35413,12900,45683,6515,1069,2996,4381,0,372,0,233687395,460.2,40422953,46.0,460.2,48.5
1270
+ 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,0.0
1271
  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
1272
  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