tamnd commited on
Commit
2798bb5
·
verified ·
1 Parent(s): d262760

Add 2011-06-04 to 2011-06-10 — 7 days, 334.1K events, 7 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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,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
 
@@ -133,7 +133,7 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 15.9M
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 | 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 |
@@ -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 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 825.6K
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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 416.7K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
@@ -220,7 +220,7 @@ GROUP BY repo_name ORDER BY merged_prs DESC LIMIT 20;
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.6M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 ████████████████████████░░░░░░ 5.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,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
 
 
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
 
 
133
  ## Events per year
134
 
135
  ```
136
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 16.0M
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 | 290 | 16,026,624 | 55,264 | 3.1 GB | 1.1 GB | 1h08m | 51m57s | 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 |
 
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
  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
 
220
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
221
 
222
  ```
223
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░�� 1.6M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 ████████████████████████░░░░░░ 5.7M
 
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
 
data/stars/2011/06/04.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bde73b1c7d20f9d5094846ab321ac45870686fd9a5db59fa911eef9e6dc601d4
3
- size 114524
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da8f6ae27c72bc53e06b237a21bdd28fdf21ff94a9647c6d43542743398515a5
3
+ size 169517
data/stars/2011/06/05.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:02fd3b694f325318f413d70063128722a5f1a273701191d01f1b36f01bc69597
3
- size 104216
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:600276dead4b8eef5ffd7134a800311a349300e11c4a676969c7200a0c919111
3
+ size 167971
data/stars/2011/06/06.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3df232abe0bd0ba79c9251e67cbcd8d2ab267466fcaa04d7111a9f841ce6b823
3
- size 158434
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:464bbec9d9d1b809f6d08ffe72930ff5de520250cb5da15a92ed4e206245ea3e
3
+ size 234053
data/stars/2011/06/07.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1b598a45ba001ef37f4411dda011621df102e823f42d7babd019aecb40b6dec8
3
- size 165058
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e14a9d7414179420826d1ce8c6ba0a6ce7d446ffefe8dc543b537067e0fb17f
3
+ size 245423
data/stars/2011/06/08.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f2fad40133c1ac9bfc5e1584e894b2ea67a13cabb2584e7a83e5be2a0ef680fe
3
- size 183482
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d16253170ec27963adaa91a47a46815e7ecfd56243fe11dfd918188df5cb65b
3
+ size 266782
data/stars/2011/06/09.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8385dca7ef527d4f0f018b9d71fc25112e8f9cdf663ab94a0c75733be798e41d
3
- size 160293
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd2f3b0b55758a98ac5fe16db9ab03d71fa57d514b7f28f678afed9988a9181f
3
+ size 233138
data/stars/2011/06/10.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bf93372bf3f5fdabd249da3ed4d92cc7d45eae8c66dc8f8f340f86908e2de763
3
- size 184172
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88b8624eaf1b43e6717304bcd59945ff5d45fe0567ce2ce80ffa116ed1aa5b4f
3
+ size 260918
stats.csv CHANGED
@@ -104,20 +104,22 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
120
- 2011-06-12,31880,0,16876,1542,1965,770,0,0,3758,935,4374,298,0,390,762,185,25,0,5827286,12.8,3366093,10.9,12.8,28.9
 
 
121
  2011-06-13,49590,0,25435,2348,3251,1292,0,0,6087,1623,6487,879,0,793,1043,289,63,0,9179640,15.0,5140764,10.7,15.0,27.0
122
  2011-06-14,51594,0,27153,2520,3683,1453,0,0,5764,1641,6709,441,0,804,1051,327,48,0,9720506,16.1,5520666,9.5,16.1,22.1
123
  2011-06-15,51260,0,26470,2887,3814,1508,0,0,5953,1785,6042,436,0,691,1266,330,78,0,9642120,15.7,5379142,6.1,15.7,22.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,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,6.4
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,6.4
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,6.4
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,6.4
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,6.4
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,6.4
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,6.4
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-07,53627,0,28503,2851,3867,1487,0,0,5597,1641,6533,664,0,896,1207,341,40,0,10196502,11.7,245423,0.0,11.7,0.0
118
+ 2011-06-08,55719,0,29301,2997,4135,1698,0,0,6014,1800,6577,642,0,942,1193,368,52,0,10509502,11.5,266782,0.0,11.5,0.0
119
+ 2011-06-09,48852,0,25981,2589,3611,1575,0,0,5062,1534,5982,524,0,727,919,299,49,0,9373953,10.7,233138,13.1,10.7,0.0
120
+ 2011-06-10,50921,0,26012,2966,4227,1304,0,0,5611,1512,6202,746,0,754,1237,300,50,0,9361541,7.4,260918,22.9,7.4,0.0
121
+ 2011-06-11,43145,0,17715,6018,6135,922,0,0,3751,1017,5516,441,0,476,930,199,25,0,6440162,8.5,164061,7.4,8.5,0.0
122
+ 2011-06-12,31880,0,16876,1542,1965,770,0,0,3758,935,4374,298,0,390,762,185,25,0,5827286,7.4,166119,6.4,7.4,0.0
123
  2011-06-13,49590,0,25435,2348,3251,1292,0,0,6087,1623,6487,879,0,793,1043,289,63,0,9179640,15.0,5140764,10.7,15.0,27.0
124
  2011-06-14,51594,0,27153,2520,3683,1453,0,0,5764,1641,6709,441,0,804,1051,327,48,0,9720506,16.1,5520666,9.5,16.1,22.1
125
  2011-06-15,51260,0,26470,2887,3814,1508,0,0,5953,1785,6042,436,0,691,1266,330,78,0,9642120,15.7,5379142,6.1,15.7,22.0