tamnd commited on
Commit
fad2aee
·
verified ·
1 Parent(s): 29bb9c0

Add 2012-03-14 — 107.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-03-13** (304 days), totaling **19,993,816 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 4.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.1 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,7 +71,7 @@ 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,428,020 events in 9314 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 306
@@ -79,11 +79,11 @@ Events from today are captured in near-real-time from the GitHub Events API and
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 242
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 208
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 203
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 217
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 173
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 185
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 289
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 277
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 331
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 350
@@ -92,11 +92,11 @@ Events from today are captured in near-real-time from the GitHub Events API and
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 547
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 763
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.9K
95
- 18:00 ██████████████████████████████ 323.7K
96
  19:00 █████████████████████████████░ 316.5K
97
  20:00 ████████████████████████████░░ 304.5K
98
  21:00 ████████████████████████░░░░░░ 263.8K
99
- 22:00 ████████░░░░░░░░░░░░░░░░░░░░░░ 93.1K
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
@@ -132,13 +132,13 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ████████████░░░░░░░░░░░░░░░░░░ 5.9M
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 | 61 | 5,897,672 | 96,683 | 1.6 GB | 703.0 MB | 30m48s | 28m17s | 34m00s |
142
 
143
 
144
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ██████████░░░░░░░░░░░░░░░░░░░ 268.2K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████████░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 612.5K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 ███████████░░░░░░░░░░░░░░░░░░░ 542.8K
173
  ```
174
 
175
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 9,159,358 | 45.8% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,005,310 | 5.0% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,337,788 | 6.7% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 983,350 | 4.9% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 16,310 | 0.1% | Line-level PR comments |
561
- | `stars` | WatchEvent | 1,960,744 | 9.8% | Repository stars |
562
- | `forks` | ForkEvent | 556,096 | 2.8% | Repository forks |
563
- | `creates` | CreateEvent | 3,365,045 | 16.8% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 218,923 | 1.1% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 234,109 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 395,433 | 2.0% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.5% | Collaborator additions |
568
- | `public_events` | PublicEvent | 17,724 | 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-03-14** (305 days), totaling **20,101,022 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 4.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.1 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,428,058 events in 9330 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 306
 
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 242
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 208
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 203
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 218
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 174
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 185
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 290
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 277
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 331
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 350
 
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 547
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 763
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.9K
95
+ 18:00 ██████████████████████████████ 323.8K
96
  19:00 █████████████████████████████░ 316.5K
97
  20:00 ████████████████████████████░░ 304.5K
98
  21:00 ████████████████████████░░░░░░ 263.8K
99
+ 22:00 ████████░░░░░░░░░░░░░░░░░░░░░░ 93.2K
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ████████████░░░░░░░░░░░░░░░░░░ 6.0M
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 | 62 | 6,004,878 | 96,852 | 1.6 GB | 712.1 MB | 31m21s | 28m36s | 34m33s |
142
 
143
 
144
  ### Pushes per year
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ██████████░░░░░░░░░░░░░░░░░░░ 273.8K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████████░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 616.2K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ███████████░░░░░░░░░░░░░░░░░░░ 553.1K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 9,211,718 | 45.8% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,010,839 | 5.0% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,346,465 | 6.7% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 987,067 | 4.9% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 17,038 | 0.1% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 1,971,054 | 9.8% | Repository stars |
562
+ | `forks` | ForkEvent | 559,757 | 2.8% | Repository forks |
563
+ | `creates` | CreateEvent | 3,382,939 | 16.8% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 219,602 | 1.1% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 235,279 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 397,260 | 2.0% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.5% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 17,855 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8789e32ce301ebaf220210340b317fb480aae291471215ef431cfb4b8c5baa44
3
+ size 37653
data/creates/2012/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bfb9d06c67edad15932f567fe50ef3aa3975be2f599522ef9cd47de497bfe07
3
+ size 384941
data/deletes/2012/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f63ccddf39aac07f7c332735efdc8d06fa3fe6024f7ac3d5edbb4ededd8e59b8
3
+ size 19138
data/forks/2012/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7779ea652cddb020d2f9d422b9259b45d3ac13f4446c852409bf1fbd2e554fb8
3
+ size 74257
data/issue_comments/2012/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a60640705eeea511d7f3ce62f1345ef32bc17c143de3daa382bdd22b4ddff23
3
+ size 164194
data/issues/2012/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e81503a672848a09a5b1042dcdb2a73f7a22d61fbd97f91cd8303a08ecf8da2
3
+ size 109700
data/public_events/2012/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:538761ece2eac383ff0f1fdb02c01daf842461779f308f4f12ce2c2be2927a9a
3
+ size 5220
data/pull_requests/2012/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a6915e7f747e3bad083daaeda933e20c5a2b16accbd9f19b91710bd1a2f9c11
3
+ size 607385
data/pushes/2012/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa14eab1eb3e4c11b1db0da44b4af61990826c90598e7fe35127a3edb64d37fd
3
+ size 7926980
data/stars/2012/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eab5a2821a6ac8dd5c5eec41084bb5bbcf77b4819f68f36607eb3c6d28af2552
3
+ size 162029
data/wiki_pages/2012/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1dc187c48206c17a8671ea218ae2914fa4751d66613a9f6272f5602fed09defd
3
+ size 89460
stats.csv CHANGED
@@ -302,4 +302,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
302
  2012-03-10,32077,3512,10595,920,1279,7782,0,107,2224,741,7317,223,0,252,515,107,15,0,10415548,8.6,3678773,12.4,8.6,23.4
303
  2012-03-11,82907,2486,41670,3736,5346,2210,0,275,7936,2218,16346,407,0,788,1582,0,83,0,21558165,14.1,7072032,22.1,14.1,34.2
304
  2012-03-12,114006,3709,55342,5807,9308,3798,0,888,11595,3970,18749,605,0,1235,2068,0,116,0,31179652,17.5,10197119,42.2,17.5,27.8
305
- 2012-03-13,119956,3873,55729,7985,11746,3820,0,714,11112,4034,20028,601,0,1418,2111,0,110,0,31517471,20.5,10310114,35.2,20.5,0.0
 
 
302
  2012-03-10,32077,3512,10595,920,1279,7782,0,107,2224,741,7317,223,0,252,515,107,15,0,10415548,8.6,3678773,12.4,8.6,23.4
303
  2012-03-11,82907,2486,41670,3736,5346,2210,0,275,7936,2218,16346,407,0,788,1582,0,83,0,21558165,14.1,7072032,22.1,14.1,34.2
304
  2012-03-12,114006,3709,55342,5807,9308,3798,0,888,11595,3970,18749,605,0,1235,2068,0,116,0,31179652,17.5,10197119,42.2,17.5,27.8
305
+ 2012-03-13,119956,3873,55729,7985,11746,3820,0,714,11112,4034,20028,601,0,1418,2111,0,110,0,31517471,20.5,10310114,35.2,20.5,33.1
306
+ 2012-03-14,107206,3440,52360,5529,8677,3717,0,728,10310,3661,17894,679,0,1170,1827,0,131,0,29756941,19.8,9580957,32.1,19.8,0.0