tamnd commited on
Commit
9e29094
·
verified ·
1 Parent(s): 71219b4

Add 2012-07-17 — 128.9K events, 11 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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-16** (395 days), totaling **30,506,258 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 6.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.9 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
 
@@ -71,25 +71,25 @@ 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,781,378 events in 11686 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 374
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 350
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 295
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 278
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 246
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 265
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 202
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 279
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 345
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 318
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 387
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 403
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 483
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 574
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 629
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 889
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
@@ -132,13 +132,13 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 █████████████████████████░░░░░ 14.1M
135
- 2012 ██████████████████████████████ 16.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 | 152 | 16,410,114 | 107,961 | 4.2 GB | 1.5 GB | 1h07m | 1h34m | 1h26m |
142
 
143
 
144
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████░░░░ 737.1K
156
- 2012 ██████████████████████████████ 835.7K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 931.6K
165
  ```
166
 
167
 
@@ -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,026,641 | 46.0% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,572,775 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 2,227,758 | 7.3% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,302,497 | 4.3% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 88,899 | 0.3% | Line-level PR comments |
561
- | `stars` | WatchEvent | 3,022,572 | 9.9% | Repository stars |
562
- | `forks` | ForkEvent | 910,043 | 3.0% | Repository forks |
563
- | `creates` | CreateEvent | 5,328,229 | 17.5% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 277,595 | 0.9% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 349,036 | 1.1% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 579,257 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
- | `public_events` | PublicEvent | 27,225 | 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-17** (396 days), totaling **30,635,167 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 6.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.9 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
 
 
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,781,438 events in 11717 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 375
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 351
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 296
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 278
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 246
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 266
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 203
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 236
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 279
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 345
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 319
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 388
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 405
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 483
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 576
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░���630
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 889
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
 
132
 
133
  ```
134
  2011 █████████████████████████░░░░░ 14.1M
135
+ 2012 ██████████████████████████████ 16.5M
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 | 153 | 16,539,023 | 108,098 | 4.2 GB | 1.6 GB | 1h08m | 1h35m | 1h27m |
142
 
143
 
144
  ### Pushes per year
 
153
 
154
  ```
155
  2011 ██████████████████████████░░░░ 737.1K
156
+ 2012 ██████████████████████████████ 842.4K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 936.5K
165
  ```
166
 
167
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 14,090,671 | 46.0% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,579,463 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 2,238,915 | 7.3% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,307,366 | 4.3% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 90,014 | 0.3% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 3,036,205 | 9.9% | Repository stars |
562
+ | `forks` | ForkEvent | 914,913 | 3.0% | Repository forks |
563
+ | `creates` | CreateEvent | 5,344,073 | 17.4% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 278,412 | 0.9% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 350,761 | 1.1% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 581,975 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 27,363 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9186cd766bbb285e81052e222af66feb13aac3b29b8c3bec64388992ed024e8
3
+ size 56619
data/creates/2012/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e58b99be3169977d798e503835c200c00efc72c0976672582373b0f547df4fe
3
+ size 517910
data/deletes/2012/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e52bb164b47fa7c171159e6322e3ea2c1c4917a9c867270aff3abe2bf28426f
3
+ size 26819
data/forks/2012/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7810601b8818ba298e3fd788462eb4eacab8f8d3ffadbd9bd1d20d780d18b04c
3
+ size 120974
data/issue_comments/2012/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98a6ac70e275d7fdb72d560a0fe5bf33a602dd31b5539da91d765f0654e77863
3
+ size 239046
data/issues/2012/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe5bc1681a2bd0beb44b3a6004fde165b7d99de55bf57b11ef5a58e08736c825
3
+ size 157252
data/public_events/2012/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08d1984f945720b698295a1f839887df836b1b282342a2f3efe000eee9d1aa7d
3
+ size 6310
data/pull_requests/2012/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a9ea42f24ec8a9b2b459fc8acd30ff502278d1f2a7104919e6d39b4f2c64ddd
3
+ size 854917
data/pushes/2012/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aad727153c6b7851931a4534265444e306fe36b97d02a553e72e72fc9f606050
3
+ size 10507536
data/stars/2012/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f28603b8052cdd324b45a7dc79fedbf2564733890f1a3396c9866aa558df0f7a
3
+ size 269537
data/wiki_pages/2012/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4eb4647bdb449cf36d75bdc643c64da35205c11926de39469a45cfa2028f3c89
3
+ size 135530
stats.csv CHANGED
@@ -393,4 +393,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
393
  2012-07-13,151328,1485,57661,22603,10639,4546,0,1150,12174,4250,32215,737,0,1357,2403,0,108,0,36218711,73.7,11932132,22.0,73.7,46.7
394
  2012-07-14,272634,909,36391,3349,5337,2212,0,462,7208,2533,211381,501,0,761,1539,0,51,0,25496194,84.2,8463234,26.7,84.2,41.1
395
  2012-07-15,85659,782,45190,3983,5779,2319,0,714,8839,3387,11467,426,0,828,1875,0,70,0,24605505,40.2,8516150,21.3,40.2,37.3
396
- 2012-07-16,123849,1257,61189,6490,10724,4659,0,1132,13322,4707,15370,832,0,1561,2485,0,121,0,36655202,64.4,11998706,29.5,64.4,0.0
 
 
393
  2012-07-13,151328,1485,57661,22603,10639,4546,0,1150,12174,4250,32215,737,0,1357,2403,0,108,0,36218711,73.7,11932132,22.0,73.7,46.7
394
  2012-07-14,272634,909,36391,3349,5337,2212,0,462,7208,2533,211381,501,0,761,1539,0,51,0,25496194,84.2,8463234,26.7,84.2,41.1
395
  2012-07-15,85659,782,45190,3983,5779,2319,0,714,8839,3387,11467,426,0,828,1875,0,70,0,24605505,40.2,8516150,21.3,40.2,37.3
396
+ 2012-07-16,123849,1257,61189,6490,10724,4659,0,1132,13322,4707,15370,832,0,1561,2485,0,121,0,36655202,64.4,11998706,29.5,64.4,39.2
397
+ 2012-07-17,128909,1305,64030,6688,11157,4869,0,1115,13633,4870,15844,817,0,1725,2718,0,138,0,38356755,61.7,12892450,24.2,61.7,0.0