tamnd commited on
Commit
20029c6
·
verified ·
1 Parent(s): 579c247

Add 2012-08-05 — 89.0K 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-08-04** (414 days), totaling **32,605,956 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.1 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,821,313 events in 12029 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 380
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 361
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 303
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 282
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 253
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 268
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 209
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 237
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 290
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 354
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 322
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 393
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 414
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 493
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 586
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 639
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 898
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████░░░░░░░░ 14.1M
135
- 2012 █████████████████████████████ 18.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 | 171 | 18,509,812 | 108,244 | 4.7 GB | 1.7 GB | 1h15m | 1h47m | 1h37m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ███████████████████████░░░░░░░ 6.7M
148
- 2012 ██████████████████████████████ 8.4M
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ███████████████████████░░░░░░░ 737.1K
156
- 2012 ██████████████████████████████ 954.7K
157
  ```
158
 
159
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 15,089,019 | 46.3% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,691,806 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 2,402,497 | 7.4% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,375,762 | 4.2% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 107,150 | 0.3% | Line-level PR comments |
561
- | `stars` | WatchEvent | 3,250,364 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 986,595 | 3.0% | Repository forks |
563
- | `creates` | CreateEvent | 5,579,941 | 17.1% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 290,442 | 0.9% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 372,485 | 1.1% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 622,388 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
- | `public_events` | PublicEvent | 29,097 | 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-08-05** (415 days), totaling **32,694,987 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.1 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,821,332 events in 12044 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 380
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 362
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 303
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 282
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 253
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 268
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 209
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 237
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 293
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 355
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 322
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 393
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 414
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 493
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 587
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 640
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 898
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
 
132
 
133
  ```
134
  2011 ██████████████████████░░░░░░░░ 14.1M
135
+ 2012 ███████████���██████████████████ 18.6M
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 | 172 | 18,598,843 | 108,132 | 4.8 GB | 1.7 GB | 1h16m | 1h47m | 1h37m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ███████████████████████░░░░░░░ 6.7M
148
+ 2012 ██████████████████████████████ 8.5M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ███████████████████████░░░░░░░ 737.1K
156
+ 2012 ██████████████████████████████ 959.2K
157
  ```
158
 
159
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 15,138,710 | 46.3% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,696,333 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 2,407,876 | 7.4% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,378,074 | 4.2% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 107,678 | 0.3% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 3,259,798 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 990,080 | 3.0% | Repository forks |
563
+ | `creates` | CreateEvent | 5,589,844 | 17.1% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 290,883 | 0.9% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 373,380 | 1.1% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 624,270 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 29,174 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/08/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb8dfa7399a53354d17f50f73e5959e309dbdef1cad86439180c57033ce75ad8
3
+ size 36450
data/creates/2012/08/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebc91b7a0b9692899830611641a92a045fdeadf81a47efe8a96241f4dd9e096f
3
+ size 342376
data/deletes/2012/08/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5037a5badfa8b465bc7256412e5f5f58e153318b7611c8cb3029c69fd3dc2d77
3
+ size 16633
data/forks/2012/08/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e07d3ffa4c935e2acd6c95b30cc2c403d701700a1f62b968be8533984993b8c
3
+ size 83746
data/issue_comments/2012/08/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74c1f5fbbdf922031f4f2cfa63fc7c85a12ecc3553967ec0e1a2d3d8b8ac94a6
3
+ size 146283
data/issues/2012/08/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0cde44cfc44eff35c683b39ad32cceafd2a506b4879c0be65ea0c1744e8f2ff
3
+ size 99957
data/public_events/2012/08/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55c212aa369477601d688dbb963e3ae6a079c855377c32d76a5fc554c1c187f1
3
+ size 4379
data/pull_requests/2012/08/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e91d8efce8118a6a94af23d250e40a650a91a7730f689a55e0d792cf2d6ca7cf
3
+ size 453372
data/pushes/2012/08/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad95d32c8dbee18e2ed56a4bf39f2a4b4d28e3c00214b25b4dd34c2f62d960ac
3
+ size 6908366
data/stars/2012/08/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b6868eafeb5024eb4c49b38ebbc80769ad7bf15ad462c9ea300f83daff282fc
3
+ size 189163
data/wiki_pages/2012/08/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e9d7d443545a58ad29d4414f17ea577623c614ab66d3e1d4f5c7e4e8c2c2c14
3
+ size 96049
stats.csv CHANGED
@@ -412,4 +412,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
412
  2012-08-01,123867,956,61863,7067,10376,4641,0,1122,14095,4631,14394,789,0,1286,2536,0,111,0,37256393,32.6,12161468,30.8,32.6,28.6
413
  2012-08-02,127408,843,67355,6009,9929,4368,0,1144,13613,4423,15012,745,0,1350,2468,0,149,0,37480292,18.8,12787701,34.3,18.8,28.0
414
  2012-08-03,113698,656,59934,5656,9518,3928,0,955,12251,4012,12420,673,0,1311,2306,0,78,0,33209197,20.3,11244538,22.0,20.3,33.5
415
- 2012-08-04,79548,417,45148,3970,5473,2201,0,299,8058,2601,8698,341,0,703,1567,0,72,0,22212992,13.8,7610791,20.9,13.8,0.0
 
 
412
  2012-08-01,123867,956,61863,7067,10376,4641,0,1122,14095,4631,14394,789,0,1286,2536,0,111,0,37256393,32.6,12161468,30.8,32.6,28.6
413
  2012-08-02,127408,843,67355,6009,9929,4368,0,1144,13613,4423,15012,745,0,1350,2468,0,149,0,37480292,18.8,12787701,34.3,18.8,28.0
414
  2012-08-03,113698,656,59934,5656,9518,3928,0,955,12251,4012,12420,673,0,1311,2306,0,78,0,33209197,20.3,11244538,22.0,20.3,33.5
415
+ 2012-08-04,79548,417,45148,3970,5473,2201,0,299,8058,2601,8698,341,0,703,1567,0,72,0,22212992,13.8,7610791,20.9,13.8,26.9
416
+ 2012-08-05,89031,477,49691,4527,5379,2312,0,528,9434,3485,9903,441,0,895,1882,0,77,0,24764306,14.2,8376774,27.1,14.2,0.0