tamnd commited on
Commit
23c98f9
·
verified ·
1 Parent(s): 1c8d452

Add 2011-07-23 to 2011-07-29 — 7 days, 365.5K 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,129 days), totaling **187,910,459 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.3 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
 
@@ -133,7 +133,7 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 16.5M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 █████████████████████████░░░░░ 62.2M
@@ -142,7 +142,7 @@ duckdb.sql("""
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 300 | 16,504,793 | 55,015 | 3.2 GB | 966.1 MB | 1h06m | 52m37s | 1h29m |
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 | 192 | 62,153,664 | 323,717 | 19.1 GB | 5.7 GB | 2h04m | 10h49m | 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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 857.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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 433.3K
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,460,534 | 50.3% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,401,456 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,335,007 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,618,673 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,742,949 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,683,924 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,754,521 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,594,832 | 12.6% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,416,218 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 226,213 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,753,502 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,097,050 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 120,949 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 173,648 | 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,131 days), totaling **188,033,647 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.3 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
 
 
133
  ## Events per year
134
 
135
  ```
136
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 16.6M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 █████████████████████████░░░░░ 62.2M
 
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 302 | 16,627,981 | 55,059 | 3.2 GB | 956.3 MB | 1h05m | 52m39s | 1h28m |
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 | 192 | 62,153,664 | 323,717 | 19.1 GB | 5.7 GB | 2h04m | 10h49m | 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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 864.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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 437.1K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ████████████████████████████░░ 2.7M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 94,523,183 | 50.3% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,408,188 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,345,335 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,622,494 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,742,949 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,697,532 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,758,229 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,610,916 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,417,477 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 226,213 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,754,999 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,099,739 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 121,620 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 173,790 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/07/23.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:23254fa06cfec6c0c82dcf8e8dfad2ae1a8957b36edbdb3bdcaa39cf6a45a7b7
3
- size 132294
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35a634f25e08b93d20d28ee096afd52b448a55bac5d532441cd3edfb7d0a2bd9
3
+ size 195243
data/stars/2011/07/24.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8374bb8c7c8f515bc8f7c5806534681ed3c527d2aabaa98a971679ba324de868
3
- size 123970
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:146e6d61891f3e209bacb96ea236955b8474d7eb57ce41c299362fb72c49d31e
3
+ size 181363
data/stars/2011/07/25.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0f2bcce4ab8b4c3d879f8694c9757b5df2192826e30cc5fb779e378e846ed514
3
- size 188543
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aae50a6a099432e475a87de2762d498562ffad7a42538bf7820f73e1c1914b39
3
+ size 279506
data/stars/2011/07/26.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:353cfefae3f03df7aa89f49db64ee037461eaeb0d2f68e85ec4c8d09503d3375
3
- size 202822
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03e98ca7947949a384ec6c0dac3c8c79ba16bf79cc5731b5738f686eb1fdcf74
3
+ size 300024
data/stars/2011/07/27.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:afbe22cd5cc786f8ec5515701b84718e3df7e5aa0644efed5dbda7132730b84e
3
- size 196791
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3523cbaa049f87b3f3d98a54490473246fad647ab577dbe22cf53e2e8c33f57e
3
+ size 289330
data/stars/2011/07/28.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b7f5d05e282dbf55f2c164cc89628b4ba65f52d7415abcc56211eb3167a46533
3
- size 194189
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea172c2733e5f5354d93c28aaf05179ea67440dc332ba84c61ac80cdd3c5a283
3
+ size 282207
data/stars/2011/07/29.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:08a95ea4e96e7227ed339a7325be55349fe48259253d7a020c9efeb7647e86b8
3
- size 168107
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2db8d9c21ff1081a1994fb727d9caa70aa3c69a37b01983c2dbc7073fdbd9a81
3
+ size 246681
stats.csv CHANGED
@@ -153,18 +153,20 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
153
  2011-07-13,55698,0,28918,3104,4087,1807,0,0,5841,1725,6864,666,0,938,1367,325,56,0,10420914,9.0,254991,6.7,9.0,4.8
154
  2011-07-14,53800,0,26717,3721,4197,1597,0,0,5249,1519,8046,606,0,768,1071,263,46,0,9527821,7.7,233161,14.9,7.7,4.8
155
  2011-07-15,49232,0,25727,2498,3276,1421,0,0,5323,1739,6535,609,0,657,1071,327,49,0,9235370,8.5,239867,23.4,8.5,4.8
156
- 2011-07-16,37469,0,20070,1742,2202,927,0,0,4175,1184,4996,330,0,503,1049,257,34,0,6750083,7.1,182362,4.4,7.1,0.0
157
- 2011-07-17,38943,0,20641,1765,2277,955,0,0,4744,1098,5499,359,0,437,919,210,39,0,7038566,6.4,201697,4.2,6.4,0.0
158
- 2011-07-18,58313,0,28896,3709,5634,1586,0,0,6608,1832,7022,586,0,772,1270,346,52,0,10507393,9.9,287453,4.9,9.9,0.0
159
- 2011-07-19,53739,0,27636,2767,3925,1791,0,0,6271,1706,6564,562,0,783,1334,357,43,0,10113568,9.2,271145,5.7,9.2,0.0
160
- 2011-07-20,56424,0,29026,3151,4337,1720,0,0,6377,1729,6825,675,0,790,1441,301,52,0,10553139,8.4,281305,4.6,8.4,0.0
161
- 2011-07-21,58219,0,29337,4023,4661,1681,0,0,6276,1753,7129,669,0,755,1571,320,44,0,10732063,6.8,272076,4.7,6.8,0.0
162
- 2011-07-22,52510,0,27074,2714,3901,1575,0,0,6299,1579,6580,625,0,778,1084,257,44,0,9722444,8.7,299724,7.2,8.7,0.0
163
  2011-07-23,36837,0,19240,1951,2215,951,0,0,4533,1158,4866,354,0,552,789,196,32,0,6786184,6.8,195243,8.6,6.8,0.0
164
  2011-07-24,40060,0,20379,2115,2291,901,0,0,4140,1027,7022,497,0,457,1016,188,27,0,6973244,6.4,181363,0.0,6.4,0.0
165
  2011-07-25,54942,0,27965,2974,3973,1631,0,0,6463,1582,7199,864,0,775,1158,295,63,0,10136109,8.8,279506,0.0,8.8,0.0
166
- 2011-07-28,56358,0,29500,3021,4520,1871,0,0,6379,1716,6503,615,0,875,998,313,47,0,10706435,17.1,6036716,22.1,17.1,36.6
167
- 2011-07-29,54127,0,27086,2985,4143,1605,0,0,5667,1663,7901,694,0,753,1281,276,73,0,9881968,15.5,5375448,16.2,15.5,42.6
 
 
168
  2011-07-30,32233,0,17422,1519,2118,841,0,0,3509,926,4293,272,0,442,639,225,27,0,5963077,11.1,3373933,14.9,11.1,29.4
169
  2011-07-31,37479,0,19959,1774,2379,910,0,0,4172,1151,4624,795,0,529,981,170,35,0,6799231,12.1,3776481,15.8,12.1,24.4
170
  2011-08-01,52236,0,26692,3026,4051,1629,0,0,5715,1672,6442,578,0,867,1196,320,48,0,9826434,14.8,5271471,15.7,14.8,150.3
 
153
  2011-07-13,55698,0,28918,3104,4087,1807,0,0,5841,1725,6864,666,0,938,1367,325,56,0,10420914,9.0,254991,6.7,9.0,4.8
154
  2011-07-14,53800,0,26717,3721,4197,1597,0,0,5249,1519,8046,606,0,768,1071,263,46,0,9527821,7.7,233161,14.9,7.7,4.8
155
  2011-07-15,49232,0,25727,2498,3276,1421,0,0,5323,1739,6535,609,0,657,1071,327,49,0,9235370,8.5,239867,23.4,8.5,4.8
156
+ 2011-07-16,37469,0,20070,1742,2202,927,0,0,4175,1184,4996,330,0,503,1049,257,34,0,6750083,7.1,182362,4.4,7.1,4.0
157
+ 2011-07-17,38943,0,20641,1765,2277,955,0,0,4744,1098,5499,359,0,437,919,210,39,0,7038566,6.4,201697,4.2,6.4,4.0
158
+ 2011-07-18,58313,0,28896,3709,5634,1586,0,0,6608,1832,7022,586,0,772,1270,346,52,0,10507393,9.9,287453,4.9,9.9,4.0
159
+ 2011-07-19,53739,0,27636,2767,3925,1791,0,0,6271,1706,6564,562,0,783,1334,357,43,0,10113568,9.2,271145,5.7,9.2,4.0
160
+ 2011-07-20,56424,0,29026,3151,4337,1720,0,0,6377,1729,6825,675,0,790,1441,301,52,0,10553139,8.4,281305,4.6,8.4,4.0
161
+ 2011-07-21,58219,0,29337,4023,4661,1681,0,0,6276,1753,7129,669,0,755,1571,320,44,0,10732063,6.8,272076,4.7,6.8,4.0
162
+ 2011-07-22,52510,0,27074,2714,3901,1575,0,0,6299,1579,6580,625,0,778,1084,257,44,0,9722444,8.7,299724,7.2,8.7,4.0
163
  2011-07-23,36837,0,19240,1951,2215,951,0,0,4533,1158,4866,354,0,552,789,196,32,0,6786184,6.8,195243,8.6,6.8,0.0
164
  2011-07-24,40060,0,20379,2115,2291,901,0,0,4140,1027,7022,497,0,457,1016,188,27,0,6973244,6.4,181363,0.0,6.4,0.0
165
  2011-07-25,54942,0,27965,2974,3973,1631,0,0,6463,1582,7199,864,0,775,1158,295,63,0,10136109,8.8,279506,0.0,8.8,0.0
166
+ 2011-07-26,64293,0,32336,3436,5770,1956,0,0,6990,1861,8689,700,0,755,1423,310,67,0,11694080,9.9,300024,0.0,9.9,0.0
167
+ 2011-07-27,58895,0,30313,3296,4558,1865,0,0,6618,1847,7395,559,0,742,1266,361,75,0,11169403,8.6,289330,0.0,8.6,0.0
168
+ 2011-07-28,56358,0,29500,3021,4520,1871,0,0,6379,1716,6503,615,0,875,998,313,47,0,10706435,9.1,282207,6.8,9.1,0.0
169
+ 2011-07-29,54127,0,27086,2985,4143,1605,0,0,5667,1663,7901,694,0,753,1281,276,73,0,9881968,7.7,246681,5.0,7.7,0.0
170
  2011-07-30,32233,0,17422,1519,2118,841,0,0,3509,926,4293,272,0,442,639,225,27,0,5963077,11.1,3373933,14.9,11.1,29.4
171
  2011-07-31,37479,0,19959,1774,2379,910,0,0,4172,1151,4624,795,0,529,981,170,35,0,6799231,12.1,3776481,15.8,12.1,24.4
172
  2011-08-01,52236,0,26692,3026,4051,1629,0,0,5715,1672,6442,578,0,867,1196,320,48,0,9826434,14.8,5271471,15.7,14.8,150.3