tamnd commited on
Commit
bf26276
·
verified ·
1 Parent(s): 9c85ad1

Add 2012-09-30 — 93.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-09-29** (458 days), totaling **37,966,973 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,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** — 118,707 events in 139 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 118.7K
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 | 118,707 | 139 |
107
 
108
 
109
  ### Live event schema
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 █████████████████░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 23.9M
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 | 215 | 23,870,829 | 111,027 | 6.2 GB | 2.2 GB | 1h36m | 2h20m | 2h03m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 █████████████████░░░░░░░░░░░░░ 6.7M
153
- 2012 █████████████████████████████ 11.1M
154
  ```
155
 
156
 
@@ -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,816,230 | 46.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,025,050 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,906,569 | 7.7% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,554,795 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 152,580 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,742,645 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,183,435 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,227,853 | 16.4% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 323,603 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 429,379 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 730,134 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 33,969 | 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-30** (459 days), totaling **38,060,856 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.0 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** — 120,449 events in 143 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 120.4K
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 | 120,449 | 143 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 █████████████████░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 24.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 | 216 | 23,964,712 | 110,947 | 6.2 GB | 2.2 GB | 1h36m | 2h20m | 2h04m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 █████████████████░░░░░░░░░░░░░ 6.7M
153
+ 2012 █████████████████████��████████ 11.2M
154
  ```
155
 
156
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 17,866,831 | 46.9% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,029,952 | 5.3% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 2,913,034 | 7.7% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,557,432 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 153,113 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,751,448 | 9.9% | Repository stars |
567
+ | `forks` | ForkEvent | 1,186,668 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 6,240,627 | 16.4% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 324,139 | 0.9% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 430,239 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 732,036 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 34,049 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7bba7db56023b021615406ae0e3ce5cb8f91fbf38994f9dfb4a1a4f8d3acbf2
3
+ size 35432
data/creates/2012/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c1e9f2796dae3ac630c9dfc6f40378c8f4981a258b6eb4086daa41784bed390
3
+ size 429662
data/deletes/2012/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef3ae6ecd8d92299ce7aa38de398f5533c4d082d6cf9f9cb5aefaabd1a255649
3
+ size 20289
data/forks/2012/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db0d4e796e73102aedf8804b0214881cfca6ed93ba6b0b88010545a6c7faeffe
3
+ size 93004
data/issue_comments/2012/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62acec5cc8c2f31d641e9f07d804f7e947f0cd14dcd256fd8bf2be3764f9c4b6
3
+ size 162597
data/issues/2012/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd92c6afc2236bddb986166957dba3d8d6780a37f5cd08c632cfabb2974ae0f5
3
+ size 129731
data/public_events/2012/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d270fd65a308c9c85e5773e4d417bcb9521c1edfad8fdd312eb140f1e497dec
3
+ size 5060
data/pull_requests/2012/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3efe68ab3ff1c10a3984a45915965ad49957acd26d540601c3264dc6ad5f46f
3
+ size 519776
data/pushes/2012/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37662216a100c08a846582a5093ebd581925d0183a2eff024904f191e1241027
3
+ size 7879447
data/stars/2012/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6dedec7632b9ae08bd669022e89034186a8ea4110d492b67e5e527332326a95f
3
+ size 197222
data/wiki_pages/2012/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9467c028ab5482746349b510314e33d669f0cf62eee54215d85a9954a02da00
3
+ size 103520
stats.csv CHANGED
@@ -456,4 +456,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,35.7
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,25.5
458
  2012-09-28,134036,834,63108,9683,17746,4561,0,1260,12142,4706,15084,787,0,1302,2690,0,133,0,38617509,30.2,12622921,25.1,30.2,26.7
459
- 2012-09-29,86169,668,47049,4362,6133,2470,0,463,8341,3378,10362,439,0,728,1692,0,84,0,25516980,14.6,8780823,37.4,14.6,0.0
 
 
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,35.7
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,25.5
458
  2012-09-28,134036,834,63108,9683,17746,4561,0,1260,12142,4706,15084,787,0,1302,2690,0,133,0,38617509,30.2,12622921,25.1,30.2,26.7
459
+ 2012-09-29,86169,668,47049,4362,6133,2470,0,463,8341,3378,10362,439,0,728,1692,0,84,0,25516980,14.6,8780823,37.4,14.6,34.2
460
+ 2012-09-30,93883,557,50601,4902,6465,2637,0,533,8803,3233,12774,536,0,860,1902,0,80,0,27908957,13.8,9575740,22.1,13.8,0.0