tamnd commited on
Commit
7703579
·
verified ·
1 Parent(s): 982aa9d

Add 2012-07-25 — 125.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-07-24** (403 days), totaling **31,411,247 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 7.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.0 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-27** — 1,800,470 events in 11824 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 377
@@ -85,12 +85,12 @@ Events from today are captured in near-real-time from the GitHub Events API and
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 281
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 348
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 320
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 389
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 407
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 485
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 582
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 631
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 892
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
96
  19:00 █████████████████████████████░ 316.6K
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ████████████████████████░░░░░░ 14.1M
135
- 2012 ██████████████████████████████ 17.3M
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
- | 2012 | 160 | 17,315,103 | 108,219 | 4.4 GB | 1.6 GB | 1h10m | 1h41m | 1h31m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 █████████████████████████░░░░░ 6.7M
148
- 2012 ██████████████████████████████ 7.8M
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ████████████████████████░░░░░░ 737.1K
156
- 2012 ██████████████████████████████ 892.6K
157
  ```
158
 
159
 
@@ -161,14 +161,14 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 963.3K
165
  ```
166
 
167
 
168
  ### Stars per year
169
 
170
  ```
171
- 2011 ████████████████████████░░░░░ 1.4M
172
  2012 ██████████████████████████████ 1.7M
173
  ```
174
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 14,476,700 | 46.1% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,629,639 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 2,305,463 | 7.3% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,334,156 | 4.2% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 97,071 | 0.3% | Line-level PR comments |
561
- | `stars` | WatchEvent | 3,118,719 | 9.9% | Repository stars |
562
- | `forks` | ForkEvent | 943,012 | 3.0% | Repository forks |
563
- | `creates` | CreateEvent | 5,437,175 | 17.3% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 283,273 | 0.9% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 359,421 | 1.1% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 597,919 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
- | `public_events` | PublicEvent | 28,017 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
 
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-07-25** (404 days), totaling **31,536,511 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 7.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.0 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-27** — 1,800,501 events in 11838 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 377
 
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 281
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 348
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 320
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 390
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 408
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 485
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 582
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 632
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 893
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
96
  19:00 █████████████████████████████░ 316.6K
 
132
 
133
  ```
134
  2011 ████████████████████████░░░░░░ 14.1M
135
+ 2012 ██████████████████████████████ 17.4M
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
+ | 2012 | 161 | 17,440,367 | 108,325 | 4.5 GB | 1.6 GB | 1h11m | 1h42m | 1h31m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 █████████████████████████░░░░░ 6.7M
148
+ 2012 ██████████████████████████████ 7.9M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ████████████████████████░░░░░░ 737.1K
156
+ 2012 ██████████████████████████████ 899.1K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 968.1K
165
  ```
166
 
167
 
168
  ### Stars per year
169
 
170
  ```
171
+ 2011 ████████████████████████░░░░░ 1.4M
172
  2012 ██████████████████████████████ 1.7M
173
  ```
174
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 14,538,633 | 46.1% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,636,198 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 2,316,058 | 7.3% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,338,918 | 4.2% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 98,104 | 0.3% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 3,131,663 | 9.9% | Repository stars |
562
+ | `forks` | ForkEvent | 947,543 | 3.0% | Repository forks |
563
+ | `creates` | CreateEvent | 5,454,176 | 17.3% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 284,101 | 0.9% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 360,948 | 1.1% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 600,470 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 28,155 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/07/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1166edb603c8049cb1e402ebda1f988a09ef609d68a393d043da6350317bece
3
+ size 50425
data/creates/2012/07/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91226f76d6a027d91a2bac80e81adf81e24ebf8e34a3c3b77e6492dec1d4d4d9
3
+ size 501510
data/deletes/2012/07/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bb8c220797fe1ee73d7b69a8ad08030a964c2ac94d0af0382b5da888942ab81
3
+ size 27707
data/forks/2012/07/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29c0e0c7f4aeb33cd6ccb20d6002df94ff36e5f5c9d37e0cbd62d31893060c47
3
+ size 128125
data/issue_comments/2012/07/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36e58aaa8d242ebe1ae120e4e28d30ca8939fba90ff5186337d9373b05b794c4
3
+ size 225817
data/issues/2012/07/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e8306f59421b39c2f4336d8257ee65e2764156c7c78209caa9e4b4bc7a46008
3
+ size 154337
data/public_events/2012/07/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8330cf65fbcd2869a2434861f19ab0faa5cd8c8abb8c40416664f767d152792a
3
+ size 6609
data/pull_requests/2012/07/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94c5ca8f9e92d6a8ab1ab1244aa2e6ecf063b5e2920126b7181c53f33d3cffcf
3
+ size 826830
data/pushes/2012/07/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:072bf5ca6661a07edb93fb0f8f057a5aa3ec976dd910ddb5331d748750666048
3
+ size 9935265
data/stars/2012/07/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bac0551fb38baf59c7236984d417ab32caea3eee4325ea4c7a8665d75cbcf02
3
+ size 304812
data/wiki_pages/2012/07/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17fdd4e26b5e100f8c345f6a9d8c418f95679275619b35967eb412f1c92885a9
3
+ size 179341
stats.csv CHANGED
@@ -401,4 +401,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
401
  2012-07-21,73692,586,38771,4252,5107,2046,0,398,7573,2712,9302,405,0,641,1849,0,50,0,21046541,34.1,7039958,22.2,34.2,24.2
402
  2012-07-22,92744,559,44183,14071,6319,2220,0,473,8663,2976,10075,485,0,795,1872,0,53,0,23939544,42.2,8220733,23.4,42.2,30.5
403
  2012-07-23,123633,990,62282,5822,10536,4712,0,1223,13514,4636,14913,817,0,1525,2548,0,115,0,37337103,63.4,12532600,29.4,63.4,34.2
404
- 2012-07-24,125585,823,62360,6637,10244,4812,0,1336,14072,4725,15464,882,0,1651,2448,0,131,0,37456858,64.1,12621096,23.4,64.2,0.0
 
 
401
  2012-07-21,73692,586,38771,4252,5107,2046,0,398,7573,2712,9302,405,0,641,1849,0,50,0,21046541,34.1,7039958,22.2,34.2,24.2
402
  2012-07-22,92744,559,44183,14071,6319,2220,0,473,8663,2976,10075,485,0,795,1872,0,53,0,23939544,42.2,8220733,23.4,42.2,30.5
403
  2012-07-23,123633,990,62282,5822,10536,4712,0,1223,13514,4636,14913,817,0,1525,2548,0,115,0,37337103,63.4,12532600,29.4,63.4,34.2
404
+ 2012-07-24,125585,823,62360,6637,10244,4812,0,1336,14072,4725,15464,882,0,1651,2448,0,131,0,37456858,64.1,12621096,23.4,64.2,31.2
405
+ 2012-07-25,125264,862,61933,6559,10595,4762,0,1033,12944,4531,17001,828,0,1527,2551,0,138,0,36874949,65.5,12340778,24.3,65.5,0.0