tamnd commited on
Commit
e6ca63c
·
verified ·
1 Parent(s): bfc2ae3

Add 2012-12-04 — 176.6K 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-12-03** (512 days), totaling **45,540,301 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 11.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.3 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** — 281,174 events in 498 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.8K
78
- 01:00 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 46.4K
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 | 281,174 | 498 |
107
 
108
 
109
  ### Live event schema
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 █████████████░░░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 31.4M
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 | 269 | 31,444,157 | 116,892 | 8.4 GB | 2.9 GB | 2h05m | 2h50m | 2h36m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 █████████████░░░░░░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 15.0M
154
  ```
155
 
156
 
@@ -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,703,927 | 47.7% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,523,494 | 5.5% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,543,441 | 7.8% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,814,224 | 4.0% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 218,237 | 0.5% | Line-level PR comments |
566
- | `stars` | WatchEvent | 4,403,178 | 9.7% | Repository stars |
567
- | `forks` | ForkEvent | 1,462,573 | 3.2% | Repository forks |
568
- | `creates` | CreateEvent | 7,162,266 | 15.7% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 371,264 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 505,533 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 894,435 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
- | `public_events` | PublicEvent | 41,145 | 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-12-04** (513 days), totaling **45,716,913 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 11.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.3 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** — 300,984 events in 537 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.8K
78
+ 01:00 ████████░░░░░░░░░░░░░░░░░░░░░░ 66.1K
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 | 300,984 | 537 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 █████████████░░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 31.6M
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 | 270 | 31,620,769 | 117,113 | 8.4 GB | 3.0 GB | 2h06m | 2h52m | 2h37m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 █████████████░░░░░░░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 15.1M
154
  ```
155
 
156
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 21,795,335 | 47.7% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,533,970 | 5.5% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,560,952 | 7.8% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,820,673 | 4.0% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 219,915 | 0.5% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 4,417,946 | 9.7% | Repository stars |
567
+ | `forks` | ForkEvent | 1,468,623 | 3.2% | Repository forks |
568
+ | `creates` | CreateEvent | 7,182,313 | 15.7% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 372,641 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 507,686 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 897,721 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 41,321 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/12/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a779934ed11ca323aef865cf7568388bac441b69f339d7baab236339a5209bc
3
+ size 72156
data/creates/2012/12/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:088bd3f2eb343b328c69cfdd7c1894b61454c0ac93a4b1d8b472c5279c98e4d4
3
+ size 714654
data/deletes/2012/12/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0db22cfc3d70003db40ece1289ea435e5f152381407c325a51fafb283d1556fa
3
+ size 52132
data/forks/2012/12/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae1b2d58fe2d4071780d19a0d9dcbe478080fa2df20a3673cf5987839f424008
3
+ size 165224
data/issue_comments/2012/12/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:604eacae149a85b9d1e8c1d2ec9363a57541803218f36188b1133e2a23f8c0fe
3
+ size 365904
data/issues/2012/12/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4cf69a4ab1b03ee8bec4bed7a438d0e00953893fabae0a72c843ee91335ee305
3
+ size 243887
data/public_events/2012/12/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:601e6f024cc5586cd9923f7d81b175514ddcd1a8cc4c5a4e11d6a6eb4e054326
3
+ size 7958
data/pull_requests/2012/12/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c934468bc5d482c5b113dd787044d06e73a3eb7b6b70f15cacac0549942e449
3
+ size 1192091
data/pushes/2012/12/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe05ea4f38e0b7ec31850529c4c67369dee1bc591f16110273eccca002e79a33
3
+ size 14583935
data/stars/2012/12/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:264cc679d0f8032b9992f8be3f75bacf4200f04e957c44b18fffb6fa342dd4de
3
+ size 336377
data/wiki_pages/2012/12/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bfb83d349365f9d73b44b23d1489ca8f54d5699c9aa0c0f4a4e67c6da46b92b
3
+ size 235778
stats.csv CHANGED
@@ -510,4 +510,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
510
  2012-11-30,157491,1034,74423,22119,12330,5069,0,1382,12485,5237,17995,1016,0,1425,2826,0,150,0,49270053,81.6,15082272,32.7,81.6,49.9
511
  2012-12-01,126618,924,60777,21100,7285,3319,0,655,10036,4330,14599,606,0,883,2020,0,84,0,37332335,64.3,11713847,39.3,64.3,42.9
512
  2012-12-02,140925,793,71052,19393,9138,3846,0,780,10537,4499,16190,774,0,1249,2579,0,95,0,42245588,72.4,13026216,24.6,72.4,38.2
513
- 2012-12-03,169147,1132,88672,10399,14338,6286,0,1431,14078,5950,19349,1311,0,1946,4094,0,161,0,57378113,94.6,17534355,56.6,94.6,0.0
 
 
510
  2012-11-30,157491,1034,74423,22119,12330,5069,0,1382,12485,5237,17995,1016,0,1425,2826,0,150,0,49270053,81.6,15082272,32.7,81.6,49.9
511
  2012-12-01,126618,924,60777,21100,7285,3319,0,655,10036,4330,14599,606,0,883,2020,0,84,0,37332335,64.3,11713847,39.3,64.3,42.9
512
  2012-12-02,140925,793,71052,19393,9138,3846,0,780,10537,4499,16190,774,0,1249,2579,0,95,0,42245588,72.4,13026216,24.6,72.4,38.2
513
+ 2012-12-03,169147,1132,88672,10399,14338,6286,0,1431,14078,5950,19349,1311,0,1946,4094,0,161,0,57378113,94.6,17534355,56.6,94.6,40.1
514
+ 2012-12-04,176612,1233,91408,10476,17511,6449,0,1678,14768,6050,20047,1377,0,2153,3286,0,176,0,59676759,96.6,17970096,32.0,96.6,0.0