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

Add 2012-09-29 — 86.2K 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-09-28** (457 days), totaling **37,880,804 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
 
@@ -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** — 116,589 events in 137 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 116.6K
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 | 116,589 | 137 |
107
 
108
 
109
  ### Live event schema
@@ -137,19 +137,19 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 █████████████████░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 23.8M
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 | 214 | 23,784,660 | 111,143 | 6.2 GB | 2.2 GB | 1h35m | 2h20m | 2h03m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
- 2011 █████████████████░░░░░░░░░░░░ 6.7M
153
  2012 ██████████████████████████████ 11.1M
154
  ```
155
 
@@ -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,769,181 | 46.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,020,688 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,900,436 | 7.7% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,552,325 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 152,117 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,734,304 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,180,057 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,217,491 | 16.4% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 323,164 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 428,651 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 728,442 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 33,885 | 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-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
 
 
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
  | 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
 
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
 
 
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
 
data/commit_comments/2012/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f9aeddff507a64c5d38296892d2381409ce5f74af483cb7580e0e2e2de94c8e
3
+ size 35720
data/creates/2012/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e90c595c79ccd9bbd452e22f06b85667414c1347a3cd435a21c65741ca493eed
3
+ size 377876
data/deletes/2012/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce89e0a64decd3905bf2cd064733435b2f96271095b2f3d2818ad8e4520c7645
3
+ size 17709
data/forks/2012/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a04b61af847cfc80e136752fd909cab125c39092c2610c9b56508f5bfa169f1
3
+ size 94934
data/issue_comments/2012/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab2f03286b329879113c7786209c21196f64aa38d9165ed3b73954369bd44bcd
3
+ size 155522
data/issues/2012/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c929c755afb722bec0f64c5e23f52b729996724a7dfa9be787bb8be1dff95f22
3
+ size 116344
data/public_events/2012/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a280b94aca0c0b7cd08ccf19983dc9c450ce2dc4596fdef7bfa88711317f026b
3
+ size 5091
data/pull_requests/2012/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f199cd75a621aa40f00e85729376c14e2a405a1c0afc0404bd8048070213cd5
3
+ size 487240
data/pushes/2012/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9108a247bbe5135aa6693af4ca144c96d828bdc92c4cf4f0c0a68d7852466246
3
+ size 7135057
data/stars/2012/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f261e3404a910175bef4f8a274ced630463d2c50837d71ef0e02a053d56579e
3
+ size 225573
data/wiki_pages/2012/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee01fe5149c20ca604882a4f75087aee165cf0fd32a3b193cfd97bf25899af3f
3
+ size 129757
stats.csv CHANGED
@@ -455,4 +455,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,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,0.0
 
 
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,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