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

Add 2012-09-04 — 135.3K 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-08-22** (432 days), totaling **34,675,916 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.0 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** — 41,337 events in 28 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 41.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 | 41,337 | 28 |
107
 
108
 
109
  ### Live event schema
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ████████████████████░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 20.6M
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 | 189 | 20,579,772 | 108,887 | 5.3 GB | 1.9 GB | 1h24m | 1h53m | 1h47m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
- 2011 ████████████████████░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 9.5M
154
  ```
155
 
156
 
@@ -174,7 +174,7 @@ duckdb.sql("""
174
 
175
  ```
176
  2011 ████████████████████░░░░░░░░░░ 1.4M
177
- 2012 ██████████████████████████████ 2.0M
178
  ```
179
 
180
 
@@ -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,189,260 | 46.7% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 1,802,906 | 5.2% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,581,838 | 7.4% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,444,321 | 4.2% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 124,111 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,443,869 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,063,773 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 5,814,272 | 16.8% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 303,142 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 395,531 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 662,151 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 30,912 | 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** (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
 
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
  | 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
 
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
 
 
174
 
175
  ```
176
  2011 ████████████████████░░░░░░░░░░ 1.4M
177
+ 2012 ██████████████████████████████ 2.1M
178
  ```
179
 
180
 
 
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
 
data/commit_comments/2012/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5340098cb6a0de0b005031289de39c2c1e67d9bc34b3f04b115ed6758e3531a
3
+ size 56408
data/creates/2012/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32ab8da22e072ee2dbdb225f50e2172bd178adfefa7e33309de92dc9ddbe1ee9
3
+ size 548001
data/deletes/2012/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:585a88b792556ffdfa8895e3f67fb663c7508608c1ebcae4013c37e4c602dda7
3
+ size 29737
data/forks/2012/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bd74a2254da8c4bbd031daf4a8e2e791676462f68945a21b63d2e6c9d4d2724
3
+ size 126999
data/issue_comments/2012/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:320907d34689f47c3cd655dab5766c6277e6b577292be276205fc7f1b558abfc
3
+ size 274735
data/issues/2012/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fee4557e4484b64acd43731621f118c635887df1ab45b8c388becbd474319f89
3
+ size 171545
data/public_events/2012/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bba96db9f704201b4d40a9b7d86b6a65ddf65e510c599b8fef3028f6510b1245
3
+ size 5439
data/pull_requests/2012/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9f522b85badcda1882053c128f880378514fe0282c35f75c40e8046061b66b1
3
+ size 907310
data/pushes/2012/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0fbefebaac22e931e66dd3fd051cf718c9b74c543cccea3890161666363beca
3
+ size 11019418
data/stars/2012/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a357c92a204584fa3920c977340a0c4b0ab99abf175f10fd9b9a3f63c4ef9062
3
+ size 249391
data/wiki_pages/2012/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e372921a0051745ecda3e35cb4ad25250a3737dc7486a79c43e4fca0ad909fc
3
+ size 236124
stats.csv CHANGED
@@ -431,3 +431,6 @@ 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
 
 
 
 
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