tamnd commited on
Commit
30573e9
·
verified ·
1 Parent(s): cec9126

Add 2011-06-25 to 2011-07-01 — 7 days, 705.7K 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,118 days), totaling **187,198,655 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 54.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.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
 
@@ -142,7 +142,7 @@ duckdb.sql("""
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 290 | 16,026,624 | 55,264 | 3.1 GB | 1.0 GB | 1h07m | 50m46s | 1h37m |
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 | 191 | 61,920,029 | 324,188 | 19.0 GB | 5.6 GB | 2h03m | 10h44m | 2h52m |
@@ -175,7 +175,7 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 831.4K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ██████████████████████░░░░░░░░ 3.3M
@@ -198,7 +198,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
- 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 419.8K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 94,096,106 | 50.3% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,365,250 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,284,471 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,596,961 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,607,535 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,731,373 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,492,865 | 12.5% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,407,117 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,745,543 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,083,362 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 118,258 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 173,074 | 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,118 days), totaling **187,189,368 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 54.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
 
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 290 | 16,017,337 | 55,232 | 3.1 GB | 1023.7 MB | 1h07m | 50m54s | 1h34m |
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 | 191 | 61,920,029 | 324,188 | 19.0 GB | 5.6 GB | 2h03m | 10h44m | 2h52m |
 
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 830.9K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ██████████████████████░░░░░░░░ 3.3M
 
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
+ 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 419.6K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 94,091,329 | 50.3% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,364,740 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,283,687 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,596,669 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,606,563 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,731,039 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,491,756 | 12.5% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,406,946 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,745,390 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,083,227 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 118,222 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 173,060 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/06/25.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ba4d9cc387db9d533b5dc523273b57747d48541313c502c61e280a5bb53c0782
3
- size 97280
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9427330b7f18757267bc863cf80f491193d9975a5e77d2cf294c1646be494d70
3
+ size 141467
data/stars/2011/06/26.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f043a9824a73d7bd10cad3b55c58442c609d4a4505edf9f83d3a13f3d6dd6432
3
- size 98537
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad334941c0166440ddac9c7d8678005e772eba1605114a76c61850c3208de728
3
+ size 143752
data/stars/2011/06/27.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:02f3cb5247bc53fa311ed29f2307e00563cd7e1109fbaf0d4cb2fe7fc1abf062
3
- size 154257
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb91eaf462712ef13d1e608792b5bf02ddc8f140b092aed01dd5eb34b4100fda
3
+ size 203217
data/stars/2011/06/28.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d8ad09b66217134cbbd599cc8cacb72932115a0c47461d258ddc7da32223356e
3
- size 190531
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e5956a45162db5a2414cc2d64d1c6cf085e5e83c66d8ea949c20d17514ac1b1
3
+ size 279028
data/stars/2011/06/29.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:45991d5c2d2cba3b20c51158f436606f8b2ab0666a1ffa88806faeb0ba1e1e8a
3
- size 179884
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e2648b23d33698d38dc24b1bb77ed0bc426c74a340013f106804cbebaaa29e5
3
+ size 252886
data/stars/2011/06/30.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:80e1c790336e7d5ab7eb5e28fb741dd47bca7871989a18d15e7f9fe2218bc96e
3
- size 164354
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4edbf3eed04b6912b25a34dd476e4f2f2915074a54179d5892a0d235cc32889
3
+ size 243532
data/stars/2011/07/01.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5aa89866b78cbf1f6b40e39cb34742c50d89d7e0f347f515e0931b9ab3122476
3
- size 170556
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7cc705bf7af5c6fc871bef8c667fe36e2126fe57462f8291569ef5b4f5e7f6b
3
+ size 252715
stats.csv CHANGED
@@ -125,21 +125,21 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
125
  2011-06-15,51260,0,26470,2887,3814,1508,0,0,5953,1785,6042,436,0,691,1266,330,78,0,9642120,10.1,256120,8.3,10.1,11.7
126
  2011-06-16,52584,0,26828,2761,4004,1525,0,0,6098,1636,6602,526,0,977,1238,325,64,0,9883096,11.8,263617,12.8,11.8,11.7
127
  2011-06-17,52380,0,27165,2641,3557,1443,0,0,5980,1730,6566,745,0,1077,1097,341,38,0,9769972,10.2,259782,6.8,10.2,11.7
128
- 2011-06-18,33381,0,17468,1613,1887,837,0,0,3705,1015,4822,278,0,532,913,270,41,0,6112955,6.5,164229,6.8,6.5,0.0
129
- 2011-06-19,39317,0,20748,2546,3487,943,0,0,3917,1055,4693,439,0,444,837,170,38,0,6998587,8.9,172059,7.5,8.9,0.0
130
- 2011-06-20,55472,0,29036,3370,3835,1598,0,0,5850,1746,6805,765,0,917,1107,370,73,0,10373253,12.5,256323,5.6,12.5,0.0
131
- 2011-06-21,54768,0,28545,3036,4229,1668,0,0,5847,1832,6761,528,0,825,1105,328,64,0,10445986,11.9,259478,7.4,11.9,0.0
132
- 2011-06-22,53010,0,27545,2703,3635,1525,0,0,5882,1718,7096,746,0,829,969,300,62,0,9989140,11.7,257763,8.5,11.7,0.0
133
- 2011-06-23,286176,0,16592,1649,2193,951,0,0,3949,1088,4310,493,0,485,701,200,35,0,54631048,22.8,174752,6.0,22.8,0.0
134
- 2011-06-24,52293,0,26663,3152,4111,1457,0,0,5886,1622,6767,519,0,619,1146,294,57,0,9561443,9.4,252365,4.9,9.4,0.0
135
- 2011-06-25,77973,0,15398,1491,1791,746,0,0,3180,803,3997,322,0,444,688,157,21,0,14083148,5.9,3134929,11.0,5.9,27.7
136
- 2011-06-26,80500,0,16848,1594,2598,734,0,0,3206,899,4050,235,0,410,733,161,24,0,14088045,6.0,3273951,14.1,6.0,33.0
137
- 2011-06-27,309948,0,22473,3048,3649,1219,0,0,5238,1412,5601,413,0,660,876,251,29,0,54184875,16.6,4516553,10.9,16.6,23.1
138
- 2011-06-28,82404,0,28628,5797,4838,1694,0,0,6482,1995,6845,547,0,912,1211,332,69,0,14096641,13.0,5633982,19.8,13.0,25.1
139
- 2011-06-29,57637,0,29829,2724,4006,1833,0,0,6101,1915,7648,1183,0,815,1237,301,45,0,10836504,15.1,5930021,7.6,15.1,26.8
140
- 2011-06-30,54679,0,27966,2714,4009,1658,0,0,5579,1642,8227,620,0,641,1267,302,54,0,10026910,12.3,5544383,14.5,12.3,25.8
141
- 2011-07-01,51863,0,26210,2727,4785,1533,0,0,5886,1631,6409,588,0,747,982,322,43,0,9443675,15.0,5105860,7.5,15.0,25.0
142
- 2011-07-02,33974,0,18147,1616,2066,824,0,0,3820,1135,4567,269,0,429,820,257,24,0,6215247,4.0,3738112,4.8,4.0,25.7
143
  2011-07-03,36704,0,18243,3124,2997,784,0,0,3596,982,4861,299,0,583,1040,173,22,0,6288022,4.8,3427570,12.5,4.8,28.2
144
  2011-07-04,48504,0,25371,2488,3149,1218,0,0,5437,1417,6588,503,0,750,1253,278,52,0,8896808,6.7,5072759,29.1,6.7,30.8
145
  2011-07-05,52047,0,26411,2595,3815,1473,0,0,6135,1570,6715,692,0,875,1190,521,55,0,9634003,8.8,5313416,16.8,8.8,69.9
 
125
  2011-06-15,51260,0,26470,2887,3814,1508,0,0,5953,1785,6042,436,0,691,1266,330,78,0,9642120,10.1,256120,8.3,10.1,11.7
126
  2011-06-16,52584,0,26828,2761,4004,1525,0,0,6098,1636,6602,526,0,977,1238,325,64,0,9883096,11.8,263617,12.8,11.8,11.7
127
  2011-06-17,52380,0,27165,2641,3557,1443,0,0,5980,1730,6566,745,0,1077,1097,341,38,0,9769972,10.2,259782,6.8,10.2,11.7
128
+ 2011-06-18,33381,0,17468,1613,1887,837,0,0,3705,1015,4822,278,0,532,913,270,41,0,6112955,6.5,164229,6.8,6.5,6.5
129
+ 2011-06-19,39317,0,20748,2546,3487,943,0,0,3917,1055,4693,439,0,444,837,170,38,0,6998587,8.9,172059,7.5,8.9,6.5
130
+ 2011-06-20,55472,0,29036,3370,3835,1598,0,0,5850,1746,6805,765,0,917,1107,370,73,0,10373253,12.5,256323,5.6,12.5,6.5
131
+ 2011-06-21,54768,0,28545,3036,4229,1668,0,0,5847,1832,6761,528,0,825,1105,328,64,0,10445986,11.9,259478,7.4,11.9,6.5
132
+ 2011-06-22,53010,0,27545,2703,3635,1525,0,0,5882,1718,7096,746,0,829,969,300,62,0,9989140,11.7,257763,8.5,11.7,6.5
133
+ 2011-06-23,286176,0,16592,1649,2193,951,0,0,3949,1088,4310,493,0,485,701,200,35,0,54631048,22.8,174752,6.0,22.8,6.5
134
+ 2011-06-24,52293,0,26663,3152,4111,1457,0,0,5886,1622,6767,519,0,619,1146,294,57,0,9561443,9.4,252365,4.9,9.4,6.5
135
+ 2011-06-25,77973,0,15398,1491,1791,746,0,0,3180,803,3997,322,0,444,688,157,21,0,14083148,9.2,141467,5.4,9.2,0.0
136
+ 2011-06-26,80500,0,16848,1594,2598,734,0,0,3206,899,4050,235,0,410,733,161,24,0,14088045,9.9,143752,7.3,9.9,0.0
137
+ 2011-06-27,304200,0,19517,2757,3188,1040,0,0,4586,1209,4887,324,0,570,792,231,20,0,53050573,28.3,203217,9.5,28.3,0.0
138
+ 2011-06-28,82404,0,28628,5797,4838,1694,0,0,6482,1995,6845,547,0,912,1211,332,69,0,14096641,11.3,279028,4.8,11.3,0.0
139
+ 2011-06-29,54098,0,28008,2505,3683,1720,0,0,5781,1784,7253,1101,0,752,1186,285,40,0,10168142,8.2,252886,8.2,8.4,0.0
140
+ 2011-06-30,54679,0,27966,2714,4009,1658,0,0,5579,1642,8227,620,0,641,1267,302,54,0,10026910,11.3,243532,21.2,11.3,0.0
141
+ 2011-07-01,51863,0,26210,2727,4785,1533,0,0,5886,1631,6409,588,0,747,982,322,43,0,9443675,10.5,252715,20.7,10.5,0.0
142
+ 2011-07-02,33974,0,18147,1616,2066,824,0,0,3820,1135,4567,269,0,429,820,257,24,0,6215247,6.2,168229,6.8,6.2,0.0
143
  2011-07-03,36704,0,18243,3124,2997,784,0,0,3596,982,4861,299,0,583,1040,173,22,0,6288022,4.8,3427570,12.5,4.8,28.2
144
  2011-07-04,48504,0,25371,2488,3149,1218,0,0,5437,1417,6588,503,0,750,1253,278,52,0,8896808,6.7,5072759,29.1,6.7,30.8
145
  2011-07-05,52047,0,26411,2595,3815,1473,0,0,6135,1570,6715,692,0,875,1190,521,55,0,9634003,8.8,5313416,16.8,8.8,69.9