tamnd commited on
Commit
183cd93
·
verified ·
1 Parent(s): b757b78

Add 2011-04-23 to 2011-04-29 — 7 days, 287.0K 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,094 days), totaling **186,125,914 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 53.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.1 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.0M
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 | 266 | 14,953,883 | 56,217 | 2.9 GB | 1.2 GB | 1h07m | 50m49s | 1h44m |
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 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 775.5K
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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 391.6K
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,527,093 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,309,287 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,212,540 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,568,752 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,492,347 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,699,574 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,354,072 | 12.5% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,393,768 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,729,860 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,058,313 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 111,481 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 172,087 | 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,097 days), totaling **186,251,704 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 53.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.1 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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 15.1M
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 | 269 | 15,079,673 | 56,058 | 2.9 GB | 1.2 GB | 1h07m | 51m41s | 1h43m |
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 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 781.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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 394.7K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 93,593,229 | 50.3% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,315,745 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,220,687 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,571,827 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,741,159 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,505,168 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,703,153 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,373,049 | 12.5% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,395,257 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 225,515 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,731,692 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,060,733 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 112,229 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 172,195 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/04/23.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:25ef041310123a2bd6c3db787151c984aa28872442af6f3e90d353b788fcb9d4
3
- size 112217
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6505e8e5c9a160ff0af0f580033ef9c72910d284a48b96b05a65619eefd69971
3
+ size 162413
data/stars/2011/04/24.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:27717d6a4ae8a9317c1b9e23b71aa48520ad8cff90313d269390d5c2e4c2fe7c
3
- size 109153
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83d27fc15ba4894e917baf085c1ce4d696d87bc1896f3518d15116d3703d35b2
3
+ size 157716
data/stars/2011/04/25.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4b118b5aa9adaddd8c44093e08d1be396c59307a70f588d063843b4dad8e8ea1
3
- size 142008
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46dff2af22ab91068b00a6a7d6c2f294daab9d05bc49a8e931ecb47485122f02
3
+ size 205523
data/stars/2011/04/26.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2d9cbbe2c8daf9f4482d47e53dcb6eac72cd7d8eaceb672691f1e96c05551f52
3
- size 177336
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f8a719149ef53f71b88f654d44ff43e5103d954b4a66022fd4ecb5a41711cdb
3
+ size 258153
data/stars/2011/04/27.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bbcf726256f2f58acb5a5f9d012cda26ddf9a703c25924efe1be7b5f1ee4ac12
3
- size 148121
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cb8725ac314bc4ad908ed6535f62fc8dac2e277be80e0e31a68f78f5015e55f
3
+ size 218228
data/stars/2011/04/28.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8a847dc85e49a6b9e9527ff20bce390642ae9673cea81e69eaabf38d20a2c0ec
3
- size 132106
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43b5c27d0afed31d963f361568cb4b8ad71413bd91d5b84742f14ba916b3aa26
3
+ size 194452
data/stars/2011/04/29.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:283cb2487fc2524b9ed87fcc62f80c48b2d481780da57f01d3a0c3dd935130c8
3
- size 150720
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:905721ecf53861b8318b776e4490c2de51e6f8e444b76b253c01b4353e30f7e1
3
+ size 220181
stats.csv CHANGED
@@ -62,18 +62,21 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
62
  2011-04-13,50960,0,26090,2653,3342,1232,0,0,6185,1499,6727,551,0,898,1337,387,59,0,10011009,7.5,265858,5.1,7.5,5.4
63
  2011-04-14,51523,0,26863,2783,3705,1247,0,0,6059,1513,6180,558,0,877,1341,363,34,0,10191848,9.0,265651,9.1,9.0,5.4
64
  2011-04-15,52603,0,25612,3744,5245,1175,0,0,5801,1402,6090,1365,0,781,1038,305,45,0,9663151,7.5,253282,8.0,7.5,5.4
65
- 2011-04-16,35717,0,18091,2096,3165,754,0,0,3905,928,4738,464,0,512,820,215,29,0,6615671,6.1,172499,6.3,6.1,0.0
66
- 2011-04-17,35760,0,19319,1658,2262,767,0,0,3868,891,5129,361,0,482,809,189,25,0,6811065,6.4,170606,7.2,6.4,0.0
67
- 2011-04-18,48579,0,25039,2801,3761,1160,0,0,5815,1322,5913,463,0,724,1220,316,45,0,9347197,7.9,253687,6.1,7.9,0.0
68
- 2011-04-19,53531,0,27114,2577,3496,1204,0,0,6151,1428,8293,586,0,711,1566,336,69,0,10266549,10.9,267629,6.2,10.9,0.0
69
- 2011-04-20,50137,0,25412,3213,4257,1098,0,0,5779,1412,6087,470,0,655,1302,407,45,0,9656219,9.1,253282,15.0,9.1,0.0
70
- 2011-04-21,49520,0,25584,2486,3274,1153,0,0,6214,1466,6219,878,0,749,1172,287,38,0,9646534,10.0,264628,7.3,10.0,0.0
71
- 2011-04-22,40832,0,22042,1936,2466,903,0,0,4977,1171,5123,463,0,635,834,255,27,0,8101358,8.4,247009,9.1,8.4,0.0
72
- 2011-04-23,31746,0,17207,1532,1876,720,0,0,3721,857,4121,367,0,418,768,134,25,0,6192449,3.3,3232189,4.3,3.3,22.2
73
- 2011-04-24,32786,0,18268,1495,1782,569,0,0,3604,826,4429,456,0,418,802,102,35,0,6254774,3.1,3322579,4.1,3.1,20.3
74
- 2011-04-25,39853,0,21398,1793,2464,961,0,0,4642,1151,4807,827,0,590,795,386,39,0,7764517,5.1,3967767,7.2,5.1,20.8
75
- 2011-04-26,48797,0,25623,2202,3003,1375,0,0,5939,2115,5810,653,0,596,1083,356,42,0,9643112,6.9,5003120,5.7,6.9,21.4
76
- 2011-04-27,43925,0,23493,2170,2867,1278,0,0,4914,1395,5252,429,0,706,1047,322,52,0,8761524,6.0,4699389,13.8,6.0,20.0
 
 
 
77
  2011-05-10,51454,0,24086,4081,4177,1280,0,0,5028,1381,8982,397,0,810,875,302,55,0,9085660,18.1,4544296,6.9,18.1,34.5
78
  2011-05-11,58354,0,28529,3906,4774,1540,0,0,6173,1584,7901,1467,0,839,1280,327,34,0,10903560,21.4,5295076,6.2,21.4,35.5
79
  2011-05-12,49491,0,26164,2686,3433,1384,0,0,5518,1562,5949,552,0,875,982,335,51,0,9942744,19.4,5087676,14.1,19.4,28.1
 
62
  2011-04-13,50960,0,26090,2653,3342,1232,0,0,6185,1499,6727,551,0,898,1337,387,59,0,10011009,7.5,265858,5.1,7.5,5.4
63
  2011-04-14,51523,0,26863,2783,3705,1247,0,0,6059,1513,6180,558,0,877,1341,363,34,0,10191848,9.0,265651,9.1,9.0,5.4
64
  2011-04-15,52603,0,25612,3744,5245,1175,0,0,5801,1402,6090,1365,0,781,1038,305,45,0,9663151,7.5,253282,8.0,7.5,5.4
65
+ 2011-04-16,35717,0,18091,2096,3165,754,0,0,3905,928,4738,464,0,512,820,215,29,0,6615671,6.1,172499,6.3,6.1,6.7
66
+ 2011-04-17,35760,0,19319,1658,2262,767,0,0,3868,891,5129,361,0,482,809,189,25,0,6811065,6.4,170606,7.2,6.4,6.7
67
+ 2011-04-18,48579,0,25039,2801,3761,1160,0,0,5815,1322,5913,463,0,724,1220,316,45,0,9347197,7.9,253687,6.1,7.9,6.7
68
+ 2011-04-19,53531,0,27114,2577,3496,1204,0,0,6151,1428,8293,586,0,711,1566,336,69,0,10266549,10.9,267629,6.2,10.9,6.7
69
+ 2011-04-20,50137,0,25412,3213,4257,1098,0,0,5779,1412,6087,470,0,655,1302,407,45,0,9656219,9.1,253282,15.0,9.1,6.7
70
+ 2011-04-21,49520,0,25584,2486,3274,1153,0,0,6214,1466,6219,878,0,749,1172,287,38,0,9646534,10.0,264628,7.3,10.0,6.7
71
+ 2011-04-22,40832,0,22042,1936,2466,903,0,0,4977,1171,5123,463,0,635,834,255,27,0,8101358,8.4,247009,9.1,8.4,6.7
72
+ 2011-04-23,31746,0,17207,1532,1876,720,0,0,3721,857,4121,367,0,418,768,134,25,0,6192449,8.8,162413,5.9,8.8,0.0
73
+ 2011-04-24,32786,0,18268,1495,1782,569,0,0,3604,826,4429,456,0,418,802,102,35,0,6254774,9.1,157716,5.8,9.1,0.0
74
+ 2011-04-25,39853,0,21398,1793,2464,961,0,0,4642,1151,4807,827,0,590,795,386,39,0,7764517,9.9,205523,5.5,10.0,0.0
75
+ 2011-04-26,48797,0,25623,2202,3003,1375,0,0,5939,2115,5810,653,0,596,1083,356,42,0,9643112,11.5,258153,6.1,11.5,0.0
76
+ 2011-04-27,43925,0,23493,2170,2867,1278,0,0,4914,1395,5252,429,0,706,1047,322,52,0,8761524,6.8,218228,8.3,6.8,0.0
77
+ 2011-04-28,40793,0,21963,1937,2620,1086,0,0,4297,1305,5283,603,0,646,768,243,42,0,8116302,9.3,194452,5.1,9.3,0.0
78
+ 2011-04-29,49068,0,25164,2234,2816,1231,0,0,4918,1397,8634,528,0,720,1019,370,37,0,9335401,11.3,220181,4.8,11.3,0.0
79
+ 2011-05-01,35929,0,19009,2287,2711,758,0,0,3606,877,5060,358,0,466,633,135,29,0,6730672,9.2,160011,4.4,9.2,0.0
80
  2011-05-10,51454,0,24086,4081,4177,1280,0,0,5028,1381,8982,397,0,810,875,302,55,0,9085660,18.1,4544296,6.9,18.1,34.5
81
  2011-05-11,58354,0,28529,3906,4774,1540,0,0,6173,1584,7901,1467,0,839,1280,327,34,0,10903560,21.4,5295076,6.2,21.4,35.5
82
  2011-05-12,49491,0,26164,2686,3433,1384,0,0,5518,1562,5949,552,0,875,982,335,51,0,9942744,19.4,5087676,14.1,19.4,28.1