tamnd commited on
Commit
24a4539
·
verified ·
1 Parent(s): 2d629eb

Add 2012-09-16 — 97.5K 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-09-15** (444 days), totaling **36,138,205 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.4 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-28** — 78,969 events in 78 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 79.0K
@@ -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 | 78,969 | 78 |
107
 
108
 
109
  ### Live event schema
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ███████████████████░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 22.0M
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 | 201 | 22,042,061 | 109,661 | 5.7 GB | 2.1 GB | 1h29m | 2h06m | 1h54m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ███████████████████░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 10.2M
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 | 16,923,837 | 46.8% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 1,890,905 | 5.2% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,719,422 | 7.5% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,494,617 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 136,864 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,584,849 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,118,060 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 5,990,907 | 16.6% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 312,634 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 411,349 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 693,475 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 32,260 | 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-16** (445 days), totaling **36,235,695 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.4 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-28** — 78,981 events in 81 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 79.0K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 78,981 | 81 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ███████████████████░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 22.1M
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 | 202 | 22,139,551 | 109,601 | 5.7 GB | 2.1 GB | 1h29m | 2h07m | 1h55m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ███████████████████░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 10.3M
154
  ```
155
 
156
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 16,974,470 | 46.8% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 1,896,400 | 5.2% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 2,727,299 | 7.5% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,497,251 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 137,417 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,594,005 | 9.9% | Repository stars |
567
+ | `forks` | ForkEvent | 1,121,328 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 6,004,785 | 16.6% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 313,183 | 0.9% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 412,248 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 695,399 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 32,337 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d21e6fdf722d312a55a1e81eb8021ad2258e93508fa55ff58def95609d3e14a1
3
+ size 34621
data/creates/2012/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e02269ce2659496fbc5833073afb86c95d147ee094d961555021bbbe61184380
3
+ size 417125
data/deletes/2012/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c21c5d7bc92b75237c7203b8e7327d75febebda69a2ba88780dd5455136014d7
3
+ size 21456
data/forks/2012/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3571307bb5eabd3fdcff9aff978bb6534f002a78f272f08c5f19b0cf9484e8cb
3
+ size 83593
data/issue_comments/2012/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0b9bd8a0a22e80bb0a27ff77595b559a45d8d00bab27514e413acf908331407
3
+ size 160911
data/issues/2012/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e2fb1622663ead708c4d5b7c3356fb2282bb9dcc7f524c6856add5091aca0cf
3
+ size 123434
data/public_events/2012/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93d035925b5e486074919b7c2bf636c2aeb1f2ab4a14e623bb1487a0dde65327
3
+ size 4552
data/pull_requests/2012/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15eca1afe52ac89be4c55ffc27b17cdf90c993232f02858f7c18f344b85f2317
3
+ size 496410
data/pushes/2012/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a132fc7714f22b1a08570030f9f6a52a704225977be6c7842b78f68041cbfe3b
3
+ size 7340063
data/stars/2012/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09d7298e03549a527decca17259e28319962bdff574eed242bfae35cec9ecce6
3
+ size 178449
data/wiki_pages/2012/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f24fa89327fa7293482a77429aac8d1fc09a5aacb83c2def958c3f6c6347de9
3
+ size 105342
stats.csv CHANGED
@@ -442,4 +442,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
442
  2012-09-12,138793,942,71769,7161,12145,5168,0,1324,13146,4924,16629,965,0,1608,2859,0,153,0,42299534,78.0,13922161,26.7,78.0,36.1
443
  2012-09-13,137260,930,69396,9129,11978,5041,0,1263,12875,5148,16045,913,0,1541,2898,0,103,0,41135717,76.6,13398691,23.0,76.6,39.8
444
  2012-09-14,124303,745,61208,7411,11702,4260,0,938,12104,4554,16698,815,0,1250,2498,0,120,0,36298528,62.5,11946022,28.5,62.5,35.4
445
- 2012-09-15,84217,536,45275,4787,6435,2324,0,438,7988,2896,10559,444,0,688,1779,0,68,0,24347810,48.4,8198675,20.7,48.4,0.0
 
 
442
  2012-09-12,138793,942,71769,7161,12145,5168,0,1324,13146,4924,16629,965,0,1608,2859,0,153,0,42299534,78.0,13922161,26.7,78.0,36.1
443
  2012-09-13,137260,930,69396,9129,11978,5041,0,1263,12875,5148,16045,913,0,1541,2898,0,103,0,41135717,76.6,13398691,23.0,76.6,39.8
444
  2012-09-14,124303,745,61208,7411,11702,4260,0,938,12104,4554,16698,815,0,1250,2498,0,120,0,36298528,62.5,11946022,28.5,62.5,35.4
445
+ 2012-09-15,84217,536,45275,4787,6435,2324,0,438,7988,2896,10559,444,0,688,1779,0,68,0,24347810,48.4,8198675,20.7,48.4,44.4
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,0.0