tamnd commited on
Commit
3107f8e
·
verified ·
1 Parent(s): ffcb33c

Add 2012-11-06 — 157.2K 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-11-05** (495 days), totaling **42,912,140 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 10.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.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
 
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** — 197,319 events in 324 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 197.3K
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 | 197,319 | 324 |
107
 
108
 
109
  ### Live event schema
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ██████████████░░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 28.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 | 252 | 28,815,996 | 114,349 | 7.6 GB | 2.7 GB | 1h55m | 2h36m | 2h25m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████░░░░░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 13.7M
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 | 20,372,012 | 47.5% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,298,430 | 5.4% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,332,700 | 7.8% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,725,568 | 4.0% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 192,888 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 4,181,540 | 9.7% | Repository stars |
567
- | `forks` | ForkEvent | 1,368,138 | 3.2% | Repository forks |
568
- | `creates` | CreateEvent | 6,857,707 | 16.0% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 354,255 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 478,850 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 834,010 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
- | `public_events` | PublicEvent | 38,689 | 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-11-06** (496 days), totaling **43,069,317 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 10.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.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
 
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** — 205,289 events in 329 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 205.3K
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 | 205,289 | 329 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ██████████████░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 29.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 | 253 | 28,973,173 | 114,518 | 7.6 GB | 2.7 GB | 1h56m | 2h36m | 2h26m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ██████████████░░░░░░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 13.8M
154
  ```
155
 
156
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 20,453,746 | 47.5% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,306,258 | 5.4% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,345,788 | 7.8% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,731,361 | 4.0% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 194,689 | 0.5% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 4,196,002 | 9.7% | Repository stars |
567
+ | `forks` | ForkEvent | 1,374,413 | 3.2% | Repository forks |
568
+ | `creates` | CreateEvent | 6,876,216 | 16.0% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 355,284 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 480,692 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 837,479 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 38,805 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1af535fb5ec18aea3aa7e0ea0b78dce9bbd6a16494d2bbf86ee8e7b39619bb61
3
+ size 72613
data/creates/2012/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:211c8c4ad1c32df9a672384ad058ed66e5097c6bb185607edca41f688190bbfe
3
+ size 656787
data/deletes/2012/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00b61fad6ccb3889d37a4136112941065f8289e73afa4caf84720e1d9fde07a6
3
+ size 33890
data/forks/2012/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6cdd9a5eb2bd6fde1ff50b0f8717935db7585831d8d242e2bf1e838c372ad82e
3
+ size 168030
data/issue_comments/2012/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe2bbe24bda8978e69f8992b783dfc652622630ae577495c864dc8d99d671179
3
+ size 330851
data/issues/2012/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb250505930b2abb0d1045b205fd482089d6783af49773b34bfdb831db905b65
3
+ size 205107
data/public_events/2012/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95e829f79335cd840fed980f7082af9db9282986ddc5d21fdccd3ab25c37165f
3
+ size 6335
data/pull_requests/2012/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e0f51943d35efaa43806af58aba671c76e49533b00c848d7f4b681795382812
3
+ size 1059921
data/pushes/2012/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7fd9fae576a00a8e74d86de8d370ba28d0bd8c4852ba0f7e6a6cdff2a7a2e7c
3
+ size 12768075
data/stars/2012/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:676a12190cfc99825c5079ed6f8b4eec421ee4658de689f58502d5717f33bb39
3
+ size 319382
data/wiki_pages/2012/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1673be3d2474508b88d3c407837a66137b5cb6757fe48ff420c8c824534051b3
3
+ size 185403
stats.csv CHANGED
@@ -493,4 +493,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
493
  2012-11-02,133633,958,68668,7064,11984,5031,0,1198,12075,5086,16256,961,0,1444,2785,0,123,0,40594958,28.1,13502031,25.9,28.1,36.0
494
  2012-11-03,96330,717,52867,5145,6485,2765,0,422,8206,3771,12570,569,0,813,1913,0,87,0,28126794,21.5,9742137,35.6,21.5,30.8
495
  2012-11-04,113737,830,63971,5133,7465,3111,0,742,10024,4215,13997,597,0,1018,2541,0,93,0,34019135,18.6,11929761,43.8,18.6,30.9
496
- 2012-11-05,157801,1327,82949,8233,13599,5556,0,1614,13888,5956,18464,893,0,1745,3436,0,141,0,48531086,27.2,16804681,36.5,27.2,0.0
 
 
493
  2012-11-02,133633,958,68668,7064,11984,5031,0,1198,12075,5086,16256,961,0,1444,2785,0,123,0,40594958,28.1,13502031,25.9,28.1,36.0
494
  2012-11-03,96330,717,52867,5145,6485,2765,0,422,8206,3771,12570,569,0,813,1913,0,87,0,28126794,21.5,9742137,35.6,21.5,30.8
495
  2012-11-04,113737,830,63971,5133,7465,3111,0,742,10024,4215,13997,597,0,1018,2541,0,93,0,34019135,18.6,11929761,43.8,18.6,30.9
496
+ 2012-11-05,157801,1327,82949,8233,13599,5556,0,1614,13888,5956,18464,893,0,1745,3436,0,141,0,48531086,27.2,16804681,36.5,27.2,38.3
497
+ 2012-11-06,157177,1231,81734,7828,13088,5793,0,1801,14462,6275,18509,1029,0,1842,3469,0,116,0,48338231,28.0,15806394,32.2,28.0,0.0