tamnd commited on
Commit
a4874a0
·
verified ·
1 Parent(s): 30c8248

Add 2012-03-11 — 82.9K 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-03-10** (301 days), totaling **19,676,947 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 4.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.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
 
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 ███████████░░░░░░░░░░░░░░░░░░ 5.6M
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 | 58 | 5,580,803 | 96,220 | 1.5 GB | 676.7 MB | 29m09s | 27m25s | 32m35s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 2.3M
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 250.7K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████████░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 602.7K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 ██████████░░░░░░░░░░░░░░░░░░░ 512.1K
173
  ```
174
 
175
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 9,006,617 | 45.8% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 987,782 | 5.0% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,311,388 | 6.7% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 973,522 | 4.9% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 14,433 | 0.1% | Line-level PR comments |
561
- | `stars` | WatchEvent | 1,930,101 | 9.8% | Repository stars |
562
- | `forks` | ForkEvent | 545,874 | 2.8% | Repository forks |
563
- | `creates` | CreateEvent | 3,309,922 | 16.8% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 217,310 | 1.1% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 230,668 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 389,672 | 2.0% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.5% | Collaborator additions |
568
- | `public_events` | PublicEvent | 17,415 | 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-03-11** (302 days), totaling **19,759,854 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 4.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.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
 
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 ███████████░░░░░░░░░░░░░░░░░░ 5.7M
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 | 59 | 5,663,710 | 95,995 | 1.5 GB | 683.4 MB | 29m31s | 27m39s | 32m58s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 2.4M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 254.4K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████████░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 604.9K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ██████████░░░░░░░░░░░░░░░░░░░ 520.0K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 9,048,287 | 45.8% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 991,518 | 5.0% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,316,734 | 6.7% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 975,732 | 4.9% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 14,708 | 0.1% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 1,938,037 | 9.8% | Repository stars |
562
+ | `forks` | ForkEvent | 548,092 | 2.8% | Repository forks |
563
+ | `creates` | CreateEvent | 3,326,268 | 16.8% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 217,717 | 1.1% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 231,456 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 391,254 | 2.0% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.5% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 17,498 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/03/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3760f78d7b56227e8beee43b60e75cd414de9a586f507e560f0d57341d4a9fd1
3
+ size 28108
data/creates/2012/03/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7afc7cf878d790942b27ac7f6bf13ac90c015fd67e89d5b13801dcb204143382
3
+ size 311803
data/deletes/2012/03/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:546fb080d27994decc43106f832701ee42b0c8bc68c855648bf65e1769253e92
3
+ size 13104
data/forks/2012/03/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e47e41369d280b5b7cf603949a871aca4da719e0c6182015828a71d1651936b6
3
+ size 50268
data/issue_comments/2012/03/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c62aa8ada2f8c354a9790bc22d8768d2c8edb574b4fc1ca91e374cda846391d0
3
+ size 100942
data/issues/2012/03/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f374e9f71630f65d8e87193c037f3fb2af91e101f1b9c9f6252cc6a8e4f9edd3
3
+ size 78050
data/public_events/2012/03/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d1cff536fce195581306c676e354d3076225d903c6699bd269487bfdad6e03c
3
+ size 4320
data/pull_requests/2012/03/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6bfe154aa09b8690399b7f20dc3a92ea01c483828bb17832821cb8ac7d23792
3
+ size 364533
data/pushes/2012/03/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebeb1ffc4cea1a1a9445b07ad746df63def6bb705107876c1dc5f9ebdeae5e4d
3
+ size 5916460
data/stars/2012/03/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcd1e24014743e4494f8dfa30e5f26c44c6815f71339eb4aca94e63a9c361060
3
+ size 128855
data/wiki_pages/2012/03/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f895c27bb5735fa1a296dbc98f53f208bf1f3c481e22d12eed737c20e2f7432b
3
+ size 75589
stats.csv CHANGED
@@ -299,4 +299,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
299
  2012-03-07,141627,0,54265,6227,9068,25996,0,698,12993,3767,22726,1011,0,1480,2574,695,127,0,45514169,49.2,17775768,52.4,49.2,25.2
300
  2012-03-08,136260,0,53048,5293,8907,24478,0,906,12322,3764,22031,1121,0,1290,2355,622,123,0,43579009,54.8,17263192,51.1,54.8,31.3
301
  2012-03-09,138754,0,51325,5075,8268,31240,0,827,11074,3567,22168,1063,0,1389,2098,571,89,0,45290060,59.0,17071131,28.8,59.0,32.3
302
- 2012-03-10,32077,3512,10595,920,1279,7782,0,107,2224,741,7317,223,0,252,515,107,15,0,10415548,8.6,3678773,12.4,8.6,0.0
 
 
299
  2012-03-07,141627,0,54265,6227,9068,25996,0,698,12993,3767,22726,1011,0,1480,2574,695,127,0,45514169,49.2,17775768,52.4,49.2,25.2
300
  2012-03-08,136260,0,53048,5293,8907,24478,0,906,12322,3764,22031,1121,0,1290,2355,622,123,0,43579009,54.8,17263192,51.1,54.8,31.3
301
  2012-03-09,138754,0,51325,5075,8268,31240,0,827,11074,3567,22168,1063,0,1389,2098,571,89,0,45290060,59.0,17071131,28.8,59.0,32.3
302
+ 2012-03-10,32077,3512,10595,920,1279,7782,0,107,2224,741,7317,223,0,252,515,107,15,0,10415548,8.6,3678773,12.4,8.6,23.4
303
+ 2012-03-11,82907,2486,41670,3736,5346,2210,0,275,7936,2218,16346,407,0,788,1582,0,83,0,21558165,14.1,7072032,22.1,14.1,0.0