tamnd commited on
Commit
766fc4e
·
verified ·
1 Parent(s): 56cdbbb

Add 2012-02-03 — 93.4K 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-02-02** (264 days), totaling **15,785,890 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 3.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.6 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,23 +71,23 @@ 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,323,325 events in 8547 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 277
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 251
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 224
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 199
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 190
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 205
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 165
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 210
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 264
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 307
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 334
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 388
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 447
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 521
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 718
@@ -95,7 +95,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
95
  18:00 ██████████████████████████████ 323.7K
96
  19:00 █████████████████████████████░ 316.4K
97
  20:00 ████████████████████████████░░ 304.5K
98
- 21:00 ███████████████████████░░░░░░░ 252.8K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.7M
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 | 21 | 1,689,746 | 80,464 | 424.6 MB | 207.6 MB | 7m56s | 9m17s | 11m18s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 765.6K
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 82.7K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
- 2012 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 48.1K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 171.0K
173
  ```
174
 
175
 
@@ -553,18 +553,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 7,440,492 | 47.1% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 819,781 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,055,084 | 6.7% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 418,915 | 2.7% | PR lifecycle events |
560
- | `stars` | WatchEvent | 1,589,006 | 10.1% | Repository stars |
561
- | `forks` | ForkEvent | 445,322 | 2.8% | Repository forks |
562
- | `creates` | CreateEvent | 2,583,273 | 16.4% | Branch/tag/repo creation |
563
- | `deletes` | DeleteEvent | 183,294 | 1.2% | Branch/tag deletion |
564
- | `commit_comments` | CommitCommentEvent | 192,900 | 1.2% | Comments on commits |
565
- | `wiki_pages` | GollumEvent | 318,552 | 2.0% | Wiki page edits |
566
- | `members` | MemberEvent | 85,448 | 0.5% | Collaborator additions |
567
- | `public_events` | PublicEvent | 14,217 | 0.1% | Repo made public |
568
 
569
  ## How it's built
570
 
 
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-02-03** (265 days), totaling **15,879,310 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 3.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.6 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,325,832 events in 8564 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 278
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 252
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 224
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 199
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 190
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 205
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 163
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 165
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 210
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 265
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 307
89
+ 12:00 █░░░���░░░░░░░░░░░░░░░░░░░░░░░░░ 335
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 390
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 447
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 521
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 718
 
95
  18:00 ██████████████████████████████ 323.7K
96
  19:00 █████████████████████████████░ 316.4K
97
  20:00 ████████████████████████████░░ 304.5K
98
+ 21:00 ███████████████████████░░░░░░░ 255.3K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
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 | 22 | 1,783,166 | 81,053 | 448.2 MB | 219.0 MB | 8m15s | 9m58s | 11m42s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 807.3K
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 87.5K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
+ 2012 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.8K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 180.2K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 7,482,203 | 47.1% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 824,581 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,061,935 | 6.7% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 421,662 | 2.7% | PR lifecycle events |
560
+ | `stars` | WatchEvent | 1,598,213 | 10.1% | Repository stars |
561
+ | `forks` | ForkEvent | 447,965 | 2.8% | Repository forks |
562
+ | `creates` | CreateEvent | 2,604,177 | 16.4% | Branch/tag/repo creation |
563
+ | `deletes` | DeleteEvent | 184,217 | 1.2% | Branch/tag deletion |
564
+ | `commit_comments` | CommitCommentEvent | 193,927 | 1.2% | Comments on commits |
565
+ | `wiki_pages` | GollumEvent | 320,628 | 2.0% | Wiki page edits |
566
+ | `members` | MemberEvent | 85,895 | 0.5% | Collaborator additions |
567
+ | `public_events` | PublicEvent | 14,301 | 0.1% | Repo made public |
568
 
569
  ## How it's built
570
 
data/commit_comments/2012/02/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:409deb8ee471ce7c1c780da8b5ba6d0a1a78aff61245613766c6c08993356206
3
+ size 146742
data/creates/2012/02/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b67aa32c051defd38018d7982a1f31c4e10de01df14355bec9465b8072fd73d
3
+ size 519295
data/deletes/2012/02/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed6fe7dc9ae7f297e88688278fca9c4e4fe36028f3ef33136a8633da4323d869
3
+ size 33266
data/forks/2012/02/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38b23c4792c741a65a5e597632b0c45dcf5683f7b48826723a37a46c2e621f73
3
+ size 243815
data/issues/2012/02/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20a7cef916ce5c9e81cfbf4bd9ed2c99f1e5308e866821079b7555fc1126b919
3
+ size 1009727
data/members/2012/02/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa44abff3d044d5402be7255c55cdbf7a604167e92eb38a24ec5642db8c31f8b
3
+ size 22619
data/public_events/2012/02/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e89af4c3bfc5405493ec9ec640525a3888cb62d10660b4f3f45007c978bdaf75
3
+ size 6147
data/pull_requests/2012/02/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9046bda345f20e10f359e5349b089c326ee54a6d6d2dbb80694f8f4f18e66a47
3
+ size 490644
data/pushes/2012/02/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:526e1b7a9efa46fd5d991262d2203c22cb46fc96ab6e11cb9c10dfce7b2cb554
3
+ size 8982712
data/stars/2012/02/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be5509ba0bb74380ee381e8e8b50670d3111d02358c35002baa7bca14a584190
3
+ size 273473
data/wiki_pages/2012/02/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:291d3409cd23e3a32bfe47d745080ed2a69200052968ea5947898b2b09c1748c
3
+ size 163675
stats.csv CHANGED
@@ -262,4 +262,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
262
  2012-01-30,93901,0,44392,4832,7128,2664,0,0,9442,2751,18266,824,0,1224,1856,438,84,0,25828574,41.4,12657641,24.1,41.4,30.9
263
  2012-01-31,107809,0,49406,5603,8726,3167,0,0,11005,3166,21339,968,0,1303,2513,486,127,0,29725687,50.2,14091243,21.2,50.2,31.7
264
  2012-02-01,99067,0,47144,4966,7751,3282,0,0,11988,3314,15957,999,0,1178,1920,471,97,0,27890138,51.0,13175749,38.1,51.0,29.4
265
- 2012-02-02,91095,0,41920,4523,6987,2970,0,0,8843,2488,19155,947,0,893,1822,465,82,0,24908329,42.2,11808271,22.2,42.2,0.0
 
 
262
  2012-01-30,93901,0,44392,4832,7128,2664,0,0,9442,2751,18266,824,0,1224,1856,438,84,0,25828574,41.4,12657641,24.1,41.4,30.9
263
  2012-01-31,107809,0,49406,5603,8726,3167,0,0,11005,3166,21339,968,0,1303,2513,486,127,0,29725687,50.2,14091243,21.2,50.2,31.7
264
  2012-02-01,99067,0,47144,4966,7751,3282,0,0,11988,3314,15957,999,0,1178,1920,471,97,0,27890138,51.0,13175749,38.1,51.0,29.4
265
+ 2012-02-02,91095,0,41920,4523,6987,2970,0,0,8843,2488,19155,947,0,893,1822,465,82,0,24908329,42.2,11808271,22.2,42.2,24.3
266
+ 2012-02-03,93420,0,41711,4800,6851,2747,0,0,9207,2643,20904,923,0,1027,2076,447,84,0,24713660,40.5,11892115,18.9,40.6,0.0