tamnd commited on
Commit
7bc654a
·
verified ·
1 Parent(s): 372c4e3

Add 2012-09-05 — 135.0K 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** (435 days), totaling **35,061,600 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.1 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,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** — 56,114 events in 40 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 56.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 | 56,114 | 40 |
107
 
108
 
109
  ### Live event schema
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ████████████████████░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 21.0M
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 | 192 | 20,965,456 | 109,195 | 5.4 GB | 2.0 GB | 1h25m | 1h57m | 1h47m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ████████████████████░░░░░░░░░░ 6.7M
153
- 2012 █████████████████████████████ 9.7M
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 | 16,382,748 | 46.7% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 1,822,751 | 5.2% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,617,259 | 7.5% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,458,500 | 4.2% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 127,920 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,481,100 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,078,772 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 5,862,116 | 16.7% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 305,784 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 399,829 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 671,374 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 31,236 | 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-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
 
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** — 57,722 events in 43 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 57.7K
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 | 57,722 | 43 |
107
 
108
 
109
  ### Live event schema
 
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 | 1h48m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ████████████████████░░░░░░░░░░ 6.7M
153
+ 2012 █████████████████████████���████ 9.8M
154
  ```
155
 
156
 
 
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
 
data/commit_comments/2012/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8753a52cae00841108efc85879ecd0eb3537a7c1982003062df184cf333a0172
3
+ size 55873
data/creates/2012/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54f4da839ce21df8c5644170651a8be8714715248e9bb295665d4ed4f9685127
3
+ size 525647
data/deletes/2012/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b505bdf96f30839d01db81b1521363fc590e5d1416feedb882618472aa1aa207
3
+ size 27201
data/forks/2012/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd31ba539b68b28d3f18b3c441f1178b7b719a48f861b98cca37304256481552
3
+ size 127656
data/issue_comments/2012/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2e6e264d423edf3773350f22df69d164113e9a252791e15bba9a6baaa06e542
3
+ size 266293
data/issues/2012/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c62e879e2850c670a5faf084c05396ac260764850af03f3c349b1f09a26b8199
3
+ size 176428
data/public_events/2012/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:def2e1b9afb136f59108c7b8ba4a24b9c9bdbb4ad41002e2a853489dea3e20cd
3
+ size 6093
data/pull_requests/2012/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56e682494a5c2d1bdfe1150d54b67eaa615d794a672895715e40d499e05e31e4
3
+ size 848414
data/pushes/2012/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f951e81603d1be61dbcf8d67b8d6b0d5c6d0798f144c497b6e06aa3e07673437
3
+ size 10810700
data/stars/2012/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2647a073f664e9fad248fd2f1e21447b1f0815855bf784551c9fe864ac907a13
3
+ size 252231
data/wiki_pages/2012/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e3f0e96dbadbe340ca5bcc1436699527152555b5e4e033ad069f5d79ab57ecc
3
+ size 202481
stats.csv CHANGED
@@ -431,6 +431,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
431
  2012-08-20,131974,731,69860,6647,11572,4750,0,1490,11856,4661,15481,876,0,1635,2306,0,109,0,39694130,20.5,13124500,23.3,20.5,32.0
432
  2012-08-21,134319,775,71240,7410,11946,4886,0,1451,11782,4843,15009,872,0,1658,2332,0,115,0,43995569,40.9,17134827,55.6,40.9,35.0
433
  2012-08-22,135269,779,70648,7108,12293,5363,0,1119,12236,5376,15202,861,0,1728,2423,0,133,0,41356571,46.5,14064580,30.3,46.5,17.4
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,0.0
 
435
  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,0.0
436
  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
 
431
  2012-08-20,131974,731,69860,6647,11572,4750,0,1490,11856,4661,15481,876,0,1635,2306,0,109,0,39694130,20.5,13124500,23.3,20.5,32.0
432
  2012-08-21,134319,775,71240,7410,11946,4886,0,1451,11782,4843,15009,872,0,1658,2332,0,115,0,43995569,40.9,17134827,55.6,40.9,35.0
433
  2012-08-22,135269,779,70648,7108,12293,5363,0,1119,12236,5376,15202,861,0,1728,2423,0,133,0,41356571,46.5,14064580,30.3,46.5,17.4
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,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,0.0
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