tamnd commited on
Commit
dd956ec
·
verified ·
1 Parent(s): 703ee53

Add 2012-06-11 — 125.8K events, 11 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 **2012-06-10** (368 days), totaling **27,074,706 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 6.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.6 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
 
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ███████████████████████████░░ 13.0M
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
- | 2012 | 125 | 12,978,562 | 103,828 | 3.4 GB | 1.3 GB | 55m59s | 1h17m | 1h11m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 ██████████████████████████░░░░ 5.8M
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 █████████████████████████░░░░ 638.3K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 █████████████░░░░░░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 828.3K
165
  ```
166
 
167
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 12,501,311 | 46.2% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,375,348 | 5.1% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,965,673 | 7.3% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,199,149 | 4.4% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 62,446 | 0.2% | Line-level PR comments |
561
- | `stars` | WatchEvent | 2,704,972 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 795,072 | 2.9% | Repository forks |
563
- | `creates` | CreateEvent | 4,580,139 | 16.9% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 258,959 | 1.0% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 314,306 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 521,343 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
- | `public_events` | PublicEvent | 24,278 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
 
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 **2012-06-12** (370 days), totaling **27,331,266 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 6.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.7 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
 
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ███████████████████████████░░ 13.2M
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
+ | 2012 | 127 | 13,235,122 | 104,213 | 3.4 GB | 1.3 GB | 57m14s | 1h18m | 1h12m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 ██████████████████████████░░░░ 5.9M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 █████████████████████████░░░░ 650.4K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 █████████████░░░░░░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 837.1K
165
  ```
166
 
167
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 12,622,639 | 46.2% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,387,468 | 5.1% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,986,483 | 7.3% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,207,927 | 4.4% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 64,822 | 0.2% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 2,729,631 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 804,438 | 2.9% | Repository forks |
563
+ | `creates` | CreateEvent | 4,626,925 | 16.9% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 260,489 | 1.0% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 317,137 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 525,936 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 24,516 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/06/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57a2a6b0b45eb1ecb2261c075ac98ed511151e5a50b10fa91024a93bfcc567ac
3
+ size 50151
data/creates/2012/06/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0568092010103581f507c886e6acda0324c2bedebc64f640be9e827cf15d7130
3
+ size 485373
data/deletes/2012/06/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2d10ac3968ef475fb33f3b983c00b95db90d54381500b3ba1bd893a5a8e39b6
3
+ size 24626
data/forks/2012/06/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08c2b2536ab28710d51843011cda085c52ff4348a6c0c4b46f22b5a1fd999204
3
+ size 105912
data/issue_comments/2012/06/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89866a9c74ff9c3c5ba763bc147e1bf5db2185644c25e35b73750a98fd6d53cf
3
+ size 219546
data/issues/2012/06/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2162337c1b8065b036e4e04e67f5d33070c2d2e6b9a1f087d5203177d87d9038
3
+ size 143200
data/public_events/2012/06/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de689a67337212076169561956d9f0173c576c2d09c30022a073571c22441e52
3
+ size 5736
data/pull_requests/2012/06/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2264fdfc41859a495b32e01cfc7259efa416db2a08add5cd260ac6d2a1285f13
3
+ size 769360
data/pushes/2012/06/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:001c044a471deeee516b4b5b521aa8b5afe7ba8aa527aae06a9929837f0f2ad7
3
+ size 9637577
data/stars/2012/06/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97a528585e7a7e572154aadac9ee148ceecb81c58523e2028bbf1a837edddb90
3
+ size 228150
data/wiki_pages/2012/06/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25a3588873bd4cc443519f5d54dfeb99d42fd960c22dbbf8be5859a935dd21eb
3
+ size 116455
stats.csv CHANGED
@@ -366,4 +366,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
366
  2012-06-07,118639,476,56983,5900,10016,4050,0,1042,13128,4576,17756,827,0,1628,2107,0,150,0,33365045,18.0,11060995,22.7,18.0,29.8
367
  2012-06-08,115454,454,53696,5323,8863,3680,0,965,11557,4092,22890,684,0,1289,1828,0,133,0,30760054,17.2,10497066,21.0,17.2,32.7
368
  2012-06-09,85315,304,39594,3980,5657,2062,0,561,8194,2713,19632,412,0,729,1409,0,68,0,21145615,10.2,7382815,21.3,10.2,28.8
369
- 2012-06-10,94658,272,44814,3930,6196,2200,0,469,9161,2919,21733,475,0,782,1630,0,77,0,23902230,16.8,8217896,37.9,16.8,0.0
 
 
 
366
  2012-06-07,118639,476,56983,5900,10016,4050,0,1042,13128,4576,17756,827,0,1628,2107,0,150,0,33365045,18.0,11060995,22.7,18.0,29.8
367
  2012-06-08,115454,454,53696,5323,8863,3680,0,965,11557,4092,22890,684,0,1289,1828,0,133,0,30760054,17.2,10497066,21.0,17.2,32.7
368
  2012-06-09,85315,304,39594,3980,5657,2062,0,561,8194,2713,19632,412,0,729,1409,0,68,0,21145615,10.2,7382815,21.3,10.2,28.8
369
+ 2012-06-10,94658,272,44814,3930,6196,2200,0,469,9161,2919,21733,475,0,782,1630,0,77,0,23902230,16.8,8217896,37.9,16.8,25.5
370
+ 2012-06-11,125807,551,59762,5967,10265,4238,0,1114,11667,4308,23311,759,0,1498,2255,0,112,0,34517457,28.4,11786086,38.1,28.4,0.0
371
+ 2012-06-12,130753,594,61566,6153,10545,4540,0,1262,12992,5058,23475,771,0,1333,2338,0,126,0,35908398,26.3,12061014,37.4,26.3,0.0