tamnd commited on
Commit
d50dceb
·
verified ·
1 Parent(s): c7faa6e

Add 2012-10-07 — 87.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-10-06** (465 days), totaling **38,837,678 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 9.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.7 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** — 132,912 events in 166 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 132.9K
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 | 132,912 | 166 |
107
 
108
 
109
  ### Live event schema
@@ -137,13 +137,13 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 █████████████████░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 24.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 | 222 | 24,741,534 | 111,448 | 6.5 GB | 2.3 GB | 1h40m | 2h23m | 2h07m |
147
 
148
 
149
  ### Pushes per year
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 18,260,924 | 47.0% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,070,804 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,980,836 | 7.7% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,585,104 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 160,042 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,818,427 | 9.8% | Repository stars |
567
- | `forks` | ForkEvent | 1,214,605 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,349,904 | 16.3% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 329,056 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 438,731 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 747,608 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 34,892 | 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-10-07** (466 days), totaling **38,925,611 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 9.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.7 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** — 135,191 events in 169 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 135.2K
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 | 135,191 | 169 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 █████████████████░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 24.8M
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 | 223 | 24,829,467 | 111,342 | 6.5 GB | 2.3 GB | 1h40m | 2h23m | 2h07m |
147
 
148
 
149
  ### Pushes per year
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 18,308,591 | 47.0% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,075,076 | 5.3% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 2,987,089 | 7.7% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,587,604 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 160,582 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,827,156 | 9.8% | Repository stars |
567
+ | `forks` | ForkEvent | 1,217,591 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 6,361,312 | 16.3% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 329,548 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 439,432 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 749,326 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 34,967 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:870a54187865b91df11141713c5e65e48ce26b834de8e85d7ab29b668f8242a4
3
+ size 33010
data/creates/2012/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16290b4767c789f0c1064ff83aa11c0666c21abdf231435b37b96a55a80d16f9
3
+ size 404524
data/deletes/2012/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c86b6a73c7bb0b18bf08f87b087889c8980230d3aacd86f194532e8ea91e36a1
3
+ size 19206
data/forks/2012/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc3ad6ddc219f9059f9a8657f97e55dff7baeb265721167506271d93915033ff
3
+ size 86506
data/issue_comments/2012/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7287c4af4b19010dd72c847f745e4fea4347c2c8b3bc3a701d3850080608ddb9
3
+ size 156715
data/issues/2012/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6156244ffdafce8542707577835af1233f917548319a4f6e812454c8001dbd4a
3
+ size 115858
data/public_events/2012/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:724d685dfc04bb9fe9c172ccb7b0c6b9637e100e12e2a5ec1dc6269e70d09280
3
+ size 4873
data/pull_requests/2012/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08b9cc1ee82e8848a2a6e468c5b72d61cbedc4a62e069712cc0ec1f2dd51167b
3
+ size 518134
data/pushes/2012/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e50b7237dfef90f8e27d450fdfec71f05cf96abd5aff94581221412a3d706a9
3
+ size 7639057
data/stars/2012/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8980bebb0c81ce38d7c4f4818f03f651f01cd00398c26b7d352af71facc392da
3
+ size 202484
data/wiki_pages/2012/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1339e8e0f5277302e5935536b7d749d661e5a6198a99bf0facde3fdd54ad7d6
3
+ size 93835
stats.csv CHANGED
@@ -463,4 +463,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
463
  2012-10-03,140535,884,72010,7431,12812,5216,0,1478,11975,5296,17816,857,0,1718,2891,0,151,0,43587517,28.3,14485974,25.7,28.3,29.5
464
  2012-10-04,138228,1057,70715,7209,12366,5181,0,1119,11946,5205,17873,943,0,1517,2950,0,147,0,43114186,31.0,14792184,27.9,31.0,27.5
465
  2012-10-05,123949,877,63547,6879,10667,4679,0,1222,11028,4490,15788,817,0,1238,2569,0,148,0,38440189,28.0,12739137,44.6,28.0,37.6
466
- 2012-10-06,86384,566,47501,4076,5975,2353,0,482,7800,3178,11405,437,0,782,1740,0,89,0,25682726,22.8,8702141,34.5,22.8,0.0
 
 
463
  2012-10-03,140535,884,72010,7431,12812,5216,0,1478,11975,5296,17816,857,0,1718,2891,0,151,0,43587517,28.3,14485974,25.7,28.3,29.5
464
  2012-10-04,138228,1057,70715,7209,12366,5181,0,1119,11946,5205,17873,943,0,1517,2950,0,147,0,43114186,31.0,14792184,27.9,31.0,27.5
465
  2012-10-05,123949,877,63547,6879,10667,4679,0,1222,11028,4490,15788,817,0,1238,2569,0,148,0,38440189,28.0,12739137,44.6,28.0,37.6
466
+ 2012-10-06,86384,566,47501,4076,5975,2353,0,482,7800,3178,11405,437,0,782,1740,0,89,0,25682726,22.8,8702141,34.5,22.8,26.4
467
+ 2012-10-07,87933,592,47667,4272,6253,2500,0,540,8729,2986,11408,492,0,701,1718,0,75,0,26403617,27.5,9274202,25.2,27.5,0.0