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

Add 2013-05-17 — 202.8K events, 11 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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-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
 
@@ -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** — 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,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 | 888,564 | 2029 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
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,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
- 2013 ██████████████████████░░░░░░░░ 12.5M
157
  ```
158
 
159
 
@@ -162,7 +162,7 @@ duckdb.sql("""
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 █████████████████████��████████ 1.9M
165
- 2013 ██████████████████████░░░░░░░░ 1.4M
166
  ```
167
 
168
 
@@ -171,7 +171,7 @@ duckdb.sql("""
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
- 2013 █████████████████░░░░░░░░░░░░░ 898.8K
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,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
 
 
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-17** (662 days), totaling **73,020,544 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
 
 
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** — 890,623 events in 2034 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.2K
78
  01:00 ██████████████████████████████ 272.6K
79
  02:00 █████████████████████████████░ 271.4K
80
+ 03:00 ████████████░░░░░░░░░░░░░░░░░░ 111.4K
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 | 890,623 | 2034 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 █████████████████████░░░░░░░░░ 24.7M
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 | 128 | 24,667,559 | 192,715 | 7.5 GB | 2.3 GB | 1h17m | 3h17m | 1h43m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
+ 2013 ██████████████████████░░░░░░░░ 12.6M
157
  ```
158
 
159
 
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 █████████████████████��████████ 1.9M
165
+ 2013 ██████████████████████░░░░░░░░ 1.5M
166
  ```
167
 
168
 
 
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
+ 2013 █████████████████░░░░░░░░░░░░░ 907.0K
175
  ```
176
 
177
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 35,761,651 | 49.0% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,129,179 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 6,114,541 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 2,816,128 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 454,361 | 0.6% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 7,008,636 | 9.6% | Repository stars |
573
+ | `forks` | ForkEvent | 2,508,824 | 3.4% | Repository forks |
574
+ | `creates` | CreateEvent | 10,337,098 | 14.2% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 588,771 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 772,382 | 1.1% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,386,447 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 65,929 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/05/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40b7a8482690a1a8646786e215eaf480256eb0ac151558fe44b33136009bc162
3
+ size 69253
data/creates/2013/05/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31d10768a2efc7da6faa5b2dd431ffb2826b245dfebeb897812cc24874c7f231
3
+ size 883063
data/deletes/2013/05/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48829f3485bc3d13e0d67ceac1b160ce2abf007bc775e220811f0d3e5b0df3cb
3
+ size 56759
data/forks/2013/05/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f80056250ba6a6e0ead0211502660873cd436294182a0e24564141fce13c699f
3
+ size 192379
data/issue_comments/2013/05/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92f9c24a33dc89179e7b88a0504f0a1be41235622cc32c5a74af5d287055d516
3
+ size 422653
data/issues/2013/05/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa68821a0a56fa46316f5c6818a1dd2e2cb90fb865c0747d9584c5fca828154d
3
+ size 268516
data/public_events/2013/05/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5019a1404799656fe6b3eb7ed01d52429549c791f2b6f96e9a60a668ae9fbe6c
3
+ size 8798
data/pull_requests/2013/05/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1784e428b0b149f16ff665e24e32fc2bf0e7a6b418bc8b971c03ff459060575
3
+ size 1475176
data/pushes/2013/05/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c2d06ed0ee962954c1129e6ccf82cbfcbf0e0f8bf277e4584336ee4a15e4ee5
3
+ size 19020132
data/stars/2013/05/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3090d541947fdcbf7f1207b03ee35d9a14792f039d43ba6b9fa242374b7789fc
3
+ size 417150
data/wiki_pages/2013/05/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bee0e95cb1a98e6679e8803bfaff84a5a52bebfa7df26ce1aaedac319867394b
3
+ size 229342
stats.csv CHANGED
@@ -659,4 +659,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
 
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,44.8
663
+ 2013-05-17,202817,941,107241,10281,17559,8198,0,2148,18930,7076,23454,1638,0,2023,3136,0,192,0,74020045,53.3,23043221,42.4,53.3,0.0