tamnd commited on
Commit
3f57c47
·
verified ·
1 Parent(s): 3211ebd

Add 2013-12-31 — 168.6K 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-30** (877 days), totaling **122,667,753 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.6 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,22 +722,22 @@ duckdb.sql("""
722
  ```
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
- 2013 ██████████████████████████████ 74.3M
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 | 343 | 74,314,768 | 216,661 | 22.6 GB | 7.0 GB | 3h26m | 10h51m | 4h27m |
733
 
734
 
735
  ### Pushes per year
736
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
- 2012 ████████████░░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 38.0M
741
  ```
742
 
743
 
@@ -764,7 +764,7 @@ duckdb.sql("""
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
767
- 2013 ██████████████████████████████ 6.9M
768
  ```
769
 
770
 
@@ -1148,20 +1148,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
- | `pushes` | PushEvent | 61,168,636 | 49.9% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,954,033 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 10,520,171 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,803,572 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 965,960 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 11,610,148 | 9.5% | Repository stars |
1157
- | `forks` | ForkEvent | 4,423,629 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 16,051,790 | 13.1% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,209,853 | 1.0% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 76,845 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,211,074 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,239,723 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 111,832 | 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-31** (878 days), totaling **122,836,397 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.6 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.5M
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 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h28m |
733
 
734
 
735
  ### Pushes per year
736
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
+ 2012 ████████████░░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 38.1M
741
  ```
742
 
743
 
 
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
767
+ 2013 ██████████████████████████████ 7.0M
768
  ```
769
 
770
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 61,256,439 | 49.9% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,962,880 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 10,533,806 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,810,423 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 967,302 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 11,627,159 | 9.5% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,429,795 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 16,071,651 | 13.1% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,212,394 | 1.0% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 77,277 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,212,528 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,241,837 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 111,986 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/12/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b7dafcb54302ccbe322660277be425c03869fc7aeeba9f9be0557de6e8701e5
3
+ size 52903
data/creates/2013/12/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5717be9a5b28d8706a4ffc817dc37dc29799a0479d516187385794b410155bae
3
+ size 704256
data/deletes/2013/12/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36d55eac078c1e0669162b9d0a60005493eee7c3fbb8ba4d12b40acb85f81466
3
+ size 75301
data/forks/2013/12/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b7ce69ba53fbd895345fa7c1e86131be0169b776862c28318a9d4b5469ee3e4
3
+ size 169420
data/issue_comments/2013/12/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb687a55fc10186493cf7294c0e28c880ba8a6af4b8348577b6e7efa07d61b8b
3
+ size 339227
data/issues/2013/12/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d677cd06e9ed06f0eb1910a1cb5e0f0ed166525d956a572a17e70501b08f50e
3
+ size 223897
data/public_events/2013/12/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:785b1862f65d94b0a97883e70a0fc1a6322cd715281517c72fb7cd706ddd8fde
3
+ size 7502
data/pull_requests/2013/12/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84c1a044b8bb07dd1b53f1f1925ff592f582309cc917945097dd02878446768a
3
+ size 1253856
data/pushes/2013/12/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b8239e5cbfcc387ebfb5d8e2055f8d1603fad26da0acbe6929b9a088f25e099
3
+ size 12834954
data/stars/2013/12/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06f6194947d4e0d3c126ac23de1acf94aac8067c17451f5ad1b6d82dcc2b7dfb
3
+ size 378974
data/wiki_pages/2013/12/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9edc4f27433a154614a35699fc29140bcb48670ca75d3b241c7143e579c6c278
3
+ size 113227
stats.csv CHANGED
@@ -875,4 +875,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,27.0
878
- 2013-12-30,230387,787,117271,13306,19854,9358,0,2149,23970,9216,25010,3773,512,2139,2860,0,182,0,76137933,125.0,25049480,39.6,125.0,0.0
 
 
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,27.0
878
+ 2013-12-30,230387,787,117271,13306,19854,9358,0,2149,23970,9216,25010,3773,512,2139,2860,0,182,0,76137933,125.0,25049480,39.6,125.0,42.5
879
+ 2013-12-31,168644,433,87803,8847,13635,6851,0,1342,17011,6166,19861,2541,432,1454,2114,0,154,0,53436707,91.7,16153517,35.4,91.7,0.0