tamnd commited on
Commit
b2badc1
·
verified ·
1 Parent(s): 3a43ccc

Add 2013-01-11 — 167.9K 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-01-10** (544 days), totaling **49,864,964 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 12.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.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
 
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
- 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.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 | 10 | 1,511,979 | 151,197 | 469.3 MB | 141.9 MB | 5m09s | 8m13s | 5m50s |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
- 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 758.5K
157
  ```
158
 
159
 
@@ -162,7 +162,7 @@ duckdb.sql("""
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ██████████████████████████████ 1.9M
165
- 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 87.5K
166
  ```
167
 
168
 
@@ -171,7 +171,7 @@ duckdb.sql("""
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
- 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 52.9K
175
  ```
176
 
177
 
@@ -180,7 +180,7 @@ duckdb.sql("""
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
- 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149.4K
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 | 23,926,942 | 48.0% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 2,761,569 | 5.5% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 3,926,922 | 7.9% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 1,961,973 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 251,289 | 0.5% | Line-level PR comments |
572
- | `stars` | WatchEvent | 4,821,231 | 9.7% | Repository stars |
573
- | `forks` | ForkEvent | 1,637,740 | 3.3% | Repository forks |
574
- | `creates` | CreateEvent | 7,677,750 | 15.4% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 402,870 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 550,115 | 1.1% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 979,903 | 2.0% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
579
- | `public_events` | PublicEvent | 45,072 | 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-01-12** (546 days), totaling **50,153,615 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 12.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.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
 
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
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 | 12 | 1,800,630 | 150,052 | 559.0 MB | 169.3 MB | 6m11s | 10m44s | 6m16s |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
+ 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 904.9K
157
  ```
158
 
159
 
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ██████████████████████████████ 1.9M
165
+ 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 109.2K
166
  ```
167
 
168
 
 
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
+ 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 63.2K
175
  ```
176
 
177
 
 
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
+ 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 174.8K
184
  ```
185
 
186
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 24,073,364 | 48.0% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 2,783,343 | 5.5% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 3,952,461 | 7.9% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 1,972,318 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 253,583 | 0.5% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 4,846,680 | 9.7% | Repository stars |
573
+ | `forks` | ForkEvent | 1,648,921 | 3.3% | Repository forks |
574
+ | `creates` | CreateEvent | 7,710,656 | 15.4% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 405,051 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 552,952 | 1.1% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 985,620 | 2.0% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 45,337 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/01/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dfd007625ec43079fcfe8fa8565722001587a39107290c2ec0b21a43918f40d
3
+ size 62638
data/creates/2013/01/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a9dcae5e060c12fcee295c3106490f2e7cad03ad43868e65dab9fd859ac0cb0
3
+ size 691977
data/deletes/2013/01/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:208a1452563353b1cfcd56716dc9f0ab30d7fa8a4a576bc5777ce6e5022a4537
3
+ size 42823
data/forks/2013/01/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efc5547cfb6852ba02a7132211ddd06034e6d6da9457b2fc912dc619e3b99bdc
3
+ size 177508
data/issue_comments/2013/01/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28303ea6358cbdf1c94de1432757cc5d88b3865edc3570464e301c68a429b2ef
3
+ size 372910
data/issues/2013/01/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d59abfbce8067f1743673c2e798fca4cd8ae74cd6af4050bc573e747206cc9da
3
+ size 272302
data/public_events/2013/01/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d08a16a8e0ee66930df2a3b38e1fe04984e49f8d3f044fe88fcea8498ec0ad3
3
+ size 7848
data/pull_requests/2013/01/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d179bbf3de7515e76f56c5d33c8d171c8073a214690d6796e2a552e1d3c34402
3
+ size 1236423
data/pushes/2013/01/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81488366ad403ccd7a39785671b76bb8c1dc1b642e07510e78a8af26a176da75
3
+ size 13541827
data/stars/2013/01/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5cf000353d99cc690cd9ad77a8987da7a16e6aee3896aa4216b45e18f906633
3
+ size 350058
data/wiki_pages/2013/01/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:360084fff5639858a29a544d7af00fc40d649a36ac079c47958cfbf45d37389b
3
+ size 160639
stats.csv CHANGED
@@ -542,4 +542,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
542
  2013-01-07,171712,1079,85555,9409,16556,6388,0,1803,16806,6983,20196,1299,0,1860,3587,0,191,0,57517723,32.6,17356064,34.7,32.6,42.0
543
  2013-01-08,178666,1071,89946,10001,17261,6602,0,1375,17527,6954,20978,1464,0,1918,3397,0,172,0,59586924,47.9,17600305,28.2,47.9,43.1
544
  2013-01-09,179459,1026,89753,10583,18350,6935,0,1736,16839,7271,20196,1374,0,2018,3208,0,170,0,60077997,68.2,18002188,38.9,68.3,33.8
545
- 2013-01-10,184111,1246,91523,11809,19520,7215,0,1626,16129,7190,21141,1542,0,1826,3169,0,175,0,60786257,80.6,18046006,30.9,80.6,0.0
 
 
 
542
  2013-01-07,171712,1079,85555,9409,16556,6388,0,1803,16806,6983,20196,1299,0,1860,3587,0,191,0,57517723,32.6,17356064,34.7,32.6,42.0
543
  2013-01-08,178666,1071,89946,10001,17261,6602,0,1375,17527,6954,20978,1464,0,1918,3397,0,172,0,59586924,47.9,17600305,28.2,47.9,43.1
544
  2013-01-09,179459,1026,89753,10583,18350,6935,0,1736,16839,7271,20196,1374,0,2018,3208,0,170,0,60077997,68.2,18002188,38.9,68.3,33.8
545
+ 2013-01-10,184111,1246,91523,11809,19520,7215,0,1626,16129,7190,21141,1542,0,1826,3169,0,175,0,60786257,80.6,18046006,30.9,80.6,25.4
546
+ 2013-01-11,167858,1015,82633,14473,15506,6685,0,1516,14558,6512,18752,1272,0,1690,3083,0,163,0,55655751,87.4,16916953,36.9,87.4,0.0
547
+ 2013-01-12,120793,726,63789,7301,10033,3660,0,778,10891,4669,14154,909,0,1147,2634,0,102,0,38395043,63.2,11805185,25.3,63.2,0.0