tamnd commited on
Commit
bf5c1a5
·
verified ·
1 Parent(s): b59b4b3

Add 2013-02-02 to 2013-02-08 — 7 days, 1.3M 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,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
 
@@ -135,8 +135,8 @@ duckdb.sql("""
135
  ```
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
- 2013 ████████████████████████████░ 74.6M
139
- 2014 ██████████████████████████████ 77.5M
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 | 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
 
@@ -156,8 +156,8 @@ Pushes are the most common event type, representing roughly half of all GitHub a
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ███████████████░░░░░░░░░░░░░░░ 20.6M
159
- 2013 █████████████████████████████░ 38.1M
160
- 2014 ██████████████████████████████ 39.3M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -177,7 +177,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
177
  ```
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 ████████████████░░░░░░░░░░░░░░ 2.4M
180
- 2013 ██████████████████████████████ 4.3M
181
  2014 ████████████████████████████░░ 4.1M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
@@ -222,7 +222,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
222
  ```
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ████████████████░░░░░░░░░░░░░░ 4.0M
225
- 2013 █████████████████████████████░ 7.0M
226
  2014 ██████████████████████████████ 7.2M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
@@ -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,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
 
 
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,278 days), totaling **214,626,970 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.5 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
 
 
135
  ```
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
+ 2013 ████████████████████████████75.7M
139
+ 2014 ██████████████████████████████ 77.9M
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 | 351 | 75,669,918 | 215,583 | 23.0 GB | 6.5 GB | 3h20m | 10h49m | 4h13m |
148
+ | 2014 | 236 | 77,875,203 | 329,979 | 27.3 GB | 7.1 GB | 2h36m | 15h34m | 3h38m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ███████████████░░░░░░░░░░░░░░░ 20.6M
159
+ 2013 █████████████████████████████░ 38.7M
160
+ 2014 ██████████████████████████████ 39.5M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
177
  ```
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 ████████████████░░░░░░░░░░░░░░ 2.4M
180
+ 2013 ██████████████████████████████ 4.4M
181
  2014 ████████████████████████████░░ 4.1M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
 
222
  ```
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ████████████████░░░░░░░░░░░░░░ 4.0M
225
+ 2013 █████████████████████████████░ 7.1M
226
  2014 ██████████████████████████████ 7.2M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 107,701,923 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,904,194 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 18,729,394 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,691,719 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,036,685 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 20,175,787 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,655,285 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 27,218,784 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,786,180 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 270,115 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,995,797 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,469,657 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 197,362 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2013/02/02.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cdac3323b9dd89fbf46215a7975c3f47b8762e054c3c502e440b490a4b367da9
3
- size 286254
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5855e73bcf49c86b8e0f1bdcb5b094314affb9d375df447b78eb3959cacc11f8
3
+ size 571509
data/stars/2013/02/03.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d7b2d876049a3c9fc7a18d0b2b52894d066efa28a38e52599c6499ca56f68cd5
3
- size 327437
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc2ba7efd0d7c4745ebcdd11d7b766ce00865e98b4a63b0bf883bf0f9b2487c8
3
+ size 672362
data/stars/2013/02/04.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:dec05029f83263624d75df20ec61e7ffce612f96370fae8722398ee21891f8ce
3
- size 429498
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d05d6ee7741767b5a0c93d7b5ad720ee67381e591b6255f78f061f91de3954e6
3
+ size 867046
data/stars/2013/02/05.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6c5dd994544f106c27e4f6f58ff46a999fd05397a668096f595cf8fbae9830b2
3
- size 447371
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ad2ff89e0e2ead7c9870bd1e06e3e66335ac1a1d5aba9b2f32930c022ec1447
3
+ size 892838
data/stars/2013/02/06.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0eaf900ddcdefc1b90ad2cd07199a83a99f51ded20aab357639952e559ba471c
3
- size 434318
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed9a5b4359ff0ad082bae08d7d3e663613cc3edb0b7980808866249bfbe9958a
3
+ size 854140
data/stars/2013/02/07.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1afe98b73f5d0b3238bbe528bd34930ce1e8f70a75e1df82f8846e76c9b311d0
3
- size 428185
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c34e0404f295c711cb566b725384a3649115e4eca3323d7f8982e9005c5cadfa
3
+ size 852021
data/stars/2013/02/08.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3277461b5831733ccadf33f77262a45e9217532042d5bdb93ef4fa21152bc14c
3
- size 369657
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd89f2de89ab7939991be67587d70154d47c1d249a9fd762b3157c7cae97ae26
3
+ size 734810
stats.csv CHANGED
@@ -724,6 +724,10 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
724
  2013-02-03,146509,793,76926,8719,12432,4240,0,679,14694,5396,17420,1084,0,1199,2805,0,122,0,45359593,26.5,672362,14.9,26.5,0.0
725
  2013-02-04,199495,1598,98911,12729,18920,7447,0,1783,19777,7479,23335,1549,0,1908,3879,0,180,0,65333749,41.2,867046,20.2,41.2,0.0
726
  2013-02-05,200388,1661,100235,10573,18122,7635,0,1849,20714,7848,24145,1576,0,2174,3645,0,211,0,66343746,44.5,892838,18.2,44.5,0.0
 
 
 
 
727
  2013-02-12,197523,1260,96991,12202,21246,7477,0,2093,17698,6987,24259,1645,0,2150,3327,0,188,0,68174371,90.3,19986553,0.0,90.3,32.3
728
  2013-02-13,199889,1395,97973,12370,22769,7540,0,2061,18171,6937,22958,1549,0,2199,3773,0,194,0,64342569,85.4,20727705,7.5,85.4,42.2
729
  2013-02-14,186628,1209,91717,11340,20105,7383,0,1877,17991,6876,20794,1472,0,2017,3671,0,176,0,60808459,82.7,18953414,25.7,82.7,35.7
@@ -1269,6 +1273,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1269
  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
1270
  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
1271
  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
1272
- 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
 
1273
  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
1274
  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
 
724
  2013-02-03,146509,793,76926,8719,12432,4240,0,679,14694,5396,17420,1084,0,1199,2805,0,122,0,45359593,26.5,672362,14.9,26.5,0.0
725
  2013-02-04,199495,1598,98911,12729,18920,7447,0,1783,19777,7479,23335,1549,0,1908,3879,0,180,0,65333749,41.2,867046,20.2,41.2,0.0
726
  2013-02-05,200388,1661,100235,10573,18122,7635,0,1849,20714,7848,24145,1576,0,2174,3645,0,211,0,66343746,44.5,892838,18.2,44.5,0.0
727
+ 2013-02-06,203760,1463,99344,14839,20019,7926,0,1812,19921,7760,23235,1635,0,2265,3342,0,199,0,65992399,53.6,854140,45.5,53.6,0.0
728
+ 2013-02-07,202117,1463,98384,13718,21628,7519,0,2041,19699,7436,23065,1628,0,2250,3104,0,182,0,65576578,54.7,852021,25.4,54.7,0.0
729
+ 2013-02-08,179697,1224,88411,11873,20100,7002,0,1607,16589,6302,19986,1524,0,1799,3124,0,156,0,58883384,48.2,734810,17.2,48.2,0.0
730
+ 2013-02-09,126860,827,67654,7424,11284,4122,0,795,11339,4534,14583,900,0,1261,2035,0,102,0,39569240,34.9,537368,13.6,34.9,0.0
731
  2013-02-12,197523,1260,96991,12202,21246,7477,0,2093,17698,6987,24259,1645,0,2150,3327,0,188,0,68174371,90.3,19986553,0.0,90.3,32.3
732
  2013-02-13,199889,1395,97973,12370,22769,7540,0,2061,18171,6937,22958,1549,0,2199,3773,0,194,0,64342569,85.4,20727705,7.5,85.4,42.2
733
  2013-02-14,186628,1209,91717,11340,20105,7383,0,1877,17991,6876,20794,1472,0,2017,3671,0,176,0,60808459,82.7,18953414,25.7,82.7,35.7
 
1273
  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
1274
  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
1275
  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
1276
+ 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
1277
+ 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,0.0
1278
  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
1279
  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