tamnd commited on
Commit
294036f
·
verified ·
1 Parent(s): a4e9e47

Add 2014-07-19 — 236.7K events, 11 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,092 days), totaling **185,614,794 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.8 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
 
@@ -136,16 +136,16 @@ duckdb.sql("""
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 15.0M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ████████████████████████░░░░░░ 61.4M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
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 | 50m37s | 1h46m |
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 | 189 | 61,408,909 | 324,914 | 18.8 GB | 5.6 GB | 2h02m | 10h42m | 2h52m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -157,7 +157,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
157
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 7.2M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ████████████████████████░░░░░░ 31.2M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -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,243,516 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,287,380 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,176,597 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,549,841 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,736,532 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,444,247 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,679,720 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,295,112 | 12.6% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,386,588 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 224,191 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,726,341 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,053,407 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 111,481 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 171,669 | 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,093 days), totaling **185,851,455 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.8 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
 
 
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 15.0M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 ████████████████████████░░░░░░ 61.6M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
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 | 190 | 61,645,570 | 324,450 | 18.9 GB | 5.6 GB | 2h03m | 10h43m | 2h52m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 7.2M
158
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ████████████████████████░░░░░░ 31.4M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 93,375,439 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,297,757 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,193,192 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,558,411 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,738,766 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,466,163 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,689,104 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,321,884 | 12.5% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,389,698 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 224,758 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,728,003 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,055,730 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 111,481 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 171,887 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/07/19.parquet ADDED
File without changes
data/creates/2014/07/19.parquet ADDED
File without changes
data/deletes/2014/07/19.parquet ADDED
File without changes
data/forks/2014/07/19.parquet ADDED
File without changes
data/issue_comments/2014/07/19.parquet ADDED
File without changes
data/issues/2014/07/19.parquet ADDED
File without changes
data/public_events/2014/07/19.parquet ADDED
File without changes
data/pull_requests/2014/07/19.parquet ADDED
File without changes
data/pushes/2014/07/19.parquet ADDED
File without changes
data/stars/2014/07/19.parquet ADDED
File without changes
data/wiki_pages/2014/07/19.parquet ADDED
File without changes
stats.csv CHANGED
@@ -55,20 +55,20 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
55
  2011-04-06,43752,0,25360,1796,0,1095,0,0,5245,1477,6135,523,0,610,1097,370,44,0,9078610,6.9,230566,6.8,6.9,5.3
56
  2011-04-07,43419,0,25052,1603,0,1031,0,0,5543,1474,6216,461,0,612,1053,323,51,0,8931742,8.3,250494,6.5,8.3,5.3
57
  2011-04-08,45199,0,24290,2135,2069,1007,0,0,5519,1423,6161,447,0,671,1105,339,33,0,8940947,9.2,239154,5.0,9.2,5.3
58
- 2011-04-09,31521,0,17252,1092,1520,656,0,0,3716,1146,4431,240,0,359,865,228,16,0,6126736,7.0,161217,5.9,7.0,0.0
59
- 2011-04-10,36649,0,19577,2206,2158,784,0,0,4413,971,4433,282,0,526,1072,192,35,0,6941125,6.7,190552,5.2,6.7,0.0
60
- 2011-04-11,50152,0,26254,2650,3068,1177,0,0,6051,1432,6852,534,0,622,1129,343,40,0,9829991,8.6,261209,6.2,8.6,0.0
61
- 2011-04-12,49413,0,25082,2548,3351,1204,0,0,5809,1492,6724,472,0,791,1546,342,52,0,9616358,8.1,251044,7.2,8.1,0.0
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,0.0
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,0.0
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,0.0
65
- 2011-04-16,35717,0,18091,2096,3165,754,0,0,3905,928,4738,464,0,512,820,215,29,0,6615671,5.3,3674608,15.5,5.3,22.9
66
- 2011-04-17,35760,0,19319,1658,2262,767,0,0,3868,891,5129,361,0,482,809,189,25,0,6811065,3.8,3484097,9.4,3.8,20.6
67
- 2011-04-18,48579,0,25039,2801,3761,1160,0,0,5815,1322,5913,463,0,724,1220,316,45,0,9347197,6.5,4620283,5.0,6.5,20.5
68
- 2011-04-19,53531,0,27114,2577,3496,1204,0,0,6151,1428,8293,586,0,711,1566,336,69,0,10266549,9.7,5125619,6.2,9.7,24.2
69
- 2011-04-20,50137,0,25412,3213,4257,1098,0,0,5779,1412,6087,470,0,655,1302,407,45,0,9656219,7.0,5166490,6.6,7.0,22.6
70
- 2011-04-21,49520,0,25584,2486,3274,1153,0,0,6214,1466,6219,878,0,749,1172,287,38,0,9646534,7.2,4898444,5.2,7.2,21.1
71
- 2011-04-22,40832,0,22042,1936,2466,903,0,0,4977,1171,5123,463,0,635,834,255,27,0,8101358,6.9,4215498,4.9,6.9,21.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
@@ -1089,5 +1089,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1089
  2014-07-12,242189,1186,128154,11186,18096,8591,0,1703,27361,9287,28385,3302,667,1637,2423,0,211,0,75589176,134.1,23695753,30.2,134.1,44.8
1090
  2014-07-13,248303,762,130726,10888,17929,8677,0,1789,28701,9354,30336,3506,723,1852,2875,0,185,0,77409204,135.9,24499879,28.7,135.9,41.4
1091
  2014-07-15,407623,1685,201518,18973,39055,20201,0,6927,40602,15480,46907,7218,1031,3252,4440,0,334,0,146772761,124.4,58098773,2.2,124.4,0.0
 
1092
  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
1093
  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
 
55
  2011-04-06,43752,0,25360,1796,0,1095,0,0,5245,1477,6135,523,0,610,1097,370,44,0,9078610,6.9,230566,6.8,6.9,5.3
56
  2011-04-07,43419,0,25052,1603,0,1031,0,0,5543,1474,6216,461,0,612,1053,323,51,0,8931742,8.3,250494,6.5,8.3,5.3
57
  2011-04-08,45199,0,24290,2135,2069,1007,0,0,5519,1423,6161,447,0,671,1105,339,33,0,8940947,9.2,239154,5.0,9.2,5.3
58
+ 2011-04-09,31521,0,17252,1092,1520,656,0,0,3716,1146,4431,240,0,359,865,228,16,0,6126736,7.0,161217,5.9,7.0,5.4
59
+ 2011-04-10,36649,0,19577,2206,2158,784,0,0,4413,971,4433,282,0,526,1072,192,35,0,6941125,6.7,190552,5.2,6.7,5.4
60
+ 2011-04-11,50152,0,26254,2650,3068,1177,0,0,6051,1432,6852,534,0,622,1129,343,40,0,9829991,8.6,261209,6.2,8.6,5.4
61
+ 2011-04-12,49413,0,25082,2548,3351,1204,0,0,5809,1492,6724,472,0,791,1546,342,52,0,9616358,8.1,251044,7.2,8.1,5.4
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
 
1089
  2014-07-12,242189,1186,128154,11186,18096,8591,0,1703,27361,9287,28385,3302,667,1637,2423,0,211,0,75589176,134.1,23695753,30.2,134.1,44.8
1090
  2014-07-13,248303,762,130726,10888,17929,8677,0,1789,28701,9354,30336,3506,723,1852,2875,0,185,0,77409204,135.9,24499879,28.7,135.9,41.4
1091
  2014-07-15,407623,1685,201518,18973,39055,20201,0,6927,40602,15480,46907,7218,1031,3252,4440,0,334,0,146772761,124.4,58098773,2.2,124.4,0.0
1092
+ 2014-07-19,236661,1010,131923,10377,16595,8570,0,2234,21916,9384,26772,3110,567,1662,2323,0,218,0,74195067,57.7,0,30.7,57.7,0.0
1093
  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
1094
  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