tamnd commited on
Commit
ae585fe
·
verified ·
1 Parent(s): 98f37a9

Add 2012-09-26 — 179.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-09-25** (454 days), totaling **37,419,783 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,10 +71,10 @@ 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,932 events in 110 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 97.9K
78
  01:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -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,932 | 110 |
107
 
108
 
109
  ### Live event schema
@@ -136,21 +136,21 @@ duckdb.sql("""
136
  ## Events per year
137
 
138
  ```
139
- 2011 █████████████████░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 23.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 | 211 | 23,323,639 | 110,538 | 6.1 GB | 2.2 GB | 1h34m | 2h17m | 2h00m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████████░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 10.9M
154
  ```
155
 
156
 
@@ -158,7 +158,7 @@ duckdb.sql("""
158
 
159
  ```
160
  2011 █████████████████░░░░░░░░░░░░░ 737.1K
161
- 2012 ██████████████████████████████ 1.2M
162
  ```
163
 
164
 
@@ -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,562,822 | 46.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 1,986,368 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,841,912 | 7.6% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,537,351 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 147,974 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,697,005 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,163,859 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,147,082 | 16.4% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 320,577 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 424,260 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 719,806 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 33,485 | 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-27** (456 days), totaling **37,746,768 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.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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
 
 
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** — 112,124 events in 129 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 112.1K
78
  01:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 112,124 | 129 |
107
 
108
 
109
  ### Live event schema
 
136
  ## Events per year
137
 
138
  ```
139
+ 2011 █████████████████░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 23.7M
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 | 213 | 23,650,624 | 111,035 | 6.2 GB | 2.2 GB | 1h35m | 2h19m | 2h02m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████████░░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 11.0M
154
  ```
155
 
156
 
 
158
 
159
  ```
160
  2011 █████████████████░░░░░░░░░░░░░ 737.1K
161
+ 2012 ██████████████████████████████ 1.3M
162
  ```
163
 
164
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 17,706,073 | 46.9% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,011,005 | 5.3% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 2,882,690 | 7.6% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,547,764 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 150,857 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,722,162 | 9.9% | Repository stars |
567
+ | `forks` | ForkEvent | 1,175,351 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 6,202,407 | 16.4% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 322,377 | 0.9% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 427,349 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 725,752 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 33,752 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed9cda5138a6aeb7f80476b3ffd21ed2f10317a972df9a81c2d530232293d779
3
+ size 57328
data/creates/2012/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:305dbac9df0bed41f7388afe088568d17e2a62c29c6f9c57f0385f58faa6d7af
3
+ size 986105
data/deletes/2012/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:299f80fa24083720b0884590124c502c4d0ee829de024dbdb29a2913ec0f53ca
3
+ size 31889
data/forks/2012/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b47e248855f230eb2203d1ab0cf129910ac0a2cd56c04e30b9191016284035b7
3
+ size 158050
data/issue_comments/2012/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1059e4e0719d32ef45d879688564b229b43a6a3ea6c97000cdb749e15891dbb8
3
+ size 362568
data/issues/2012/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baecf67080637c329fc3a8312f59db2706d9efb4d112edfbdc57267ae58fae15
3
+ size 244936
data/public_events/2012/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c0271cb6beb2a4d6d21d7fb65fa566d7eff9a0cb779070af8e5c4db85ab6788
3
+ size 6280
data/pull_requests/2012/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fc5075b6bb238beafafd234b720352b1460691ecd8c6825ce0126c8f9d2eaf9
3
+ size 935402
data/pushes/2012/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36af459ba81f67850d7f0f548058e63db749a262e4ffbd4aa74dfbcedb528cc1
3
+ size 11823554
data/stars/2012/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c865a853a23dac0f56c2deab567c4f583ded2b841b2a8b27781f6dfb82e2305
3
+ size 287395
data/wiki_pages/2012/09/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6a56a41bda3fea5c4dc2e7a636d6438dffb9c6eb2acfaaab7822ced6acb33bd
3
+ size 228551
stats.csv CHANGED
@@ -452,4 +452,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,29.2
455
- 2012-09-25,141580,911,72077,7467,12685,5270,0,1571,13338,5361,17616,949,0,1449,2764,0,122,0,43567072,63.4,14428322,48.3,63.4,0.0
 
 
 
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,29.2
455
+ 2012-09-25,141580,911,72077,7467,12685,5270,0,1571,13338,5361,17616,949,0,1449,2764,0,122,0,43567072,63.4,14428322,48.3,63.4,107.3
456
+ 2012-09-26,179536,1041,72030,13580,23823,5006,0,1185,12335,5988,38768,918,0,1553,3192,0,117,0,44355404,72.5,15122058,29.4,72.5,0.0
457
+ 2012-09-27,147449,906,71221,11057,16955,5407,0,1698,12822,5504,16557,882,0,1536,2754,0,150,0,43490008,69.5,14396087,24.8,69.5,0.0