tamnd commited on
Commit
ae633d3
·
verified ·
1 Parent(s): a8ba645

Add 2013-06-09 — 154.7K 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 **2013-06-08** (684 days), totaling **77,451,141 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 20.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.3 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** — 966,326 events in 2236 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.2K
@@ -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 | 966,326 | 2236 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
- 2013 █████████████████████████░░░░░ 29.1M
142
  ```
143
 
144
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
145
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
146
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
147
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
148
- | 2013 | 150 | 29,098,156 | 193,987 | 8.9 GB | 2.8 GB | 1h31m | 3h41m | 2h00m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
- 2013 ███████████████████████████░░░ 14.9M
157
  ```
158
 
159
 
@@ -180,7 +180,7 @@ duckdb.sql("""
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
- 2013 █████████████████████████░░░░░ 2.7M
184
  ```
185
 
186
 
@@ -564,19 +564,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 38,085,205 | 49.2% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,385,549 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 6,508,919 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 2,985,960 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 494,416 | 0.6% | Line-level PR comments |
572
- | `stars` | WatchEvent | 7,420,253 | 9.6% | Repository stars |
573
- | `forks` | ForkEvent | 2,669,113 | 3.4% | Repository forks |
574
- | `creates` | CreateEvent | 10,838,386 | 14.0% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 624,836 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 812,492 | 1.0% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 1,458,002 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
- | `public_events` | PublicEvent | 70,058 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
 
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 **2013-06-09** (685 days), totaling **77,605,827 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 20.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.3 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** — 966,340 events in 2242 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.2K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 966,340 | 2242 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 █████████████████████████░░░░░ 29.3M
142
  ```
143
 
144
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
145
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
146
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
147
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
148
+ | 2013 | 151 | 29,252,842 | 193,727 | 8.9 GB | 2.8 GB | 1h32m | 3h42m | 2h00m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
+ 2013 ███████████████████████████░░░ 15.0M
157
  ```
158
 
159
 
 
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
+ 2013 █████████████████████████░░░░░ 2.8M
184
  ```
185
 
186
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 38,169,769 | 49.2% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,395,127 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 6,520,577 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 2,990,802 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 495,313 | 0.6% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 7,434,237 | 9.6% | Repository stars |
573
+ | `forks` | ForkEvent | 2,674,590 | 3.4% | Repository forks |
574
+ | `creates` | CreateEvent | 10,856,001 | 14.0% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 625,934 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 814,023 | 1.0% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,460,764 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 70,177 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/06/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57930a4cf5af72ded67b4dd49129ba2a90602be1ecd7eb5ab5ef865ad078d9fe
3
+ size 54024
data/creates/2013/06/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d6c414277ad51bee3c1c23b89961adae1c198c7f5fdde09b739ab6c51d36ed3
3
+ size 647161
data/deletes/2013/06/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd4f91159d77162a1fe4cfaf481387614e442a6781d23f8809044dca2a6c0034
3
+ size 38490
data/forks/2013/06/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e4ea7ee98b50265677c2a8bbd3b493d74b5c8ca1a6c31781d405d09e79994d4
3
+ size 150265
data/issue_comments/2013/06/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7c52d908560d3bcee48e0e3fb952f51eca85bd23498fd20fb9af8f975612b36
3
+ size 281582
data/issues/2013/06/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5895cf7e1acaf9a493d9846fb686d8673fe21761b6d0c51e804fc4560f5b2ed
3
+ size 229477
data/public_events/2013/06/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8f433662cca81cad884761569447a8402eb0c44f7a19e378e0755d22a0b6e11
3
+ size 6425
data/pull_requests/2013/06/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4cc9d681bf9b06539daaa8178f6f99d936519c0a2f6b4f1f1f8e444d049a977b
3
+ size 934489
data/pushes/2013/06/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baa21b9b88c176d58461c5a16e05755c1bb1e0dab77a46605cffa65883253072
3
+ size 12513239
data/stars/2013/06/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4cb1a4090ebab84a5647e36fbed98865d8ddc62a5190e262b07c5d1e776a8db
3
+ size 321220
data/wiki_pages/2013/06/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bae17d1e934e85599100fcb14bcbdfdb7b1e82679dce2d9de51b1819e6dc153
3
+ size 204268
stats.csv CHANGED
@@ -682,4 +682,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
682
  2013-06-05,236033,1137,121524,12370,21422,9610,0,2332,23326,8693,27306,2045,0,2330,3705,0,233,0,77931235,74.7,23950839,50.4,74.7,54.2
683
  2013-06-06,235936,1195,122056,13117,21343,9650,0,2580,21692,8450,28100,1870,0,2114,3583,0,186,0,78527595,89.6,24392068,37.3,89.6,31.0
684
  2013-06-07,207055,1043,108312,10637,18478,8534,0,2055,19152,8071,23246,1669,0,1984,3679,0,195,0,69154267,119.0,21554542,35.8,119.0,52.0
685
- 2013-06-08,140327,615,75400,8287,10629,4422,0,887,13806,5240,16385,1021,0,1062,2461,0,112,0,43269845,75.6,13698867,37.5,75.6,0.0
 
 
682
  2013-06-05,236033,1137,121524,12370,21422,9610,0,2332,23326,8693,27306,2045,0,2330,3705,0,233,0,77931235,74.7,23950839,50.4,74.7,54.2
683
  2013-06-06,235936,1195,122056,13117,21343,9650,0,2580,21692,8450,28100,1870,0,2114,3583,0,186,0,78527595,89.6,24392068,37.3,89.6,31.0
684
  2013-06-07,207055,1043,108312,10637,18478,8534,0,2055,19152,8071,23246,1669,0,1984,3679,0,195,0,69154267,119.0,21554542,35.8,119.0,52.0
685
+ 2013-06-08,140327,615,75400,8287,10629,4422,0,887,13806,5240,16385,1021,0,1062,2461,0,112,0,43269845,75.6,13698867,37.5,75.6,33.6
686
+ 2013-06-09,154686,561,84564,9578,11658,4842,0,897,13984,5477,17615,1098,0,1531,2762,0,119,0,48171236,61.5,15380640,31.3,61.5,0.0