tamnd commited on
Commit
c0b3c57
·
verified ·
1 Parent(s): 3dbc73a

Add 2012-09-28 — 134.0K 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-09-27** (456 days), totaling **37,746,768 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 8.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.6 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** — 114,337 events in 132 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 114.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 | 114,337 | 132 |
107
 
108
 
109
  ### Live event schema
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 █████████████████░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 23.7M
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 | 213 | 23,650,624 | 111,035 | 6.2 GB | 2.2 GB | 1h35m | 2h19m | 2h02m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████████░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 11.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 | 17,706,073 | 46.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,011,005 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,882,690 | 7.6% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,547,764 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 150,857 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,722,162 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,175,351 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,202,407 | 16.4% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 322,377 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 427,349 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 725,752 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 33,752 | 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-09-28** (457 days), totaling **37,880,804 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 8.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.6 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** — 116,589 events in 137 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 116.6K
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 | 116,589 | 137 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 █████████████████░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 23.8M
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 | 214 | 23,784,660 | 111,143 | 6.2 GB | 2.2 GB | 1h35m | 2h20m | 2h03m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████████░░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 11.1M
154
  ```
155
 
156
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 17,769,181 | 46.9% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,020,688 | 5.3% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 2,900,436 | 7.7% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,552,325 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 152,117 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,734,304 | 9.9% | Repository stars |
567
+ | `forks` | ForkEvent | 1,180,057 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 6,217,491 | 16.4% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 323,164 | 0.9% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 428,651 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 728,442 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 33,885 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/09/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa38006c709eaed05fb3ce869c07293a681ae875240f0225e8c72538dc81f6a1
3
+ size 48424
data/creates/2012/09/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e2779b433c3434b40cc875d691ea9aeb879087bbff29d2e75330c657e40618e
3
+ size 538048
data/deletes/2012/09/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a104b8513bc60d535c84ff91df2d67d18ec961a4460a8f59a4f24ba47d730579
3
+ size 28950
data/forks/2012/09/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:992dc9fccf2e66ba5874cc4b9010e5f6022ecea1bebaf64f7484052ca2ba2e09
3
+ size 128092
data/issue_comments/2012/09/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0501953ee446fc353268e5f128758c6e41d2325dec087449434f5b414c11d7ce
3
+ size 300003
data/issues/2012/09/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b03e71717606f8475a51fd4950d7c3aa6f6ba8cc888e2e98884c3a87bfc93fb
3
+ size 199256
data/public_events/2012/09/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:219ed5edc3fafee80cecf6ff1534eb36f9950eb976c930fd6100b9ed9a645345
3
+ size 6937
data/pull_requests/2012/09/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f49421c02ec6122084a641b12c332cdb088a2ffc4a50d31f0957aea7f77cc83
3
+ size 820642
data/pushes/2012/09/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f308c2a6ebe9f091fceebd426ce2659079df213cb5e7506e9921354050fb6c43
3
+ size 10091187
data/stars/2012/09/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2db897561ed6aeb95ca4ab390c0a6420b28d93bb9bead853583bdda8de969530
3
+ size 268413
data/wiki_pages/2012/09/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c9a725e4467838104206e457f5504847446cdb6c54b71adf7124a589cc77ffc
3
+ size 192969
stats.csv CHANGED
@@ -454,4 +454,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
454
  2012-09-24,148992,958,70734,16681,14366,5373,0,1382,12355,5069,16841,876,0,1514,2711,0,132,0,43250433,51.1,14298277,29.5,51.1,29.2
455
  2012-09-25,141580,911,72077,7467,12685,5270,0,1571,13338,5361,17616,949,0,1449,2764,0,122,0,43567072,63.4,14428322,48.3,63.4,107.3
456
  2012-09-26,179536,1041,72030,13580,23823,5006,0,1185,12335,5988,38768,918,0,1553,3192,0,117,0,44355404,72.5,15122058,29.4,72.5,35.7
457
- 2012-09-27,147449,906,71221,11057,16955,5407,0,1698,12822,5504,16557,882,0,1536,2754,0,150,0,43490008,69.5,14396087,24.8,69.5,0.0
 
 
454
  2012-09-24,148992,958,70734,16681,14366,5373,0,1382,12355,5069,16841,876,0,1514,2711,0,132,0,43250433,51.1,14298277,29.5,51.1,29.2
455
  2012-09-25,141580,911,72077,7467,12685,5270,0,1571,13338,5361,17616,949,0,1449,2764,0,122,0,43567072,63.4,14428322,48.3,63.4,107.3
456
  2012-09-26,179536,1041,72030,13580,23823,5006,0,1185,12335,5988,38768,918,0,1553,3192,0,117,0,44355404,72.5,15122058,29.4,72.5,35.7
457
+ 2012-09-27,147449,906,71221,11057,16955,5407,0,1698,12822,5504,16557,882,0,1536,2754,0,150,0,43490008,69.5,14396087,24.8,69.5,25.5
458
+ 2012-09-28,134036,834,63108,9683,17746,4561,0,1260,12142,4706,15084,787,0,1302,2690,0,133,0,38617509,30.2,12622921,25.1,30.2,0.0