tamnd commited on
Commit
0412614
·
verified ·
1 Parent(s): f1188e1

Add 2012-05-29 — 123.8K 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-05-28** (355 days), totaling **25,597,982 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 5.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.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
 
@@ -71,15 +71,15 @@ 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-27** — 1,649,890 events in 10841 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 341
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 330
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 276
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 260
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 229
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 255
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 193
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 259
@@ -88,9 +88,9 @@ Events from today are captured in near-real-time from the GitHub Events API and
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 374
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 386
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 465
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 535
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 606
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 840
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.9K
95
  18:00 ██████████████████████████████ 323.9K
96
  19:00 █████████████████████████████░ 316.5K
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ████████████████████████░░░░░░ 11.5M
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
- | 2012 | 112 | 11,501,838 | 102,694 | 3.0 GB | 1.1 GB | 50m41s | 1h10m | 1h03m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 ███████████████████████░░░░░░░ 5.1M
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ███████████████████████░░░░░░░ 570.9K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████░░░░░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 785.1K
165
  ```
166
 
167
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 11,819,294 | 46.2% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,308,010 | 5.1% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,854,919 | 7.2% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,155,931 | 4.5% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 52,511 | 0.2% | Line-level PR comments |
561
- | `stars` | WatchEvent | 2,554,323 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 743,560 | 2.9% | Repository forks |
563
- | `creates` | CreateEvent | 4,275,448 | 16.7% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 250,416 | 1.0% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 297,928 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 496,865 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
- | `public_events` | PublicEvent | 22,886 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
 
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-05-29** (356 days), totaling **25,721,810 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 5.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.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
 
 
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-27** — 1,649,912 events in 10852 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 341
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 330
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 277
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 260
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 229
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 256
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 193
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 259
 
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 374
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 386
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 465
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 538
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 606
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 841
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.9K
95
  18:00 ██████████████████████████████ 323.9K
96
  19:00 █████████████████████████████░ 316.5K
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ████████████████████████░░░░░░ 11.6M
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
+ | 2012 | 113 | 11,625,666 | 102,882 | 3.0 GB | 1.2 GB | 51m07s | 1h11m | 1h04m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 ███████████████████████░░░░░░░ 5.2M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ███████████████████████░░░░░░░ 576.8K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████░░░░░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 789.4K
165
  ```
166
 
167
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 11,880,297 | 46.2% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,313,909 | 5.1% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,865,036 | 7.3% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,160,204 | 4.5% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 53,440 | 0.2% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 2,566,911 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 748,434 | 2.9% | Repository forks |
563
+ | `creates` | CreateEvent | 4,294,386 | 16.7% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 251,245 | 1.0% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 299,517 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 499,042 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 22,979 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/05/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38f9e553961c12e7d36ea740f792a3a6964d2f92b0dc5a341ea0169bd7b658cf
3
+ size 46871
data/creates/2012/05/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:effc4056bac28479279ecb471b39c26a135224670bfb78d847acb0297759f56c
3
+ size 428602
data/deletes/2012/05/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08df8c4786a6b728c333a0049f4e3dd12eb297d0d8374e30e1f5ea952569116c
3
+ size 23084
data/forks/2012/05/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76c2570fd042c647f2f1e477ac63d8fd40899a659a1eb2b6ff932bf8291806c9
3
+ size 96722
data/issue_comments/2012/05/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d31a6bf0e819575f392a44434476c3ac012966422883cec91dabf7f2d237d3ea
3
+ size 180399
data/issues/2012/05/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ba4138227a454ba822acab1d5005947725fc90ea31d133c284d4d189f8509a1
3
+ size 118541
data/public_events/2012/05/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70c0386c2c8dea9d4dbbde1f980d4fc67355775e5e832b9088bce90abde9f803
3
+ size 4338
data/pull_requests/2012/05/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1be57e90ac5d62e32357d0423202601557557abebf3dc0001da38ef786d1ccf2
3
+ size 738880
data/pushes/2012/05/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:149380f3bdb0f901689441bd896bfa972f66ee262eae9cb2ae635d8658230b96
3
+ size 9511441
data/stars/2012/05/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1c9bff38dc3fd79963093894b55b49aa58bba812d3f17524a94f880070eea4d
3
+ size 214987
data/wiki_pages/2012/05/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ab09ad76f8e38a71dbcdc3beccf50fc40d89179ab35fb1fc428a8289c502822
3
+ size 147653
stats.csv CHANGED
@@ -353,4 +353,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
353
  2012-05-25,109856,497,53283,5600,8729,3327,0,833,11651,3976,17999,607,0,1282,1996,0,76,0,29503072,55.4,9522251,30.0,55.4,28.3
354
  2012-05-26,72134,297,35367,3310,4394,1690,0,333,7461,2540,14270,366,0,639,1410,0,57,0,18672099,21.2,6227750,31.7,21.2,35.4
355
  2012-05-27,79714,261,39470,3417,4967,1964,0,455,8176,2575,15660,390,0,854,1459,0,66,0,20746455,21.5,7127795,27.5,21.5,27.7
356
- 2012-05-28,103768,423,51373,4839,7932,2907,0,606,10515,4060,17357,602,0,1278,1795,0,81,0,28182550,27.8,9856428,33.5,27.8,0.0
 
 
353
  2012-05-25,109856,497,53283,5600,8729,3327,0,833,11651,3976,17999,607,0,1282,1996,0,76,0,29503072,55.4,9522251,30.0,55.4,28.3
354
  2012-05-26,72134,297,35367,3310,4394,1690,0,333,7461,2540,14270,366,0,639,1410,0,57,0,18672099,21.2,6227750,31.7,21.2,35.4
355
  2012-05-27,79714,261,39470,3417,4967,1964,0,455,8176,2575,15660,390,0,854,1459,0,66,0,20746455,21.5,7127795,27.5,21.5,27.7
356
+ 2012-05-28,103768,423,51373,4839,7932,2907,0,606,10515,4060,17357,602,0,1278,1795,0,81,0,28182550,27.8,9856428,33.5,27.8,29.7
357
+ 2012-05-29,123828,519,61003,5899,10117,4273,0,929,12588,4874,18938,829,0,1589,2177,0,93,0,35155031,35.4,11511518,25.9,35.4,0.0