tamnd commited on
Commit
d262760
·
verified ·
1 Parent(s): 666f578

Add 2011-05-28 to 2011-06-03 — 7 days, 317.9K 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,110 days), totaling **186,812,264 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.0 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
 
@@ -133,7 +133,7 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 15.6M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 ████████████████████████░░░░░░ 61.9M
@@ -142,7 +142,7 @@ duckdb.sql("""
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 282 | 15,640,233 | 55,461 | 3.0 GB | 1.1 GB | 1h07m | 51m21s | 1h40m |
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 |
@@ -154,7 +154,7 @@ duckdb.sql("""
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 7.5M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 ████████████████████████░░░░░░ 31.5M
@@ -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 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 811.8K
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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 409.1K
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 | 93,891,503 | 50.3% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,345,606 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,258,292 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,586,228 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,565,896 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,719,758 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,444,259 | 12.5% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,402,322 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,739,755 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,073,454 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 115,742 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 172,709 | 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,116 days), totaling **187,089,309 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
 
 
133
  ## Events per year
134
 
135
  ```
136
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 15.9M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 ████████████████████████░░░░░░ 61.9M
 
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 288 | 15,917,278 | 55,268 | 3.1 GB | 1.1 GB | 1h08m | 52m02s | 1h41m |
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 |
 
154
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
155
 
156
  ```
157
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 7.7M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 ████████████████████████░░░░░░ 31.5M
 
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 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 825.6K
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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 416.7K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 94,038,302 | 50.3% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,359,402 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,276,469 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,593,776 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,595,924 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,727,932 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,479,755 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,405,811 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,743,705 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,080,962 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 117,549 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 172,982 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/05/28.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8c26bfcd7c30746fd4b39ee5b5e3081f59fb88701b0b5b21d254e920dbbfdc17
3
- size 114082
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03ca1b1ea70644236ae57868cff3eabbf44d4af980389c9eb297930ef452dff8
3
+ size 164769
data/stars/2011/05/29.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:27240921dd36031ba27d49455a6b96357f0a6a1ec32b95b3da76c3afa64cd701
3
- size 112334
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09ad88f6c419597cffd1d6425bde1c8c78c35fdbfdd0121afa997b1c76742d9b
3
+ size 162413
data/stars/2011/05/30.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9c2b8484d820b090a777f326823ea34fb909a6060a6024e2a677c0f0727ec0a6
3
- size 144619
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0595763c4922c25f4459ede0570317e786575c5b7ab687bb65ff26f6a98092c
3
+ size 210805
data/stars/2011/05/31.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ea1500ebca29dcddec5379c6548ca0e1b3c9a3f38f9acd783717fde0d0f2f58e
3
- size 175016
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8932675aa96fd6edc5f1d4b14aad30f4979bff026da8e2c77e9e8bf4f778ac2
3
+ size 259753
data/stars/2011/06/01.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6935cafc84adda06f7e1006358113273d1ac56cba9c53219ff6b6330b1549247
3
- size 178848
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0af568bb21d1b60135163a88c726214309ce223e4ec48e7b7454b8b023271e84
3
+ size 261358
data/stars/2011/06/02.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:65ef517faebf26659fbf2cf558877976117274f7f581ea8c35560337fc315f05
3
- size 154172
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d54e9039055a4632cca68ecbf16952458de0a82d4741e3ac6518cd5eb0ffe32
3
+ size 226354
data/stars/2011/06/03.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:959dffd2607d1c98861c7fada41e506362a3874bc822c4c432aab82327d4365d
3
- size 165726
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:878ae2fc3ac4ca6b78dfaa290f2e75f667b482b2058c4cb89b9ce276c4593b33
3
+ size 245341
stats.csv CHANGED
@@ -97,17 +97,23 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
97
  2011-05-18,52309,0,27549,2443,3685,1500,0,0,6581,1529,6231,819,0,665,969,300,38,0,10442039,7.0,286081,12.5,7.0,7.8
98
  2011-05-19,54736,0,27382,2559,3696,1507,0,0,6679,1649,8236,705,0,826,1150,295,52,0,10571843,6.5,284409,5.3,6.5,7.8
99
  2011-05-20,43104,0,22640,2127,2838,1217,0,0,5203,1468,5189,442,0,607,1090,241,42,0,8673621,6.0,229984,5.1,6.0,7.8
100
- 2011-05-21,31976,0,16676,1990,1929,805,0,0,4056,926,3948,250,0,377,759,221,39,0,6199870,4.2,175336,5.6,4.2,0.0
101
- 2011-05-22,32637,0,17816,1562,1971,823,0,0,3968,871,3859,412,0,425,739,167,24,0,6222648,5.6,171666,5.4,5.6,0.0
102
- 2011-05-23,51882,0,27853,2538,3580,1541,0,0,6118,1569,5787,558,0,833,1132,324,49,0,10331618,8.1,270143,9.4,8.1,0.0
103
- 2011-05-24,56098,0,29776,2872,4203,1696,0,0,6285,1732,6311,623,0,1063,1164,321,52,0,11198939,8.8,272355,6.8,8.8,0.0
104
- 2011-05-25,55047,0,29084,2679,4083,1642,0,0,5927,1773,7039,519,0,852,1073,315,61,0,10391970,7.6,256892,9.5,7.6,0.0
105
- 2011-05-26,55806,0,28698,3129,4229,1590,0,0,5890,1736,7455,778,0,850,1008,382,61,0,10328954,9.3,281226,4.6,9.3,0.0
106
- 2011-05-27,45103,0,23124,2689,3313,1261,0,0,4982,1401,5750,702,0,747,810,282,42,0,8338869,7.9,214579,20.9,7.9,0.0
107
  2011-05-28,33820,0,18039,1593,2083,837,0,0,3810,1041,4542,349,0,502,836,157,31,0,6150874,6.5,164769,4.7,6.5,0.0
108
  2011-05-29,34875,0,19024,1588,2037,776,0,0,3664,1048,4695,620,0,509,712,181,21,0,6362038,6.3,162413,4.5,6.3,0.0
109
  2011-05-30,44165,0,23306,2410,2939,1126,0,0,4744,1342,5408,791,0,562,1228,266,43,0,8223606,6.6,210805,6.9,6.6,0.0
110
  2011-05-31,52997,0,27621,2568,3766,1456,0,0,5961,1604,6698,1096,0,780,1126,251,70,0,9824189,7.3,259753,6.8,7.3,0.0
 
 
 
 
 
 
111
  2011-06-09,48852,0,25981,2589,3611,1575,0,0,5062,1534,5982,524,0,727,919,299,49,0,9373953,16.5,5178352,18.9,16.5,29.0
112
  2011-06-10,50921,0,26012,2966,4227,1304,0,0,5611,1512,6202,746,0,754,1237,300,50,0,9361541,17.9,5092576,12.3,17.9,38.2
113
  2011-06-11,43145,0,17715,6018,6135,922,0,0,3751,1017,5516,441,0,476,930,199,25,0,6440162,14.7,3730549,9.4,14.7,27.3
 
97
  2011-05-18,52309,0,27549,2443,3685,1500,0,0,6581,1529,6231,819,0,665,969,300,38,0,10442039,7.0,286081,12.5,7.0,7.8
98
  2011-05-19,54736,0,27382,2559,3696,1507,0,0,6679,1649,8236,705,0,826,1150,295,52,0,10571843,6.5,284409,5.3,6.5,7.8
99
  2011-05-20,43104,0,22640,2127,2838,1217,0,0,5203,1468,5189,442,0,607,1090,241,42,0,8673621,6.0,229984,5.1,6.0,7.8
100
+ 2011-05-21,31976,0,16676,1990,1929,805,0,0,4056,926,3948,250,0,377,759,221,39,0,6199870,4.2,175336,5.6,4.2,9.3
101
+ 2011-05-22,32637,0,17816,1562,1971,823,0,0,3968,871,3859,412,0,425,739,167,24,0,6222648,5.6,171666,5.4,5.6,9.3
102
+ 2011-05-23,51882,0,27853,2538,3580,1541,0,0,6118,1569,5787,558,0,833,1132,324,49,0,10331618,8.1,270143,9.4,8.1,9.3
103
+ 2011-05-24,56098,0,29776,2872,4203,1696,0,0,6285,1732,6311,623,0,1063,1164,321,52,0,11198939,8.8,272355,6.8,8.8,9.3
104
+ 2011-05-25,55047,0,29084,2679,4083,1642,0,0,5927,1773,7039,519,0,852,1073,315,61,0,10391970,7.6,256892,9.5,7.6,9.3
105
+ 2011-05-26,55806,0,28698,3129,4229,1590,0,0,5890,1736,7455,778,0,850,1008,382,61,0,10328954,9.3,281226,4.6,9.3,9.3
106
+ 2011-05-27,45103,0,23124,2689,3313,1261,0,0,4982,1401,5750,702,0,747,810,282,42,0,8338869,7.9,214579,20.9,7.9,9.3
107
  2011-05-28,33820,0,18039,1593,2083,837,0,0,3810,1041,4542,349,0,502,836,157,31,0,6150874,6.5,164769,4.7,6.5,0.0
108
  2011-05-29,34875,0,19024,1588,2037,776,0,0,3664,1048,4695,620,0,509,712,181,21,0,6362038,6.3,162413,4.5,6.3,0.0
109
  2011-05-30,44165,0,23306,2410,2939,1126,0,0,4744,1342,5408,791,0,562,1228,266,43,0,8223606,6.6,210805,6.9,6.6,0.0
110
  2011-05-31,52997,0,27621,2568,3766,1456,0,0,5961,1604,6698,1096,0,780,1126,251,70,0,9824189,7.3,259753,6.8,7.3,0.0
111
+ 2011-06-01,53889,0,28297,2719,3756,1506,0,0,6084,1583,6698,707,0,774,1356,360,49,0,10169623,7.3,261358,7.7,7.3,0.0
112
+ 2011-06-02,47616,0,25150,2330,3214,1408,0,0,5162,1512,5985,464,0,670,1335,344,42,0,9008262,7.2,226354,7.5,7.2,0.0
113
+ 2011-06-03,50512,0,26180,2439,3471,1375,0,0,5727,1528,6648,504,0,711,1556,322,51,0,9472602,8.1,245341,15.2,8.1,0.0
114
+ 2011-06-04,35844,0,19301,1582,2067,922,0,0,3912,970,4740,438,0,500,1124,262,26,0,6656741,6.6,169517,7.2,6.6,0.0
115
+ 2011-06-05,39063,0,21082,2282,2319,962,0,0,3796,1086,5133,586,0,497,1088,189,43,0,7108711,4.9,167971,1.2,4.9,0.0
116
+ 2011-06-06,50121,0,26789,2444,3350,1375,0,0,5347,1495,6292,790,0,798,1049,330,62,0,9483770,7.2,234053,0.0,7.2,0.0
117
  2011-06-09,48852,0,25981,2589,3611,1575,0,0,5062,1534,5982,524,0,727,919,299,49,0,9373953,16.5,5178352,18.9,16.5,29.0
118
  2011-06-10,50921,0,26012,2966,4227,1304,0,0,5611,1512,6202,746,0,754,1237,300,50,0,9361541,17.9,5092576,12.3,17.9,38.2
119
  2011-06-11,43145,0,17715,6018,6135,922,0,0,3751,1017,5516,441,0,476,930,199,25,0,6440162,14.7,3730549,9.4,14.7,27.3