tamnd commited on
Commit
c3cee3d
·
verified ·
1 Parent(s): 4ffbe82

Add 2013-10-13 — 190.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-10-12** (804 days), totaling **103,731,131 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 28.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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
 
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████░░░░░░░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 55.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 | 270 | 55,378,146 | 205,104 | 16.9 GB | 5.2 GB | 2h44m | 7h46m | 3h31m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████░░░░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 28.3M
157
  ```
158
 
159
 
@@ -170,7 +170,7 @@ duckdb.sql("""
170
 
171
  ```
172
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
- 2012 █████████████████████░░░░░░░░ 1.5M
174
  2013 ██████████████████████████████ 2.1M
175
  ```
176
 
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 51,475,295 | 49.6% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,870,187 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 8,843,690 | 8.5% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 4,006,496 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 771,011 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 9,845,670 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,728,456 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 13,943,758 | 13.4% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 887,229 | 0.9% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 40,341 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 1,046,357 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,961,584 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 94,602 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
 
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-10-13** (805 days), totaling **103,921,836 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 28.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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
 
 
138
  ```
139
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████░░░░░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 55.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 | 271 | 55,568,851 | 205,051 | 16.9 GB | 5.2 GB | 2h44m | 7h48m | 3h32m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████░░░░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 28.4M
157
  ```
158
 
159
 
 
170
 
171
  ```
172
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
+ 2012 █████████████████████░░░░░░░░ 1.5M
174
  2013 ██████████████████████████████ 2.1M
175
  ```
176
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 51,577,315 | 49.6% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,878,983 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,857,580 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 4,013,468 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 772,284 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,864,367 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,735,509 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 13,966,021 | 13.4% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 889,858 | 0.9% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 40,781 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 1,048,868 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,964,711 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 94,767 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/10/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75fbd1318b6468637868882d4b9b88b86b729674d6a6d9828f450e632e9a5498
3
+ size 61895
data/creates/2013/10/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c02feeaf7d7dc2cea5a9b24e915e8f2a540f1dac922a984c9dcca460c158cef0
3
+ size 816534
data/deletes/2013/10/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41db8d7a54c62d7f4109d0a68291c9c5db5dcff7fafa851a45c213353c9e221a
3
+ size 76503
data/forks/2013/10/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7dd3c62812381892462d30ecdbde7fa552e928bb600eb73b9539a97517e9fe58
3
+ size 192894
data/issue_comments/2013/10/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c2506a50c8dd59353e6f42724b13052fffb3b36949b971b683cd360f8b4ffc5
3
+ size 425992
data/issues/2013/10/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f893dbc9628a2351a02bc104fcc5322b48e494553cc89c0d657d3f3f570234d
3
+ size 228851
data/public_events/2013/10/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c08d1160f88cafb046a1ce1838151f885966913058fff4cc73b6e7103e77c59
3
+ size 7974
data/pull_requests/2013/10/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f2735cf6b608b42223a775d7f4636c30a7a2187cbe237fb282dffeb9b7a74e4
3
+ size 1262167
data/pushes/2013/10/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44a40515895961d4275e44ed59b3cfd844fa725a6498a198c0da26083c41bb71
3
+ size 16355607
data/stars/2013/10/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:226c4b8747fa1a138614d7f9be30f1462e0bbe953f63ffc3fe12403197f11bac
3
+ size 412251
data/wiki_pages/2013/10/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9b6aca8af1b25c8c7ecee55a6bfa1674c8bd7decbb0162f600241200f1824b6
3
+ size 229498
stats.csv CHANGED
@@ -802,4 +802,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
802
  2013-10-09,269335,1912,136451,13796,24061,12206,0,3366,23535,10224,31519,4768,597,2422,4245,0,233,0,90826290,173.7,27157669,35.2,173.7,37.1
803
  2013-10-10,274850,1775,136399,18101,28107,12164,0,3156,23149,9757,30586,4620,480,2449,3884,0,223,0,89962271,166.3,27713082,33.6,166.3,42.8
804
  2013-10-11,257305,1743,122891,18711,28549,10875,0,2620,24021,9398,27837,3878,449,2262,3846,0,225,0,82803354,148.3,25831355,43.3,148.3,50.3
805
- 2013-10-12,171077,1041,92637,7733,11538,6043,0,1134,17513,6540,19975,2470,322,1279,2709,0,143,0,53943695,94.8,17116235,35.3,94.8,0.0
 
 
802
  2013-10-09,269335,1912,136451,13796,24061,12206,0,3366,23535,10224,31519,4768,597,2422,4245,0,233,0,90826290,173.7,27157669,35.2,173.7,37.1
803
  2013-10-10,274850,1775,136399,18101,28107,12164,0,3156,23149,9757,30586,4620,480,2449,3884,0,223,0,89962271,166.3,27713082,33.6,166.3,42.8
804
  2013-10-11,257305,1743,122891,18711,28549,10875,0,2620,24021,9398,27837,3878,449,2262,3846,0,225,0,82803354,148.3,25831355,43.3,148.3,50.3
805
+ 2013-10-12,171077,1041,92637,7733,11538,6043,0,1134,17513,6540,19975,2470,322,1279,2709,0,143,0,53943695,94.8,17116235,35.3,94.8,42.5
806
+ 2013-10-13,190705,869,102020,8796,13890,6972,0,1273,18697,7053,22263,2629,440,2511,3127,0,165,0,60637331,105.1,20070166,44.1,105.1,0.0