tamnd commited on
Commit
916ea38
·
verified ·
1 Parent(s): bcb6cc0

Add 2012-09-10 — 134.9K events, 11 files

Browse files
README.md CHANGED
@@ -61,9 +61,9 @@ 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-09** (438 days), totaling **35,382,377 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.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.4 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
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
@@ -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** — 60,076 events in 54 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 60.1K
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 | 60,076 | 54 |
107
 
108
 
109
  ### Live event schema
@@ -137,13 +137,13 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ███████████████████░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 21.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 | 195 | 21,286,233 | 109,160 | 5.5 GB | 2.0 GB | 1h27m | 2h00m | 1h50m |
147
 
148
 
149
  ### Pushes per year
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 16,541,727 | 46.8% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 1,845,518 | 5.2% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,650,851 | 7.5% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,468,098 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 130,219 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,511,478 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,090,385 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 5,899,566 | 16.7% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 307,727 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 403,141 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 678,152 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 31,529 | 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-10** (439 days), totaling **35,517,233 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.4 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
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
 
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** — 68,451 events in 57 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 68.5K
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 | 68,451 | 57 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ███████████████████░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 21.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 | 196 | 21,421,089 | 109,291 | 5.5 GB | 2.0 GB | 1h27m | 2h01m | 1h51m |
147
 
148
 
149
  ### Pushes per year
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 16,608,492 | 46.8% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 1,853,652 | 5.2% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 2,663,149 | 7.5% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,472,895 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 131,583 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,525,954 | 9.9% | Repository stars |
567
+ | `forks` | ForkEvent | 1,095,462 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 5,915,452 | 16.7% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 308,638 | 0.9% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 404,759 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 680,664 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 31,655 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e5631864052f6d1ff57b0911de639a2f3a3e956090e66d2236c684fe92ba6ea
3
+ size 52042
data/creates/2012/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8b55d82842853f94caa8c2ddbfde7aa895fa6c783d4ac6d506b7f4bbadede65
3
+ size 547413
data/deletes/2012/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bb268b94880df0e4f5c0f0e9e7e045c24a34d81bea132dc609c16b0cc8b1c47
3
+ size 29689
data/forks/2012/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bcbcb9c0b3bda48459d416dceaa4c7b9d0eeba9238f7a9e8cd8cdc8088be1bb
3
+ size 123270
data/issue_comments/2012/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bd975795a5bfa06093554ad31b33acfd41456613d73384e93f1d161b9fc1548
3
+ size 259854
data/issues/2012/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19ab5cc4f8c89492b01feac6adf55e6b8ab30d81d312bfb3e0def99ff0965c6d
3
+ size 178286
data/public_events/2012/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06f5ad407b2e85f2f5a6b501e92d07803aa896dd5300ddc3dffb50f4766c4ef6
3
+ size 6155
data/pull_requests/2012/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7fdda772306db03e05484d2c6bf175d874c89619d48a1f4115b2c334911c255
3
+ size 896496
data/pushes/2012/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baa9324f6dc0ad9f6dc12f599080705e0e0f10f77f7b98306606d3724653e4ea
3
+ size 11063269
data/stars/2012/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03d5ebb39c3fc65f4c3aca9d0c4cf1a491d79ea558bcbd8616110f4a31967234
3
+ size 264320
data/wiki_pages/2012/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efac5dc819dde65092b8795ba0e997ab439c3dae9ce482fcb468a97e2a2e2ff1
3
+ size 179178
stats.csv CHANGED
@@ -436,4 +436,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
436
  2012-09-06,131427,816,65475,6595,11960,4779,0,1329,12774,5181,16558,916,0,1475,3446,0,123,0,40242156,76.5,12683112,21.7,76.5,41.2
437
  2012-09-07,118928,733,60456,5927,10514,4376,0,1210,11288,4605,15387,750,0,1177,2403,0,102,0,36041678,70.4,11818865,22.6,70.4,41.3
438
  2012-09-08,91473,531,41916,9676,12039,2268,0,491,7959,3093,10296,439,0,843,1843,0,79,0,24213209,48.2,7912908,23.3,48.2,29.1
439
- 2012-09-09,94348,494,49309,5118,8181,2620,0,583,8921,3401,11883,631,0,999,2120,0,88,0,27142686,49.0,9250671,20.8,49.0,0.0
 
 
436
  2012-09-06,131427,816,65475,6595,11960,4779,0,1329,12774,5181,16558,916,0,1475,3446,0,123,0,40242156,76.5,12683112,21.7,76.5,41.2
437
  2012-09-07,118928,733,60456,5927,10514,4376,0,1210,11288,4605,15387,750,0,1177,2403,0,102,0,36041678,70.4,11818865,22.6,70.4,41.3
438
  2012-09-08,91473,531,41916,9676,12039,2268,0,491,7959,3093,10296,439,0,843,1843,0,79,0,24213209,48.2,7912908,23.3,48.2,29.1
439
+ 2012-09-09,94348,494,49309,5118,8181,2620,0,583,8921,3401,11883,631,0,999,2120,0,88,0,27142686,49.0,9250671,20.8,49.0,44.7
440
+ 2012-09-10,134856,892,66765,8134,12298,4797,0,1364,14476,5077,15886,911,0,1618,2512,0,126,0,40611187,71.5,13599972,22.2,71.5,0.0