tamnd commited on
Commit
b22012f
·
verified ·
1 Parent(s): 5bb4ba6

Add 2013-06-30 — 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 **2013-06-29** (705 days), totaling **81,792,617 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 22.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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
 
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** — 1,032,091 events in 2433 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
@@ -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 | 1,032,091 | 2433 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
- 2013 █████████████████████████████░ 33.4M
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 | 171 | 33,439,632 | 195,553 | 10.2 GB | 3.2 GB | 1h44m | 4h18m | 2h15m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ████████████████████████████░░ 16.5M
156
- 2013 ██████████████████████████████ 17.1M
157
  ```
158
 
159
 
@@ -180,7 +180,7 @@ duckdb.sql("""
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
- 2013 ████████████████████████████░ 3.1M
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 | 40,248,281 | 49.2% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,648,551 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 6,891,362 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,149,708 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 537,989 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 7,806,960 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 2,831,659 | 3.5% | Repository forks |
574
- | `creates` | CreateEvent | 11,371,218 | 13.9% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 661,077 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 852,502 | 1.0% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 1,602,186 | 2.0% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
- | `public_events` | PublicEvent | 74,615 | 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-30** (706 days), totaling **81,949,822 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 22.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.8 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** — 1,032,104 events in 2438 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 1,032,104 | 2438 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 █████████████████████████████░ 33.6M
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 | 172 | 33,596,837 | 195,330 | 10.2 GB | 3.2 GB | 1h44m | 4h19m | 2h16m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ████████████████████████████░░ 16.5M
156
+ 2013 ██████████████████████████████ 17.2M
157
  ```
158
 
159
 
 
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
+ 2013 ████████████████████████████░ 3.2M
184
  ```
185
 
186
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 40,328,435 | 49.2% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,656,469 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 6,903,281 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,154,440 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 538,825 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 7,822,578 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 2,838,106 | 3.5% | Repository forks |
574
+ | `creates` | CreateEvent | 11,393,556 | 13.9% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 662,223 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 853,646 | 1.0% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,606,474 | 2.0% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 74,784 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e66d08f532b8b473d9847e9faf3aeff2c16a319a3f10863a35a2d204cfe486fd
3
+ size 46101
data/creates/2013/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fde0f4e0043589cda79cbd6bb262980d8bb66d7c67aeb787a1c783f945624786
3
+ size 833691
data/deletes/2013/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:285777c16e7c4ae3c67e4dea980ac38e39c4dd637bf583e6895c6623d38395b5
3
+ size 38642
data/forks/2013/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2887ca8fb7dcad1b7cba08be396aef7212e91a5fb189ffcb3efabe44a2e6215d
3
+ size 199508
data/issue_comments/2013/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efaa09a27b2d0bfc7e3f5d0b5bc8756cea6787be59ea9fb841575587addd051c
3
+ size 285163
data/issues/2013/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:775b7017d25b16b507d4f45c49e2bb903613e0c9aaed053aad587f1aa4992e3d
3
+ size 200487
data/public_events/2013/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b78418436924dcdda2bbb5f4ac191980f59a6029a895cc86fe62c1d7ba51d947
3
+ size 7547
data/pull_requests/2013/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe3496dd119df313b81df71d1b3be79e4ec335e81eaff92f24d08310c5f8dc86
3
+ size 923850
data/pushes/2013/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3aa345e0ab04a7efb36044a9ad5dc7ae0f56ebcf245b1c06c408ce3a1a5c5f3
3
+ size 12419586
data/stars/2013/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78fbff3cd1685b7f1cd5a90b433a3cf01fc3f9bc66b1ba93eee1053529db95b0
3
+ size 349527
data/wiki_pages/2013/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a3c10c107650be27e4862266989641c648b35099245fbc61afebcf1a77a4076
3
+ size 317781
stats.csv CHANGED
@@ -703,4 +703,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
703
  2013-06-26,250739,1081,120887,12424,20934,10088,0,2909,22495,9872,31355,2146,0,2440,13846,0,262,0,82029967,146.4,24953835,29.2,146.4,32.0
704
  2013-06-27,257129,1002,117286,20223,27645,9791,0,2903,22079,9549,31094,1983,0,2545,10796,0,233,0,80606951,146.3,24423602,30.0,146.3,44.4
705
  2013-06-28,212636,913,103559,11387,17559,8077,0,2249,19921,9085,30374,1603,0,1795,5888,0,226,0,68451375,110.1,21631746,43.9,110.1,36.3
706
- 2013-06-29,142508,584,73195,6891,10584,4368,0,948,14104,5974,19288,1049,0,899,4484,0,140,0,43887939,65.2,14002459,33.6,65.2,0.0
 
 
703
  2013-06-26,250739,1081,120887,12424,20934,10088,0,2909,22495,9872,31355,2146,0,2440,13846,0,262,0,82029967,146.4,24953835,29.2,146.4,32.0
704
  2013-06-27,257129,1002,117286,20223,27645,9791,0,2903,22079,9549,31094,1983,0,2545,10796,0,233,0,80606951,146.3,24423602,30.0,146.3,44.4
705
  2013-06-28,212636,913,103559,11387,17559,8077,0,2249,19921,9085,30374,1603,0,1795,5888,0,226,0,68451375,110.1,21631746,43.9,110.1,36.3
706
+ 2013-06-29,142508,584,73195,6891,10584,4368,0,948,14104,5974,19288,1049,0,899,4484,0,140,0,43887939,65.2,14002459,33.6,65.2,36.5
707
+ 2013-06-30,157205,496,80154,7918,11919,4732,0,836,15618,6447,22338,1146,0,1144,4288,0,169,0,47458415,75.3,15621883,27.0,75.3,0.0