tamnd commited on
Commit
71963b9
·
verified ·
1 Parent(s): 08a87fa

Add 2013-12-15 — 224.0K 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-12-14** (861 days), totaling **119,091,003 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 33.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.2 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
 
@@ -722,14 +722,14 @@ duckdb.sql("""
722
  ```
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ██████████████░░░░░░░░░░░░░░░░ 34.3M
725
- 2013 ██████████████████████████████ 70.7M
726
  ```
727
 
728
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
729
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
730
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
731
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
732
- | 2013 | 327 | 70,738,018 | 216,324 | 21.6 GB | 6.7 GB | 3h17m | 10h20m | 4h16m |
733
 
734
 
735
  ### Pushes per year
@@ -737,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 36.2M
741
  ```
742
 
743
 
@@ -1148,20 +1148,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
- | `pushes` | PushEvent | 59,345,090 | 49.8% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,748,918 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 10,218,397 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,659,239 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 931,630 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 11,246,398 | 9.4% | Repository stars |
1157
- | `forks` | ForkEvent | 4,288,935 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 15,646,297 | 13.1% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,148,795 | 1.0% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 69,042 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,180,793 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,192,043 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 108,446 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
 
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-12-15** (862 days), totaling **119,315,016 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 33.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.3 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
 
 
722
  ```
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ██████████████░░░░░░░░░░░░░░░░ 34.3M
725
+ 2013 ██████████████████████████████ 71.0M
726
  ```
727
 
728
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
729
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
730
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
731
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
732
+ | 2013 | 328 | 70,962,031 | 216,347 | 21.6 GB | 6.7 GB | 3h18m | 10h22m | 4h17m |
733
 
734
 
735
  ### Pushes per year
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 36.3M
741
  ```
742
 
743
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 59,464,432 | 49.8% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,760,897 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 10,241,571 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,666,656 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 933,248 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 11,267,108 | 9.4% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,296,602 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 15,669,525 | 13.1% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,151,786 | 1.0% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 69,454 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,182,385 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,194,894 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 108,626 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/12/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:612e771c9d7f9b5ce030330d8c347e7ca495e516555e3718ba7bdc05d88ab843
3
+ size 59842
data/creates/2013/12/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42978195c123f53936680a7f5e4a4bb23558df0d0bf315f941011a118121ef48
3
+ size 822925
data/deletes/2013/12/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6170e690018a4bf6c0ed8f6edaa710a34659b705505b53dd423843dcfc3c4e3
3
+ size 83526
data/forks/2013/12/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:236dc9995a88e9356e134c192a61b027eb509a828cecd80666d8d6b283633ee2
3
+ size 205445
data/issue_comments/2013/12/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4890055d8deee84c19ba4da53025a04f32a51e0b4a0f4f8eace810b399b07051
3
+ size 428822
data/issues/2013/12/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3eb7f60cfa45a1c5e8d467fc9ac2444e2e757ef4804fc7dea78edab976c75687
3
+ size 280692
data/public_events/2013/12/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f9a83a445245c5005538826bdecb2ac2f7bdee3c5d06bee1c57f3e9a33483be
3
+ size 8254
data/pull_requests/2013/12/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c70d9a21ac9003757ff0c74639e49a582c25c6911507e64b127883057df7996
3
+ size 1348663
data/pushes/2013/12/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3d5a252fbbd9dc48a0d733ea1c5f753eb68cf1d9b7f02a99e3cc727a814c526
3
+ size 17395676
data/stars/2013/12/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1bd873c89c38a88b078c8be599e0d69ccc948d9fb71e3e8021eb710f28fe98e
3
+ size 454349
data/wiki_pages/2013/12/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83b79ed7a4ad087d2190db65c10c6a58c46924589866b0dafba1d5f7b3fccc4d
3
+ size 212439
stats.csv CHANGED
@@ -859,4 +859,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
859
  2013-12-11,313525,1634,160006,17647,31062,13877,0,3557,27991,11082,33618,5267,652,2806,4020,0,306,0,103605900,177.8,31970311,31.7,177.8,45.0
860
  2013-12-12,313542,1481,156247,18621,37023,13786,0,3673,27327,10687,31841,5118,546,2714,4132,0,346,0,101643375,176.0,30815549,33.7,176.0,42.3
861
  2013-12-13,265250,1400,137605,13805,23322,11908,0,2932,24661,9047,29514,4333,552,2343,3577,0,251,0,88271772,156.0,26972798,32.9,156.1,36.9
862
- 2013-12-14,206570,924,103414,12675,28621,6584,0,1289,17848,6673,21347,2805,322,1447,2474,0,147,0,58356651,108.9,18818094,26.4,108.9,0.0
 
 
859
  2013-12-11,313525,1634,160006,17647,31062,13877,0,3557,27991,11082,33618,5267,652,2806,4020,0,306,0,103605900,177.8,31970311,31.7,177.8,45.0
860
  2013-12-12,313542,1481,156247,18621,37023,13786,0,3673,27327,10687,31841,5118,546,2714,4132,0,346,0,101643375,176.0,30815549,33.7,176.0,42.3
861
  2013-12-13,265250,1400,137605,13805,23322,11908,0,2932,24661,9047,29514,4333,552,2343,3577,0,251,0,88271772,156.0,26972798,32.9,156.1,36.9
862
+ 2013-12-14,206570,924,103414,12675,28621,6584,0,1289,17848,6673,21347,2805,322,1447,2474,0,147,0,58356651,108.9,18818094,26.4,108.9,47.7
863
+ 2013-12-15,224013,852,119342,11979,23174,7417,0,1618,20710,7667,23228,2991,412,1592,2851,0,180,0,66913255,124.6,21300633,46.8,124.6,0.0