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

Add 2012-09-19 — 142.1K 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-18** (447 days), totaling **36,528,562 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.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
 
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,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** — 88,209 events in 91 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 88.2K
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 | 88,209 | 91 |
107
 
108
 
109
  ### Live event schema
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ██████████████████░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 22.4M
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 | 204 | 22,432,418 | 109,962 | 5.8 GB | 2.1 GB | 1h30m | 2h10m | 1h56m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ███████████████████░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 10.4M
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,116,848 | 46.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 1,918,539 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,759,423 | 7.6% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,507,426 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 140,210 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,619,904 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,131,965 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,037,993 | 16.5% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 314,947 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 415,551 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 701,622 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 32,616 | 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-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
 
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** — 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
  | 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
 
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
 
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
 
data/commit_comments/2012/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2985eae4ef8705a19faf971b048cf1cc02cc05476ec1e8e9cd56c9e9a6af72fc
3
+ size 53156
data/creates/2012/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbe44d02b1d577823cd711d39dabfe2ccecbff02bd13eb7dfdf1972095831359
3
+ size 565697
data/deletes/2012/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b95e70d31a021671f824862f27713ead48c75b640e61a6c2c4c2414e89a36fd9
3
+ size 30645
data/forks/2012/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db360b5e5d28e559a2580dad2bd12d550d3ab338b299b3c383ee3e3e7004eb3a
3
+ size 124746
data/issue_comments/2012/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f7855b4b79b0be8027d0b3b1fe7bffad2fe80edbefa82f5ea935f94ae83a09b
3
+ size 278437
data/issues/2012/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8842d65453be7913b313b6e14c0e1f6fffa1a9db82f45e10aecf9f60f6e9d678
3
+ size 182350
data/public_events/2012/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7ac655c96f0a2ed74b464acfec0634c19a5867dee075ec299b67524efd08ad7
3
+ size 6513
data/pull_requests/2012/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb09d96e4a4dba077370ffe284cb15e94209e89d45222a3ad19264b0d07424bb
3
+ size 881682
data/pushes/2012/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0190946b8194f851a9171805e1e53df4965e0c2eb4640724f9e4d4f1c56ec77
3
+ size 11318185
data/stars/2012/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8112e221ab1ef69b24d5841b606aadb902d82fb69b3e42e13dd2340d057733b
3
+ size 239554
data/wiki_pages/2012/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7d876c83d2e27967eaf012d17005fe461e616468d457d64b188c8d2019532b7
3
+ size 149498
stats.csv CHANGED
@@ -445,4 +445,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,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,0.0
 
 
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,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