tamnd commited on
Commit
9903a12
·
verified ·
1 Parent(s): 15a0f72

Add 2012-11-02 — 133.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-11-01** (491 days), totaling **42,410,639 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.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.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,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** — 195,443 events in 303 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 195.4K
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 | 195,443 | 303 |
107
 
108
 
109
  ### Live event schema
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ██████████████░░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 28.3M
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 | 248 | 28,314,495 | 114,171 | 7.5 GB | 2.6 GB | 1h53m | 2h34m | 2h23m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████░░░░░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 13.4M
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 | 20,103,557 | 47.4% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,272,855 | 5.4% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,293,167 | 7.8% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,709,105 | 4.0% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 188,912 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 4,137,347 | 9.8% | Repository stars |
567
- | `forks` | ForkEvent | 1,349,110 | 3.2% | Repository forks |
568
- | `creates` | CreateEvent | 6,796,420 | 16.0% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 351,235 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 473,830 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 823,335 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
- | `public_events` | PublicEvent | 38,245 | 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-02** (492 days), totaling **42,544,272 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.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.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-28** — 197,271 events in 308 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 197.3K
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 | 197,271 | 308 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ██████████████░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 28.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 | 249 | 28,448,128 | 114,249 | 7.5 GB | 2.7 GB | 1h54m | 2h35m | 2h24m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████░░░░░░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 13.5M
154
  ```
155
 
156
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 20,172,225 | 47.4% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,279,919 | 5.4% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,305,151 | 7.8% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,714,136 | 4.0% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 190,110 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 4,149,422 | 9.8% | Repository stars |
567
+ | `forks` | ForkEvent | 1,354,196 | 3.2% | Repository forks |
568
+ | `creates` | CreateEvent | 6,812,676 | 16.0% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 352,196 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 475,274 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 826,120 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 38,368 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/11/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3326707e53f9d90426b3628594723f1d30a6086a1ce10a6ad1d6a40e7868fb12
3
+ size 54317
data/creates/2012/11/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80407a851daa769a92e909c9ea2c61f4ecf7029ec5b38eab05f5d798534a10ac
3
+ size 573317
data/deletes/2012/11/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98707356cb2fa3737183653c45094493b317037651cd8699cd1e837ab9feb2f2
3
+ size 32018
data/forks/2012/11/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e4bf8fbeb6938fa75aa3f881258d966ae135692402ef4d08130d174af8e4945
3
+ size 141551
data/issue_comments/2012/11/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a40550d9d591b6580b21ab6f56ad37739ee396304b0f904946c3821a682b492b
3
+ size 275671
data/issues/2012/11/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:432a799112a15ca709db10573ba592006889515e3284b10142b8cc532c9296a0
3
+ size 181241
data/public_events/2012/11/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8eaaac19918e5ee1eb7354043ee00eaf55d9e8c02fb9adffcd89d0a5c288e755
3
+ size 6531
data/pull_requests/2012/11/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e617ae561e3064543d1e2c9ffec4b0e66a38d022979e74c120f8fd627665842
3
+ size 957169
data/pushes/2012/11/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c98462ff8480c43dbbcb81838cdfef09c4e89024c703b64ee7aa20b65805216b
3
+ size 10803419
data/stars/2012/11/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4465abfa57cf4f2a2e313210f36c6211581c9bfcca1683b741547a09063bfa51
3
+ size 276655
data/wiki_pages/2012/11/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e88158ba0272e6a763814020e226cc2c9a6ba591c5cc3260bfa999966b9d184
3
+ size 200142
stats.csv CHANGED
@@ -489,4 +489,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
489
  2012-10-29,158648,1169,79071,9069,14333,5369,0,1433,13666,5720,23002,1031,0,1512,3098,0,175,0,46411238,22.8,15855539,25.1,22.8,166.5
490
  2012-10-30,157770,1202,81549,8527,14147,5839,0,1426,13912,5994,19045,1002,0,1736,3247,0,144,0,48076215,30.2,16162239,48.3,30.2,30.0
491
  2012-10-31,150118,1213,77143,9705,12962,5490,0,1434,13409,5328,17633,1087,0,1646,2942,0,126,0,46053749,27.6,15130235,25.8,27.6,36.3
492
- 2012-11-01,145294,1137,75863,7435,11684,5085,0,1152,12357,5714,19029,866,0,1574,3264,0,134,0,44261406,26.5,14856297,44.8,26.5,0.0
 
 
489
  2012-10-29,158648,1169,79071,9069,14333,5369,0,1433,13666,5720,23002,1031,0,1512,3098,0,175,0,46411238,22.8,15855539,25.1,22.8,166.5
490
  2012-10-30,157770,1202,81549,8527,14147,5839,0,1426,13912,5994,19045,1002,0,1736,3247,0,144,0,48076215,30.2,16162239,48.3,30.2,30.0
491
  2012-10-31,150118,1213,77143,9705,12962,5490,0,1434,13409,5328,17633,1087,0,1646,2942,0,126,0,46053749,27.6,15130235,25.8,27.6,36.3
492
+ 2012-11-01,145294,1137,75863,7435,11684,5085,0,1152,12357,5714,19029,866,0,1574,3264,0,134,0,44261406,26.5,14856297,44.8,26.5,31.4
493
+ 2012-11-02,133633,958,68668,7064,11984,5031,0,1198,12075,5086,16256,961,0,1444,2785,0,123,0,40594958,28.1,13502031,25.9,28.1,0.0