tamnd commited on
Commit
30c8248
·
verified ·
1 Parent(s): 694df0f

Add 2012-03-10 — 32.1K 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-09** (300 days), totaling **19,644,870 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.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.0 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,421,090 events in 9280 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 305
@@ -80,7 +80,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 208
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 202
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 217
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 172
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 185
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 233
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 289
@@ -96,7 +96,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
96
  19:00 █████████████████████████████░ 316.5K
97
  20:00 ████████████████████████████░░ 304.5K
98
  21:00 ████████████████████████░░░░░░ 263.8K
99
- 22:00 ███████░░░░░░░░░░░░░░░░░░░░░░ 86.2K
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
@@ -132,13 +132,13 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ███████████░░░░░░░░░░░░░░░░░░░ 5.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 | 57 | 5,548,726 | 97,346 | 1.5 GB | 673.2 MB | 28m57s | 27m16s | 32m03s |
142
 
143
 
144
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 249.8K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████████░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 594.9K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 509.9K
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 | 8,996,022 | 45.8% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 986,862 | 5.0% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,310,109 | 6.7% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 965,740 | 4.9% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 14,326 | 0.1% | Line-level PR comments |
561
- | `stars` | WatchEvent | 1,927,877 | 9.8% | Repository stars |
562
- | `forks` | ForkEvent | 545,133 | 2.8% | Repository forks |
563
- | `creates` | CreateEvent | 3,302,605 | 16.8% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 217,087 | 1.1% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 230,416 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 389,157 | 2.0% | Wiki page edits |
567
- | `members` | MemberEvent | 102,530 | 0.5% | Collaborator additions |
568
- | `public_events` | PublicEvent | 17,400 | 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-10** (301 days), totaling **19,676,947 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.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.0 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,423,766 events in 9286 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 305
 
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 208
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 202
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 217
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 173
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 185
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 233
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 289
 
96
  19:00 █████████████████████████████░ 316.5K
97
  20:00 ████████████████████████████░░ 304.5K
98
  21:00 ████████████████████████░░░░░░ 263.8K
99
+ 22:00 ███████░░░░░░░░░░░░░░░░░░░░░░ 88.9K
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ███████████░░░░░░░░░░░░░░░░░░░ 5.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 | 58 | 5,580,803 | 96,220 | 1.5 GB | 676.7 MB | 29m09s | 27m25s | 32m35s |
142
 
143
 
144
  ### Pushes per year
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 250.7K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████████░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 602.7K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 512.1K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 9,006,617 | 45.8% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 987,782 | 5.0% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,311,388 | 6.7% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 973,522 | 4.9% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 14,433 | 0.1% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 1,930,101 | 9.8% | Repository stars |
562
+ | `forks` | ForkEvent | 545,874 | 2.8% | Repository forks |
563
+ | `creates` | CreateEvent | 3,309,922 | 16.8% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 217,310 | 1.1% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 230,668 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 389,672 | 2.0% | Wiki page edits |
567
+ | `members` | MemberEvent | 102,637 | 0.5% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 17,415 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/03/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa68e4bda1f7ec444d81629a91bf7c8f2b6abcda35f58640ac1334430cbccbcb
3
+ size 46311
data/creates/2012/03/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94f33a5af9c59c69551d91e3c156ff65b9dd6981bf09adcf898a59036b918681
3
+ size 155230
data/deletes/2012/03/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:602da764e7b8c4bc7c4db670eef5b38b8798f8fa270257c79cbaabad065612d8
3
+ size 10459
data/forks/2012/03/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8584251675ea0649248302bae23c44da09229d0ba3dd93d8374897075c0a1640
3
+ size 78012
data/issues/2012/03/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9742f1167fcba823665004927c9cda97fd4444c95a6e8600ec1e010c07c0aeeb
3
+ size 204739
data/members/2012/03/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d9b1f71406bd8b2ad9af8ca275df2fce559c97dfc410c2015f7174dcd08bcf3
3
+ size 8053
data/public_events/2012/03/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee179e6ca6af508c55cf9e8888308f685438bdbd77c684d58b91927ee20f0527
3
+ size 3346
data/pull_requests/2012/03/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:837fedfcec2839011874e74f97eceec295a7a0dbeefa2fcf2acda16c8a3056e2
3
+ size 741490
data/pushes/2012/03/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d86efb990e22a5bf990b788c3ef4b6baab99067e2719a7ed512ccfacb983ffbd
3
+ size 2316116
data/stars/2012/03/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:006a5d20c3f9c73fdfa7f4fceb8da2b3ad239282c8272962edd32a8628a3ad17
3
+ size 71989
data/wiki_pages/2012/03/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c21c0c417d4fa1fbb272fca48cd1dd80b3c30aee89443eaae5a91c779988856
3
+ size 43028
stats.csv CHANGED
@@ -298,4 +298,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
298
  2012-03-06,147820,0,56208,5812,9792,30079,0,750,12719,3797,22905,1076,0,1454,2418,703,107,0,48115290,49.6,18967539,61.8,49.6,25.3
299
  2012-03-07,141627,0,54265,6227,9068,25996,0,698,12993,3767,22726,1011,0,1480,2574,695,127,0,45514169,49.2,17775768,52.4,49.2,25.2
300
  2012-03-08,136260,0,53048,5293,8907,24478,0,906,12322,3764,22031,1121,0,1290,2355,622,123,0,43579009,54.8,17263192,51.1,54.8,31.3
301
- 2012-03-09,138754,0,51325,5075,8268,31240,0,827,11074,3567,22168,1063,0,1389,2098,571,89,0,45290060,59.0,17071131,28.8,59.0,0.0
 
 
298
  2012-03-06,147820,0,56208,5812,9792,30079,0,750,12719,3797,22905,1076,0,1454,2418,703,107,0,48115290,49.6,18967539,61.8,49.6,25.3
299
  2012-03-07,141627,0,54265,6227,9068,25996,0,698,12993,3767,22726,1011,0,1480,2574,695,127,0,45514169,49.2,17775768,52.4,49.2,25.2
300
  2012-03-08,136260,0,53048,5293,8907,24478,0,906,12322,3764,22031,1121,0,1290,2355,622,123,0,43579009,54.8,17263192,51.1,54.8,31.3
301
+ 2012-03-09,138754,0,51325,5075,8268,31240,0,827,11074,3567,22168,1063,0,1389,2098,571,89,0,45290060,59.0,17071131,28.8,59.0,32.3
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,0.0