tamnd commited on
Commit
d0e045f
·
verified ·
1 Parent(s): fdc4c56

Add 2012-11-26 — 177.9K 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-11-14** (504 days), totaling **44,219,220 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 10.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.2 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,11 +71,11 @@ 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** — 251,607 events in 431 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.8K
78
- 01:00 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 16.8K
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
81
  04: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 | 251,607 | 431 |
107
 
108
 
109
  ### Live event schema
@@ -136,21 +136,21 @@ duckdb.sql("""
136
  ## Events per year
137
 
138
  ```
139
- 2011 █████████████░░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 30.1M
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 | 261 | 30,123,076 | 115,414 | 8.0 GB | 2.8 GB | 2h01m | 2h40m | 2h31m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 █████████████░░░░░░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 14.4M
154
  ```
155
 
156
 
@@ -158,7 +158,7 @@ duckdb.sql("""
158
 
159
  ```
160
  2011 █████████████░░░░░░░░░░░░░░░░░ 737.1K
161
- 2012 ██████████████████████████████ 1.6M
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 | 21,053,451 | 47.6% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,372,725 | 5.4% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,440,809 | 7.8% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,770,536 | 4.0% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 206,543 | 0.5% | Line-level PR comments |
566
- | `stars` | WatchEvent | 4,294,121 | 9.7% | Repository stars |
567
- | `forks` | ForkEvent | 1,416,879 | 3.2% | Repository forks |
568
- | `creates` | CreateEvent | 7,011,770 | 15.9% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 362,922 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 492,681 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 869,178 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
- | `public_events` | PublicEvent | 40,024 | 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-11-26** (505 days), totaling **44,397,091 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 10.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.2 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** — 256,736 events in 449 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.8K
78
+ 01:00 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 22.0K
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 256,736 | 449 |
107
 
108
 
109
  ### Live event schema
 
136
  ## Events per year
137
 
138
  ```
139
+ 2011 █████████████░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 30.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 | 262 | 30,300,947 | 115,652 | 8.0 GB | 2.8 GB | 2h01m | 2h41m | 2h31m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 █████████████░░░░░░░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 14.5M
154
  ```
155
 
156
 
 
158
 
159
  ```
160
  2011 █████████████░░░░░░░░░░░░░░░░░ 737.1K
161
+ 2012 ██████████████████████████████ 1.7M
162
  ```
163
 
164
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 21,140,711 | 47.6% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,391,963 | 5.4% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,455,515 | 7.8% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,776,598 | 4.0% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 208,359 | 0.5% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 4,309,290 | 9.7% | Repository stars |
567
+ | `forks` | ForkEvent | 1,422,763 | 3.2% | Repository forks |
568
+ | `creates` | CreateEvent | 7,031,702 | 15.8% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 364,037 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 494,555 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 872,477 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 40,179 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63394e820b44433c5016ab0b66c129ce9e85f5ba84fdc51ba30ceccba21c45dc
3
+ size 66756
data/creates/2012/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30fd6158db5a3b4f05f79a10507ecff25713ac7791004fde0f3b1686c5849092
3
+ size 688303
data/deletes/2012/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af323b05ee23a2c3df64e64826dbaa597760ef20390d5a947f0871d9adef42c2
3
+ size 38294
data/forks/2012/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9417f2dc91bc77644652f6e1882b6ab93280b42d503f7bdf0f08b3d1f6a29958
3
+ size 159905
data/issue_comments/2012/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:639c538f6e18f86000ace4b71d5dea759a9dd06cb775a7e5001cac8429f82814
3
+ size 347269
data/issues/2012/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:947e29e7d81155b90d924c2122a2d4c8d3bf83a08cebfafce00f868cecb2b31c
3
+ size 370213
data/public_events/2012/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b77ffb9303345318e4944dd3faf1a44304d55fa443a4ba590322456fba1b776b
3
+ size 7392
data/pull_requests/2012/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9b844bfedf8dc5c3c025891fb19e090f11ddcdf70fd7ee8bb8c808f5de85274
3
+ size 1136660
data/pushes/2012/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d7a6e79b751508fc120af416dc5718332a1fb70d2ec63c9e7cd8fbda8fc4cad
3
+ size 13934997
data/stars/2012/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:194d26b5346c444aa00e0ec0842f76a528756dca918825de6739056be8d078cb
3
+ size 394076
data/wiki_pages/2012/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a82e9ec709f91d3d7f91291cc320825e2f61fabc0c7862c8995b9ab4f56b797b
3
+ size 172386
stats.csv CHANGED
@@ -503,3 +503,4 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
503
  2012-11-12,161722,1342,84069,9880,13968,5655,0,1479,14344,5865,18750,1144,0,1805,3249,0,172,0,48698894,33.8,16169937,56.1,33.8,30.0
504
  2012-11-13,163377,1223,85894,8631,14275,5843,0,1998,14099,6033,19101,1128,0,1695,3180,0,277,0,50131964,29.3,16854553,27.5,29.3,32.3
505
  2012-11-14,164338,1205,84684,8123,14070,5952,0,2179,13509,5947,18593,1149,0,1777,6986,0,164,0,50326968,28.3,16859073,27.5,28.3,19.6
 
 
503
  2012-11-12,161722,1342,84069,9880,13968,5655,0,1479,14344,5865,18750,1144,0,1805,3249,0,172,0,48698894,33.8,16169937,56.1,33.8,30.0
504
  2012-11-13,163377,1223,85894,8631,14275,5843,0,1998,14099,6033,19101,1128,0,1695,3180,0,277,0,50131964,29.3,16854553,27.5,29.3,32.3
505
  2012-11-14,164338,1205,84684,8123,14070,5952,0,2179,13509,5947,18593,1149,0,1777,6986,0,164,0,50326968,28.3,16859073,27.5,28.3,19.6
506
+ 2012-11-26,177871,1361,87260,19238,14706,6062,0,1816,15169,5884,19932,1115,0,1874,3299,0,155,0,57419910,59.2,17316251,12.3,59.2,0.0