tamnd commited on
Commit
cf4cfa8
·
verified ·
1 Parent(s): 9d2e84c

Add 2012-09-24 — 149.0K 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-09-23** (452 days), totaling **37,129,211 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 8.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.5 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** — 97,905 events in 105 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 97.9K
@@ -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 | 97,905 | 105 |
107
 
108
 
109
  ### Live event schema
@@ -137,27 +137,27 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ██████████████████░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 23.0M
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 | 209 | 23,033,067 | 110,206 | 6.0 GB | 2.2 GB | 1h33m | 2h15m | 1h59m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████████░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 10.7M
154
  ```
155
 
156
 
157
  ### Issues per year
158
 
159
  ```
160
- 2011 █████████████████░░░░░░░░░░░░ 737.1K
161
  2012 ██████████████████████████████ 1.2M
162
  ```
163
 
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 17,420,011 | 46.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 1,962,220 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,814,861 | 7.6% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,526,708 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 145,021 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,671,312 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,153,429 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,112,625 | 16.5% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 318,752 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 421,297 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 714,331 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 33,231 | 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-09-24** (453 days), totaling **37,278,203 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 8.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.5 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** — 97,924 events in 108 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 97.9K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 97,924 | 108 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ██████████████████░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 23.2M
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 | 210 | 23,182,059 | 110,390 | 6.0 GB | 2.2 GB | 1h33m | 2h16m | 2h00m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████████░░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 10.8M
154
  ```
155
 
156
 
157
  ### Issues per year
158
 
159
  ```
160
+ 2011 █████████████████░░░░░░░░░░░░ 737.1K
161
  2012 ██████████████████████████████ 1.2M
162
  ```
163
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 17,490,745 | 46.9% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 1,978,901 | 5.3% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 2,829,227 | 7.6% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,532,081 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 146,403 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,683,667 | 9.9% | Repository stars |
567
+ | `forks` | ForkEvent | 1,158,498 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 6,129,466 | 16.4% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 319,628 | 0.9% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 422,811 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 717,042 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 33,363 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/09/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8966014d6af62db0fb4fa29ba70c09c0d3442e6c42a0e7a5610074c9aa3d2b3f
3
+ size 55254
data/creates/2012/09/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0407f3124747d43b74fb23bc7fc4f40de4d62937955e091449ce5d9026d670ad
3
+ size 607388
data/deletes/2012/09/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad9d06c17bb4a56502ad531e74bcab518d62df3ec05bc990505638bd11a2c18d
3
+ size 30812
data/forks/2012/09/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e5fd23c00e8f9c4d2fce0c0969ae520ff7c53651f19a4b4250d11b50abfedd4
3
+ size 139132
data/issue_comments/2012/09/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36adb9d372d976d2fa8b99fb5296f418e724cdc465373da366efb6e1d8f0c21e
3
+ size 313974
data/issues/2012/09/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8382af99210f7586534794607eaacdf73227f3378d589bd0b54e648c6dae7f2c
3
+ size 273381
data/public_events/2012/09/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29041810c9e137b697442a229aec024a058e09b41d491791d99dcb517e8c7f0d
3
+ size 6933
data/pull_requests/2012/09/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08b40331c13466719c1aa7a53bea65858c591de0af2f949b09fecb0aaf06c791
3
+ size 948133
data/pushes/2012/09/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95c4769f781fb7928f7af459592f52906c811e999124edfa20c9d9eb83482843
3
+ size 11481843
data/stars/2012/09/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a388b5eb2403ed61ae0329f31244d2297590461a393d31a883c01e455df3679a
3
+ size 284687
data/wiki_pages/2012/09/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3801ab38c7a7cf728cd501f9279117a925e992e1016fc2c3ffdd44d0acec3471
3
+ size 156740
stats.csv CHANGED
@@ -450,4 +450,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
450
  2012-09-20,149995,982,70710,13268,17098,4691,0,1332,12044,5144,19604,991,0,1298,2686,0,147,0,41391100,75.8,13822116,26.7,75.8,34.8
451
  2012-09-21,120423,826,62919,6012,10071,4568,0,1109,10641,4446,14796,873,0,1279,2754,0,129,0,36688415,62.8,12412274,23.7,62.8,39.7
452
  2012-09-22,83887,573,46256,4299,5919,2298,0,522,7183,3160,10337,412,0,713,2129,0,86,0,24641942,43.2,8240731,20.0,43.2,30.5
453
- 2012-09-23,104251,553,53059,11052,7300,2714,0,519,9179,3585,12566,563,0,886,2169,0,106,0,29001972,41.5,9867865,22.4,41.5,0.0
 
 
450
  2012-09-20,149995,982,70710,13268,17098,4691,0,1332,12044,5144,19604,991,0,1298,2686,0,147,0,41391100,75.8,13822116,26.7,75.8,34.8
451
  2012-09-21,120423,826,62919,6012,10071,4568,0,1109,10641,4446,14796,873,0,1279,2754,0,129,0,36688415,62.8,12412274,23.7,62.8,39.7
452
  2012-09-22,83887,573,46256,4299,5919,2298,0,522,7183,3160,10337,412,0,713,2129,0,86,0,24641942,43.2,8240731,20.0,43.2,30.5
453
+ 2012-09-23,104251,553,53059,11052,7300,2714,0,519,9179,3585,12566,563,0,886,2169,0,106,0,29001972,41.5,9867865,22.4,41.5,22.7
454
+ 2012-09-24,148992,958,70734,16681,14366,5373,0,1382,12355,5069,16841,876,0,1514,2711,0,132,0,43250433,51.1,14298277,29.5,51.1,0.0