tamnd commited on
Commit
e735cb0
·
verified ·
1 Parent(s): 5089c65

Add 2012-09-20 — 150.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-09-19** (448 days), totaling **36,670,655 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.5 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,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** — 89,611 events in 94 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 89.6K
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 | 89,611 | 94 |
107
 
108
 
109
  ### Live event schema
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ██████████████████░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 22.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 | 205 | 22,574,511 | 110,119 | 5.9 GB | 2.1 GB | 1h31m | 2h11m | 1h57m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
- 2011 ██████████████████░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 10.5M
154
  ```
155
 
156
 
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 17,187,067 | 46.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 1,927,589 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,774,473 | 7.6% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,512,437 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 141,539 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,632,265 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,137,094 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,055,322 | 16.5% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 315,913 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 417,121 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 704,593 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 32,763 | 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-20** (449 days), totaling **36,820,650 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.5 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-28** — 91,723 events in 98 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 91.7K
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 | 91,723 | 98 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ██████████████████░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 22.7M
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 | 206 | 22,724,506 | 110,313 | 5.9 GB | 2.1 GB | 1h32m | 2h12m | 1h57m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
+ 2011 ██████████████████░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 10.6M
154
  ```
155
 
156
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 17,257,777 | 46.9% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 1,940,857 | 5.3% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 2,791,571 | 7.6% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,517,128 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 142,871 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,644,309 | 9.9% | Repository stars |
567
+ | `forks` | ForkEvent | 1,142,238 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 6,074,926 | 16.5% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 316,904 | 0.9% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 418,419 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 707,279 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 32,910 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:556f54821caa4e5a789813f1df57105bcfcb54e8599975aa3d4bf86ff33dd5ae
3
+ size 48576
data/creates/2012/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:041ac141b00f525c1a254bd8e970eb18b33f7343ffaa352cac26a9ece379e401
3
+ size 582362
data/deletes/2012/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0a9a9b6544cd2f5cbae099b134dc761aec864fcb23abd9857d64bc1c04bc593
3
+ size 31302
data/forks/2012/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2280139fd0e8bc4f8ad0f6a991679af929fee6ed77dd45960d278a462ff9daa3
3
+ size 124231
data/issue_comments/2012/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bb6d1a93530b4ebcf826bcad96e9b06625822c2c8a9b6e8ebb8204eb747ec87
3
+ size 300889
data/issues/2012/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8e884b15178aff7be63dbec886af807772ef8213d3003528b08bd192f3cdab1
3
+ size 224405
data/public_events/2012/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0aba4155ce438588d0d651ace33f87a41efeb96d4e02a94e134bf9ae5fc329fa
3
+ size 6570
data/pull_requests/2012/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f3c9f7b8272011c04c1b575e833b7109f555992281175ecd1dadbd8d43a6961
3
+ size 824455
data/pushes/2012/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e22680614b3151d07ed03e6658b971694b5b553690b539aa376003019da1a8ea
3
+ size 11206328
data/stars/2012/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5ea7b02fa2f4371cb68d83e6d1485a7a732b72e6a285024d1cb325e8aa6647e
3
+ size 282401
data/wiki_pages/2012/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b50c4267abf75dc64ca30558ec783487fc451ce45f6508f44ba9f1f8bddcfe1
3
+ size 190597
stats.csv CHANGED
@@ -446,4 +446,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
446
  2012-09-16,97490,547,50633,5495,7877,2634,0,553,9156,3268,13878,549,0,899,1924,0,77,0,27331355,48.4,8965956,22.8,48.4,30.0
447
  2012-09-17,144504,963,69999,10684,16433,4991,0,1341,13241,5154,15963,842,0,1624,3142,0,127,0,41958960,77.8,13758900,26.3,77.8,41.6
448
  2012-09-18,148363,982,72379,11455,15691,5184,0,1452,12658,5483,17245,922,0,1679,3081,0,152,0,43167042,78.8,14341112,33.2,78.8,33.9
449
- 2012-09-19,142093,961,70219,9050,15050,5011,0,1329,12361,5129,17329,966,0,1570,2971,0,147,0,41415612,77.2,13830463,44.6,77.2,0.0
 
 
446
  2012-09-16,97490,547,50633,5495,7877,2634,0,553,9156,3268,13878,549,0,899,1924,0,77,0,27331355,48.4,8965956,22.8,48.4,30.0
447
  2012-09-17,144504,963,69999,10684,16433,4991,0,1341,13241,5154,15963,842,0,1624,3142,0,127,0,41958960,77.8,13758900,26.3,77.8,41.6
448
  2012-09-18,148363,982,72379,11455,15691,5184,0,1452,12658,5483,17245,922,0,1679,3081,0,152,0,43167042,78.8,14341112,33.2,78.8,33.9
449
+ 2012-09-19,142093,961,70219,9050,15050,5011,0,1329,12361,5129,17329,966,0,1570,2971,0,147,0,41415612,77.2,13830463,44.6,77.2,27.7
450
+ 2012-09-20,149995,982,70710,13268,17098,4691,0,1332,12044,5144,19604,991,0,1298,2686,0,147,0,41391100,75.8,13822116,26.7,75.8,0.0