tamnd commited on
Commit
c49719f
·
verified ·
1 Parent(s): c888300

Add 2013-05-16 — 215.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-05-15** (660 days), totaling **72,602,576 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 19.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.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,13 +71,13 @@ 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** — 880,717 events in 2010 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.2K
78
  01:00 ██████████████████████████████ 272.6K
79
  02:00 █████████████████████████████░ 271.4K
80
- 03:00 ███████████░░░░░░░░░░░░░░░░░░ 101.5K
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06: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 | 880,717 | 2010 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
- 2013 █████████████████████░░░░░░░░░ 24.2M
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 | 126 | 24,249,591 | 192,457 | 7.4 GB | 2.3 GB | 1h15m | 3h15m | 1h41m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
- 2013 ██████████████████████░░░░░░░░ 12.4M
157
  ```
158
 
159
 
@@ -171,7 +171,7 @@ duckdb.sql("""
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
- 2013 █████████████████░░░░░░░░░░░░░ 890.1K
175
  ```
176
 
177
 
@@ -564,19 +564,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 35,542,039 | 49.0% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,107,715 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 6,077,389 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 2,799,236 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 449,850 | 0.6% | Line-level PR comments |
572
- | `stars` | WatchEvent | 6,969,353 | 9.6% | Repository stars |
573
- | `forks` | ForkEvent | 2,494,141 | 3.4% | Repository forks |
574
- | `creates` | CreateEvent | 10,289,142 | 14.2% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 585,414 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 768,198 | 1.1% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 1,379,987 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
- | `public_events` | PublicEvent | 65,538 | 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-05-16** (661 days), totaling **72,817,727 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 19.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.9 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** — 888,564 events in 2029 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.2K
78
  01:00 ██████████████████████████████ 272.6K
79
  02:00 █████████████████████████████░ 271.4K
80
+ 03:00 ███████████░░░░░░░░░░░░░░░░░░ 109.3K
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 888,564 | 2029 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 █████████████████████░░░░░░░░░ 24.5M
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 | 127 | 24,464,742 | 192,635 | 7.4 GB | 2.3 GB | 1h16m | 3h16m | 1h43m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
+ 2013 ██████████████████████░░░░░░░░ 12.5M
157
  ```
158
 
159
 
 
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
+ 2013 █████████████████░░░░░░░░░░░░░ 898.8K
175
  ```
176
 
177
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 35,654,410 | 49.0% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,118,898 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 6,096,982 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 2,807,930 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 452,213 | 0.6% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 6,989,706 | 9.6% | Repository stars |
573
+ | `forks` | ForkEvent | 2,501,748 | 3.4% | Repository forks |
574
+ | `creates` | CreateEvent | 10,313,644 | 14.2% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 587,133 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 770,359 | 1.1% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,383,311 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 65,737 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/05/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a783a4ac13aea2e611f155259684e2f01d64147a469032b2b7461d69b5f3e52
3
+ size 76057
data/creates/2013/05/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a8854824038b4fee2c47b40c96ca6678b6a923271d4accb86e6e33599e611c3
3
+ size 884831
data/deletes/2013/05/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b3cbd8cd7f2a23a1156f746ed3e7c5e5a32d664ad01775af8cdcd1812ec8c7e
3
+ size 58995
data/forks/2013/05/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b8aeed4b811f90e5a0d9a1f5af6cf12d1c295d8a77f525f2454a91a6c077279
3
+ size 205590
data/issue_comments/2013/05/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf23d1436b51b66348843ba10b956d8b245712ea75e2c1f253dd0e2173804a6f
3
+ size 469340
data/issues/2013/05/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7444a76512c48cd2654edf33bd483aeefb06ebfee0614bf7a440539090083b7
3
+ size 293513
data/public_events/2013/05/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bd2ef9c16f11437a7a230f725f3c45933d5135111e03fe9b95251d6177b6d47
3
+ size 9166
data/pull_requests/2013/05/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a32b9f187b2b7d80129212b760691b45c4d03ab723fc802e6aaefb0e0e195dc7
3
+ size 1554023
data/pushes/2013/05/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fd96db381be70c09a645f7c6e685ec5dec77535ca4c4d6fc43aa247daffb1d2
3
+ size 18604253
data/stars/2013/05/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a56d2460c961bbc6fd430776b405f7b4ac83b10cc766ecc68ecb0f7364121307
3
+ size 468477
data/wiki_pages/2013/05/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e815e324d32ddb980afd6e140c5743ea92c1ee52f7ddeccd481a1d079b068c0a
3
+ size 246573
stats.csv CHANGED
@@ -658,4 +658,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
658
  2013-05-12,155316,627,86060,7850,11936,4599,0,845,15063,5555,17234,1211,0,1151,3051,0,134,0,48252777,26.1,15581698,50.0,26.1,50.3
659
  2013-05-13,219981,1232,113605,12043,21421,8736,0,2095,21580,7848,23391,1924,0,2159,3718,0,229,0,72703417,38.6,22769939,71.7,38.6,102.2
660
  2013-05-14,226870,1230,119333,12301,20366,8954,0,2309,20550,8217,25152,1836,0,2488,3924,0,210,0,77012730,34.0,23751386,27.1,34.0,75.6
661
- 2013-05-15,227361,1177,118857,11565,20710,9524,0,2313,20547,8436,25861,1872,0,2382,3894,0,223,0,75675872,40.9,23433645,26.3,40.9,0.0
 
 
658
  2013-05-12,155316,627,86060,7850,11936,4599,0,845,15063,5555,17234,1211,0,1151,3051,0,134,0,48252777,26.1,15581698,50.0,26.1,50.3
659
  2013-05-13,219981,1232,113605,12043,21421,8736,0,2095,21580,7848,23391,1924,0,2159,3718,0,229,0,72703417,38.6,22769939,71.7,38.6,102.2
660
  2013-05-14,226870,1230,119333,12301,20366,8954,0,2309,20550,8217,25152,1836,0,2488,3924,0,210,0,77012730,34.0,23751386,27.1,34.0,75.6
661
+ 2013-05-15,227361,1177,118857,11565,20710,9524,0,2313,20547,8436,25861,1872,0,2382,3894,0,223,0,75675872,40.9,23433645,26.3,40.9,98.5
662
+ 2013-05-16,215151,1082,112371,11183,19593,8694,0,2363,20353,7607,24502,1719,0,2161,3324,0,199,0,73420371,54.3,22870818,55.9,54.3,0.0