tamnd commited on
Commit
7f9145a
·
verified ·
1 Parent(s): 3ed5afb

Add 2012-08-16 — 131.3K 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 **2012-08-15** (425 days), totaling **33,855,129 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 7.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.2 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
 
@@ -132,19 +132,19 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 █████████████████████░░░░░░░░░ 14.1M
135
- 2012 ██████████████████████████████ 19.8M
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 | 182 | 19,758,985 | 108,565 | 5.1 GB | 1.9 GB | 1h21m | 1h50m | 1h43m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
- 2011 █████████████████████░░░░░░░░ 6.7M
148
  2012 ██████████████████████████████ 9.1M
149
  ```
150
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 1.0M
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 | 15,752,964 | 46.5% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,758,284 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 2,507,083 | 7.4% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,416,486 | 4.2% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 116,997 | 0.3% | Line-level PR comments |
561
- | `stars` | WatchEvent | 3,371,749 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 1,034,189 | 3.1% | Repository forks |
563
- | `creates` | CreateEvent | 5,720,423 | 16.9% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 298,171 | 0.9% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 386,257 | 1.1% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 646,937 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
- | `public_events` | PublicEvent | 30,220 | 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-08-16** (426 days), totaling **33,986,381 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 7.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.2 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
 
 
132
 
133
  ```
134
  2011 █████████████████████░░░░░░░░░ 14.1M
135
+ 2012 ██████████████████████████████ 19.9M
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 | 183 | 19,890,237 | 108,689 | 5.1 GB | 1.9 GB | 1h21m | 1h50m | 1h44m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
+ 2011 █████████████████████░░░░░░░░ 6.7M
148
  2012 ██████████████████████████████ 9.1M
149
  ```
150
 
 
161
 
162
  ```
163
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 1.1M
165
  ```
166
 
167
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 15,820,279 | 46.5% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,766,413 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 2,521,282 | 7.4% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,421,025 | 4.2% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 118,138 | 0.3% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 3,383,254 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 1,038,800 | 3.1% | Repository forks |
563
+ | `creates` | CreateEvent | 5,734,632 | 16.9% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 298,946 | 0.9% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 387,722 | 1.1% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 649,482 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 30,337 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0d0b08810a9085edfe83057b78e41a2139441498cc8d5064742ac4a1c01d361
3
+ size 49763
data/creates/2012/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1aef5b52cd7dc0e1267352bfa369418027b26304b993e97a75defc2158c1b859
3
+ size 483594
data/deletes/2012/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f65b17e49c4526f32509e602af3c2b791a8bcd45590db189a5455b476125d170
3
+ size 26555
data/forks/2012/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbb936c4fd35fad651c1cf894de22f61b5651a0819d18805aed8a4bb9507592a
3
+ size 113663
data/issue_comments/2012/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44a71893fd9ba3938da0713a252a65e49f79ce52dc498f0f593405f80a9fd3a8
3
+ size 260171
data/issues/2012/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:963945c7a386394a33b9185588a9bdec78dde13245ba8c61e1dd902868507504
3
+ size 168217
data/public_events/2012/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e785483c765da5ecf6dc0c155d793139b0b37fa1a23de63e2919837c172dfbb
3
+ size 5803
data/pull_requests/2012/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6549e7c4d1560a17a7327ccb36009c0ce88cda6ea64f915234aeb2c9bc33e769
3
+ size 812730
data/pushes/2012/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8eec228fbe419c01c13aee56e4d01b20bedf295f8b3180a831f4c0b3a4fcf53
3
+ size 10438155
data/stars/2012/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b859fbe746ddc40febe11c8f33f4aad0a8f5fec36bddd4f8f99b21b5edebc9a5
3
+ size 233029
data/wiki_pages/2012/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a63087404160423809c9b43dc6dd78782ab93ae0c6cbf6f1ea0c1cb637b7c9b5
3
+ size 181267
stats.csv CHANGED
@@ -423,4 +423,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
423
  2012-08-12,88621,397,49055,4344,6544,2264,0,451,8866,3164,10585,460,0,725,1704,0,62,0,24782511,15.8,8596636,27.2,15.8,52.3
424
  2012-08-13,132998,760,68210,8123,13804,4672,0,1081,12188,4898,14034,824,0,1765,2538,0,101,0,38990005,22.2,12961374,46.6,22.2,56.8
425
  2012-08-14,131811,710,69425,7375,11977,4741,0,1149,11981,4908,14536,878,0,1568,2434,0,129,0,39316756,19.1,13179745,23.1,19.1,22.6
426
- 2012-08-15,117313,629,63087,6151,10070,3923,0,1077,10532,4299,13180,838,0,1239,2168,0,120,0,35038402,19.1,11629201,22.8,19.1,0.0
 
 
423
  2012-08-12,88621,397,49055,4344,6544,2264,0,451,8866,3164,10585,460,0,725,1704,0,62,0,24782511,15.8,8596636,27.2,15.8,52.3
424
  2012-08-13,132998,760,68210,8123,13804,4672,0,1081,12188,4898,14034,824,0,1765,2538,0,101,0,38990005,22.2,12961374,46.6,22.2,56.8
425
  2012-08-14,131811,710,69425,7375,11977,4741,0,1149,11981,4908,14536,878,0,1568,2434,0,129,0,39316756,19.1,13179745,23.1,19.1,22.6
426
+ 2012-08-15,117313,629,63087,6151,10070,3923,0,1077,10532,4299,13180,838,0,1239,2168,0,120,0,35038402,19.1,11629201,22.8,19.1,50.6
427
+ 2012-08-16,131252,702,67315,8129,14199,4539,0,1141,11505,4611,14209,775,0,1465,2545,0,117,0,38439393,17.5,12772947,23.3,17.5,0.0