tamnd commited on
Commit
381c25b
·
verified ·
1 Parent(s): f3671f8

Add 2012-09-08 — 91.5K 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-07** (436 days), totaling **35,196,556 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.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
 
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,7 +71,7 @@ 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,060 events in 49 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 60.1K
@@ -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,060 | 49 |
107
 
108
 
109
  ### Live event schema
@@ -136,14 +136,14 @@ duckdb.sql("""
136
  ## Events per year
137
 
138
  ```
139
- 2011 ███████████████████░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 21.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 | 193 | 21,100,412 | 109,328 | 5.5 GB | 2.0 GB | 1h26m | 1h58m | 1h49m |
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,450,502 | 46.7% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 1,830,724 | 5.2% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,630,631 | 7.5% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,463,210 | 4.2% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 129,145 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,494,598 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,083,891 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 5,877,387 | 16.7% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 306,657 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 401,299 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 674,189 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 31,362 | 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-08** (437 days), totaling **35,288,029 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
 
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,068 events in 51 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 60.1K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 60,068 | 51 |
107
 
108
 
109
  ### Live event schema
 
136
  ## Events per year
137
 
138
  ```
139
+ 2011 ███████████████████░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 21.2M
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 | 194 | 21,191,885 | 109,236 | 5.5 GB | 2.0 GB | 1h26m | 1h59m | 1h50m |
147
 
148
 
149
  ### Pushes per year
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 16,492,418 | 46.7% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 1,840,400 | 5.2% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 2,642,670 | 7.5% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,465,478 | 4.2% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 129,636 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,502,557 | 9.9% | Repository stars |
567
+ | `forks` | ForkEvent | 1,086,984 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 5,887,683 | 16.7% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 307,096 | 0.9% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 402,142 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 676,032 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 31,441 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6831c031270124fd4a390aef303e1dc8e54b717fbcb55e3e234fc5c566ac04e6
3
+ size 36345
data/creates/2012/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddaa9213390440e3a8ff03916c5c5f8d9dddbb429d53b204e9186268fbc370f8
3
+ size 361753
data/deletes/2012/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01f74d581a966a74705536f6483449156f9e2517a998f7e0d04292a9ba98872d
3
+ size 15837
data/forks/2012/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b234855cf1a3c52272f0d3aeb95b405fff944579258f108567cae8ef5e8318c7
3
+ size 81222
data/issue_comments/2012/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4022cab107c69fdf619c7d6e8f54d78b975be4f5bd1a1d24cfb9706aeb273a87
3
+ size 181082
data/issues/2012/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d874b97489bf58070a9ad841d03360d41cb7206b34adc5fec959d3da4f55fd8b
3
+ size 142016
data/public_events/2012/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66dda8534c49ed2850fe6e6399a5cddc71e23ef67a76ef3b796db40e37d2321b
3
+ size 4604
data/pull_requests/2012/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91b5668cc741e87e3735484554a1ef9d951a542b8c3673edb850b8d409eb6c56
3
+ size 451233
data/pushes/2012/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1db71c4970ef2da67e22214fda76de8362a6d36e264f43afdc2dbfc02c590a9
3
+ size 6328470
data/stars/2012/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e81fcb6b867f6c8147dd50160142b4d94ae1bb6c431aabe05ce3058dccc416f5
3
+ size 166473
data/wiki_pages/2012/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77f4b45bf9aa16e8d8f70a149e02ced008646b877b82bf9de13956803a00de03
3
+ size 143873
stats.csv CHANGED
@@ -434,4 +434,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
434
  2012-09-04,135329,832,67557,7323,12947,5024,0,1270,13169,5213,15899,976,0,1646,3374,0,99,0,41644811,78.3,13625107,27.8,78.3,39.9
435
  2012-09-05,134956,750,67754,7973,13372,4710,0,1225,13498,5119,15271,873,0,1470,2815,0,126,0,41427000,76.8,13299017,32.5,76.8,34.8
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,0.0
 
 
434
  2012-09-04,135329,832,67557,7323,12947,5024,0,1270,13169,5213,15899,976,0,1646,3374,0,99,0,41644811,78.3,13625107,27.8,78.3,39.9
435
  2012-09-05,134956,750,67754,7973,13372,4710,0,1225,13498,5119,15271,873,0,1470,2815,0,126,0,41427000,76.8,13299017,32.5,76.8,34.8
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,0.0