tamnd commited on
Commit
5b2c4b8
·
verified ·
1 Parent(s): d511083

Add 2012-11-07 — 167.4K 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-06** (496 days), totaling **43,069,317 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.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,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** — 205,289 events in 329 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 205.3K
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 | 205,289 | 329 |
107
 
108
 
109
  ### Live event schema
@@ -137,27 +137,27 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ██████████████░░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 29.0M
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 | 253 | 28,973,173 | 114,518 | 7.6 GB | 2.7 GB | 1h56m | 2h36m | 2h26m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████░░░░░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 13.8M
154
  ```
155
 
156
 
157
  ### Issues per year
158
 
159
  ```
160
- 2011 █████████████░░░░░░░░░░░░░░░░ 737.1K
161
  2012 ██████████████████████████████ 1.6M
162
  ```
163
 
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 20,453,746 | 47.5% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,306,258 | 5.4% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,345,788 | 7.8% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,731,361 | 4.0% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 194,689 | 0.5% | Line-level PR comments |
566
- | `stars` | WatchEvent | 4,196,002 | 9.7% | Repository stars |
567
- | `forks` | ForkEvent | 1,374,413 | 3.2% | Repository forks |
568
- | `creates` | CreateEvent | 6,876,216 | 16.0% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 355,284 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 480,692 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 837,479 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
- | `public_events` | PublicEvent | 38,805 | 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-07** (497 days), totaling **43,236,688 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.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-28** — 207,372 events in 333 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 207.4K
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 | 207,372 | 333 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ██████████████░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 29.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 | 254 | 29,140,544 | 114,726 | 7.7 GB | 2.7 GB | 1h57m | 2h37m | 2h27m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████░░░░░░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 13.9M
154
  ```
155
 
156
 
157
  ### Issues per year
158
 
159
  ```
160
+ 2011 █████████████░░░░░░░░░░░░░░░░ 737.1K
161
  2012 ██████████████████████████████ 1.6M
162
  ```
163
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 20,536,520 | 47.5% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,317,156 | 5.4% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,359,857 | 7.8% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,737,270 | 4.0% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 196,685 | 0.5% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 4,209,745 | 9.7% | Repository stars |
567
+ | `forks` | ForkEvent | 1,380,626 | 3.2% | Repository forks |
568
+ | `creates` | CreateEvent | 6,895,581 | 15.9% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 356,436 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 482,524 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 845,419 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 38,945 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/11/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:210f3f844639d2b7c9e5ada845e4a0b2c6afe13569f07f4e6b3915f627b158fb
3
+ size 62516
data/creates/2012/11/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a94e4c7c317cb1445ad3e55e005b353505687e89621ca56dd709e82706c370da
3
+ size 712625
data/deletes/2012/11/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7170677de62db9b380c80d55fc5406dcc3aebfe6283f55305edb55ddac8162e
3
+ size 38406
data/forks/2012/11/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24dafae8ad2f0536df35f539076f807c7a625ac4a6ed2a42244c784cf9e04d25
3
+ size 172300
data/issue_comments/2012/11/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b3a5fbfb0d9e10bf820a19142ca02d10aa1b82f3ea1e383a81a2242a2b91e69
3
+ size 319309
data/issues/2012/11/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b4e59e30df88da99bf027e0c1823b564066c0abdaa9fe066bec8ed23e316348
3
+ size 236485
data/public_events/2012/11/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:255090240573d7b3a879794715b114520d6eeb30a439c9acf92fa1ba4bd7b585
3
+ size 7066
data/pull_requests/2012/11/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b753479902924f154403c60b01fff16afc429516e925f1622a3f110a3f40636
3
+ size 1081449
data/pushes/2012/11/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebb406d1c43b85c0d3c15e209e8deead7ad100fad14674220eb9876cf44161d3
3
+ size 12889836
data/stars/2012/11/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24b224106902c6fa46d8f19acc87571e0ccf71fba1cfac6231482f7344609d64
3
+ size 310972
data/wiki_pages/2012/11/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a5bcd606850aa7589480ea18b5c71f6c87ec3771e58452ae4a30c7f07a739d2
3
+ size 666879
stats.csv CHANGED
@@ -494,4 +494,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
494
  2012-11-03,96330,717,52867,5145,6485,2765,0,422,8206,3771,12570,569,0,813,1913,0,87,0,28126794,21.5,9742137,35.6,21.5,30.8
495
  2012-11-04,113737,830,63971,5133,7465,3111,0,742,10024,4215,13997,597,0,1018,2541,0,93,0,34019135,18.6,11929761,43.8,18.6,30.9
496
  2012-11-05,157801,1327,82949,8233,13599,5556,0,1614,13888,5956,18464,893,0,1745,3436,0,141,0,48531086,27.2,16804681,36.5,27.2,38.3
497
- 2012-11-06,157177,1231,81734,7828,13088,5793,0,1801,14462,6275,18509,1029,0,1842,3469,0,116,0,48338231,28.0,15806394,32.2,28.0,0.0
 
 
494
  2012-11-03,96330,717,52867,5145,6485,2765,0,422,8206,3771,12570,569,0,813,1913,0,87,0,28126794,21.5,9742137,35.6,21.5,30.8
495
  2012-11-04,113737,830,63971,5133,7465,3111,0,742,10024,4215,13997,597,0,1018,2541,0,93,0,34019135,18.6,11929761,43.8,18.6,30.9
496
  2012-11-05,157801,1327,82949,8233,13599,5556,0,1614,13888,5956,18464,893,0,1745,3436,0,141,0,48531086,27.2,16804681,36.5,27.2,38.3
497
+ 2012-11-06,157177,1231,81734,7828,13088,5793,0,1801,14462,6275,18509,1029,0,1842,3469,0,116,0,48338231,28.0,15806394,32.2,28.0,28.6
498
+ 2012-11-07,167371,1340,82774,10898,14069,5909,0,1996,13743,6213,19365,1152,0,1832,7940,0,140,0,49655063,39.9,16497843,55.9,39.9,0.0