tamnd commited on
Commit
ad79757
·
verified ·
1 Parent(s): 2e5a95b

Add 2012-10-11 — 146.5K 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-10-10** (469 days), totaling **39,370,889 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 9.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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
 
@@ -71,7 +71,7 @@ The underlying data comes from [GH Archive](https://www.gharchive.org/), created
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
- **2026-03-28** — 140,608 events in 180 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 140.6K
@@ -103,7 +103,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
- | 2026-03-28 | 140,608 | 180 |
107
 
108
 
109
  ### Live event schema
@@ -137,13 +137,13 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ████████████████░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 25.3M
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
146
- | 2012 | 226 | 25,274,745 | 111,835 | 6.6 GB | 2.4 GB | 1h41m | 2h25m | 2h09m |
147
 
148
 
149
  ### Pushes per year
@@ -165,7 +165,7 @@ duckdb.sql("""
165
  ### Pull requests per year
166
 
167
  ```
168
- 2011 ████████░░░░░░░░░░░░░░░░░░░░░ 370.9K
169
  2012 ██████████████████████████████ 1.2M
170
  ```
171
 
@@ -174,7 +174,7 @@ duckdb.sql("""
174
 
175
  ```
176
  2011 █████████████████░░░░░░░░░░░░░ 1.4M
177
- 2012 █████████████████████████████ 2.4M
178
  ```
179
 
180
 
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 18,538,033 | 47.1% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,097,907 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,024,819 | 7.7% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,603,678 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 164,485 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,866,388 | 9.8% | Repository stars |
567
- | `forks` | ForkEvent | 1,234,098 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,419,952 | 16.3% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 332,336 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 444,312 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 758,648 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 35,446 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
 
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-10-11** (470 days), totaling **39,517,395 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 9.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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
 
 
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
+ **2026-03-28** — 140,645 events in 185 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 140.6K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 140,645 | 185 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ████████████████░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 25.4M
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
146
+ | 2012 | 227 | 25,421,251 | 111,987 | 6.7 GB | 2.4 GB | 1h42m | 2h26m | 2h10m |
147
 
148
 
149
  ### Pushes per year
 
165
  ### Pull requests per year
166
 
167
  ```
168
+ 2011 ████████░░░░░░░░░░░░░░░░░░░░░ 370.9K
169
  2012 ██████████████████████████████ 1.2M
170
  ```
171
 
 
174
 
175
  ```
176
  2011 █████████████████░░░░░░░░░░░░░ 1.4M
177
+ 2012 ██████████████████���███████████ 2.5M
178
  ```
179
 
180
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 18,614,497 | 47.1% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,105,461 | 5.3% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,037,402 | 7.7% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,609,331 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 165,601 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,879,734 | 9.8% | Repository stars |
567
+ | `forks` | ForkEvent | 1,239,805 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 6,437,318 | 16.3% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 333,379 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 445,857 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 761,612 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 35,554 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/10/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b40025dff243821b2040845b632dcc4c614242c02c25e9e0c7791ad65bf1ecf4
3
+ size 56432
data/creates/2012/10/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27143ad6ef509e0e81c52fe03f7383c4f362604f3b7f8cef6783cc6937c5580d
3
+ size 697754
data/deletes/2012/10/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69074bcff60e1090d776fbe3f34bf3774397e58b21bcd5f9471111974b3f019e
3
+ size 34970
data/forks/2012/10/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:877185bae2d97493b1fa1f19e8afe40731689d2a7f9f6cbb9ffe35a1299e4783
3
+ size 154978
data/issue_comments/2012/10/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c5d4d5ca92a5183c52f6f957d83d270c07e0ac2b7ad158e265f5c331f4003d8
3
+ size 300246
data/issues/2012/10/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41f4a991612f8d1e9a7502a46cac946d938525d08506fdf0216cfe12049de319
3
+ size 203736
data/public_events/2012/10/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66680561621ba360f6f5e1041cd66c97e5ea015c5f2b965a5632751b0a1909ad
3
+ size 5964
data/pull_requests/2012/10/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57aa1eff5b10c4fe3d1366bab799c0423d6cd1fd4e771207bb369af5cdbeb074
3
+ size 1076691
data/pushes/2012/10/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:057d11b21e7f6d4937a02e84feb7b9bdccb778984eb544e6048fca63734aef0e
3
+ size 12044900
data/stars/2012/10/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3a54fb61bf3f69694df9e3bdff49d035d031e8087bb189f52db26ff66d9e9e4
3
+ size 296544
data/wiki_pages/2012/10/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21825e0b9eea2d9a8d0c971d4a63f79cc7ed7578df664f200804c5a491f00eec
3
+ size 153086
stats.csv CHANGED
@@ -467,4 +467,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
467
  2012-10-07,87933,592,47667,4272,6253,2500,0,540,8729,2986,11408,492,0,701,1718,0,75,0,26403617,27.5,9274202,25.2,27.5,30.5
468
  2012-10-08,140290,1179,72947,7397,12093,5020,0,1293,12597,5164,16886,900,0,1451,3202,0,161,0,43817035,35.1,14765844,23.8,35.1,39.0
469
  2012-10-09,155951,1205,78572,7753,13013,5521,0,1246,13321,5766,23605,996,0,1701,3108,0,144,0,47189471,38.9,15844053,19.2,38.9,26.4
470
- 2012-10-10,149037,1066,77923,7681,12624,5533,0,1364,13314,5577,18149,892,0,1728,3012,0,174,0,46476969,31.5,15624548,42.4,31.5,0.0
 
 
467
  2012-10-07,87933,592,47667,4272,6253,2500,0,540,8729,2986,11408,492,0,701,1718,0,75,0,26403617,27.5,9274202,25.2,27.5,30.5
468
  2012-10-08,140290,1179,72947,7397,12093,5020,0,1293,12597,5164,16886,900,0,1451,3202,0,161,0,43817035,35.1,14765844,23.8,35.1,39.0
469
  2012-10-09,155951,1205,78572,7753,13013,5521,0,1246,13321,5766,23605,996,0,1701,3108,0,144,0,47189471,38.9,15844053,19.2,38.9,26.4
470
+ 2012-10-10,149037,1066,77923,7681,12624,5533,0,1364,13314,5577,18149,892,0,1728,3012,0,174,0,46476969,31.5,15624548,42.4,31.5,30.0
471
+ 2012-10-11,146506,1057,76464,7554,12583,5653,0,1116,13346,5707,17366,1043,0,1545,2964,0,108,0,45436658,38.4,15025301,22.2,38.4,0.0