tamnd commited on
Commit
210c889
·
verified ·
1 Parent(s): 3d02e89

Add 2013-12-29 — 187.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-12-28** (875 days), totaling **122,249,712 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 34.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.5 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 ██████████████████████████████ 73.9M
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 | 341 | 73,896,727 | 216,705 | 22.5 GB | 6.9 GB | 3h25m | 10h47m | 4h26m |
733
 
734
 
735
  ### Pushes per year
@@ -737,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 37.8M
741
  ```
742
 
743
 
@@ -754,7 +754,7 @@ duckdb.sql("""
754
 
755
  ```
756
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
757
- 2012 ███████████████░░░░░░░░░░░░░░ 1.5M
758
  2013 ██████████████████████████████ 2.9M
759
  ```
760
 
@@ -1148,20 +1148,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
- | `pushes` | PushEvent | 60,954,233 | 49.9% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,928,219 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 10,486,640 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,787,875 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 962,662 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 11,565,115 | 9.5% | Repository stars |
1157
- | `forks` | ForkEvent | 4,407,516 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 16,005,964 | 13.1% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,203,273 | 1.0% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 75,928 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,207,629 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,234,079 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 111,463 | 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-29** (876 days), totaling **122,437,366 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 34.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.5 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 ██████████████████████████████ 74.1M
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 | 342 | 74,084,381 | 216,620 | 22.5 GB | 7.0 GB | 3h25m | 10h49m | 4h27m |
733
 
734
 
735
  ### Pushes per year
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 37.9M
741
  ```
742
 
743
 
 
754
 
755
  ```
756
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
757
+ 2012 ███████████████░░░░░░░░░░░░░░ 1.5M
758
  2013 ██████████████████████████████ 2.9M
759
  ```
760
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 61,051,365 | 49.9% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,940,727 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 10,500,317 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,794,214 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 963,811 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 11,586,178 | 9.5% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,414,413 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 16,026,780 | 13.1% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,206,080 | 1.0% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 76,333 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,208,935 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,236,863 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 111,650 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7522aac7ed0562968d99dd0702424c137abe05c1f303dfe6fc78a1d092d36ce
3
+ size 50875
data/creates/2013/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c5c080349faecacc6a46c4d48b6f7e3eb55ff6ed552bfc041ea557e922bdee4
3
+ size 808797
data/deletes/2013/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36928874a6d2040780216e68b9ffb356cc62697a9d6f61917106cac040f91bdb
3
+ size 75943
data/forks/2013/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f19afa15b482dcd084e7776d8524919be7593660441f22ad956619166f7928e1
3
+ size 189028
data/issue_comments/2013/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bae4ce869099ffa5414e88efb148323a0a866acad761ece33a082913c248956
3
+ size 327139
data/issues/2013/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66009b88605e7be21caf89ccce2fcca09d2b114ff937d091098283cfd6ca91f0
3
+ size 276854
data/public_events/2013/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c74ab05691959e70de8f47c87c167cbfc9641b55f8f5050872cdab1e2051bd1c
3
+ size 8330
data/pull_requests/2013/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d607980f406db95828097e0f39b52400f5dba3c6839034fce2b5a60cbd2d1d3
3
+ size 1136331
data/pushes/2013/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39b50c6c74a49ea6085d0dd78219172935f0c16670298114230b9195eef3f8de
3
+ size 14002959
data/stars/2013/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a897427347f40fee01314189d9a951e9a5c1ba20dd5eb086380b03c169ac60d1
3
+ size 464605
data/wiki_pages/2013/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec8160bfe23107f66724ca6613d102bda776830e02186e2eae736fdb367a62c4
3
+ size 210564
stats.csv CHANGED
@@ -873,4 +873,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
873
  2013-12-25,150119,464,78048,7175,9499,5358,0,868,18344,6575,18371,1870,278,968,2204,0,97,0,44698489,69.2,13785271,25.9,69.2,37.6
874
  2013-12-26,198180,708,100134,11506,14888,7372,0,1805,22060,8318,23339,2953,414,1539,2988,0,156,0,60830562,100.9,18349059,27.2,100.9,51.7
875
  2013-12-27,202475,648,101731,12513,18196,8047,0,1673,19903,7854,23418,3476,474,1547,2791,0,204,0,62971265,109.4,19145782,28.8,109.4,42.1
876
- 2013-12-28,166645,511,88509,8706,12609,5529,0,1227,17925,6057,18744,2586,441,1298,2360,0,143,0,49904098,80.7,15331956,27.7,80.7,0.0
 
 
873
  2013-12-25,150119,464,78048,7175,9499,5358,0,868,18344,6575,18371,1870,278,968,2204,0,97,0,44698489,69.2,13785271,25.9,69.2,37.6
874
  2013-12-26,198180,708,100134,11506,14888,7372,0,1805,22060,8318,23339,2953,414,1539,2988,0,156,0,60830562,100.9,18349059,27.2,100.9,51.7
875
  2013-12-27,202475,648,101731,12513,18196,8047,0,1673,19903,7854,23418,3476,474,1547,2791,0,204,0,62971265,109.4,19145782,28.8,109.4,42.1
876
+ 2013-12-28,166645,511,88509,8706,12609,5529,0,1227,17925,6057,18744,2586,441,1298,2360,0,143,0,49904098,80.7,15331956,27.7,80.7,34.2
877
+ 2013-12-29,187654,584,97132,12508,13677,6339,0,1149,21063,6897,20816,2807,405,1306,2784,0,187,0,56444289,91.7,17551425,33.3,91.7,0.0