tamnd commited on
Commit
4790469
·
verified ·
1 Parent(s): d518907

Add 2013-11-25 — 313.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-11-21** (841 days), totaling **113,499,286 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 31.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.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
 
@@ -722,22 +722,22 @@ duckdb.sql("""
722
  ```
723
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ███████████████░░░░░░░░░░░░░░░ 34.3M
725
- 2013 ██████████████████████████████ 65.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 | 307 | 65,146,301 | 212,202 | 19.9 GB | 6.1 GB | 3h05m | 9h27m | 4h01m |
733
 
734
 
735
  ### Pushes per year
736
 
737
  ```
738
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 ██████████████░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 33.3M
741
  ```
742
 
743
 
@@ -762,8 +762,8 @@ duckdb.sql("""
762
  ### Stars per year
763
 
764
  ```
765
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
- 2012 ███████████████░░░░░░░░░░░░░░ 3.3M
767
  2013 ██████████████████████████████ 6.1M
768
  ```
769
 
@@ -1148,20 +1148,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
- | `pushes` | PushEvent | 56,450,150 | 49.7% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,436,695 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 9,705,538 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,420,642 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 872,381 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 10,735,988 | 9.5% | Repository stars |
1157
- | `forks` | ForkEvent | 4,088,471 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 15,045,757 | 13.3% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,057,727 | 0.9% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 58,298 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,132,787 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,113,453 | 1.9% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 103,528 | 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-11-28** (843 days), totaling **114,063,318 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 32.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.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
 
 
722
  ```
723
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ███████████████░░░░░░░░░░░░░░░ 34.3M
725
+ 2013 ██████████████████████████████ 65.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 | 309 | 65,710,333 | 212,654 | 20.0 GB | 6.2 GB | 3h06m | 9h31m | 4h01m |
733
 
734
 
735
  ### Pushes per year
736
 
737
  ```
738
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 ██████████████░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 33.6M
741
  ```
742
 
743
 
 
762
  ### Stars per year
763
 
764
  ```
765
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
+ 2012 ███████████████░░░░░░░░░░░░░░ 3.3M
767
  2013 ██████████████████████████████ 6.1M
768
  ```
769
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 56,740,297 | 49.7% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,469,723 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 9,753,715 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,444,392 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 878,537 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 10,787,820 | 9.5% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,109,060 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 15,108,860 | 13.2% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,067,715 | 0.9% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 59,233 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,137,389 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,121,577 | 1.9% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 104,010 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/11/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d95b4f81fa17284f015a9f629cecb7e736c2ded9d12b978eda453f054b01ef02
3
+ size 94337
data/creates/2013/11/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea89aa1289e3afc300a93f3a04d89548cad208fb77a5ef1ae10cf91b2c49c122
3
+ size 1282441
data/deletes/2013/11/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd08ee627216370132ed2cd555ac75a6963e3462219f04a40a90035e0e7f1d4f
3
+ size 145907
data/forks/2013/11/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe245e5ef4f655e85e2bd18e3e4ed669cf2a6760dd9e5859f9cbe18aaaeeb7f3
3
+ size 297200
data/issue_comments/2013/11/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:029a91994e8f249a4226e33b5292ed826efcd2f698a9719b707930b8a5d31e66
3
+ size 668748
data/issues/2013/11/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c407bf46afc3c01da142fdad459f6ed5361a7cbbf1c9904360d5721a8b19d62b
3
+ size 421488
data/public_events/2013/11/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0b4dcdc8e5d7d5126508d1c14b545b492da7d3639ed61b2378ebd4652eea2ee
3
+ size 10857
data/pull_requests/2013/11/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0f9894fe9f9dde5e033148b93e19eb57767085e2dad00ce609deed4f5d6559a
3
+ size 2440299
data/pushes/2013/11/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc4a400d4781d00cb6c11ee0fe131973ffa8ce98ca541349f52bf218bee4664f
3
+ size 24396313
data/stars/2013/11/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44ca8b7c2d650d3920ab2fa54516cfe528e6ffd96053117171dbc1d5f1c2ade2
3
+ size 602062
data/wiki_pages/2013/11/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83f46d78b30fe3085b97bd019e995e141c6da93ec5640b00eedef9b6e6b04d51
3
+ size 227433
stats.csv CHANGED
@@ -840,3 +840,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
840
  2013-11-19,341897,2014,163090,33194,34274,15015,0,3409,28433,12129,36346,6181,629,2659,4226,0,298,0,108248179,202.3,32515886,26.6,202.3,41.2
841
  2013-11-20,323456,2066,163553,19299,30388,14381,0,3354,29948,11739,35607,5270,549,2567,4414,0,321,0,106228083,201.3,32290731,38.0,201.3,59.5
842
  2013-11-21,319491,1920,160690,18877,29538,14689,0,3729,30274,11552,35008,5790,536,2475,4162,0,251,0,106512121,207.0,32125899,38.6,207.0,22.7
 
 
 
840
  2013-11-19,341897,2014,163090,33194,34274,15015,0,3409,28433,12129,36346,6181,629,2659,4226,0,298,0,108248179,202.3,32515886,26.6,202.3,41.2
841
  2013-11-20,323456,2066,163553,19299,30388,14381,0,3354,29948,11739,35607,5270,549,2567,4414,0,321,0,106228083,201.3,32290731,38.0,201.3,59.5
842
  2013-11-21,319491,1920,160690,18877,29538,14689,0,3729,30274,11552,35008,5790,536,2475,4162,0,251,0,106512121,207.0,32125899,38.6,207.0,22.7
843
+ 2013-11-25,313617,1793,159858,20062,27821,13426,0,3737,27980,11233,34750,5174,488,2706,4315,0,274,0,101968680,157.3,30587085,7.0,157.3,0.0
844
+ 2013-11-28,250415,1326,130289,12966,20356,10324,0,2419,23852,9356,28353,4814,447,1896,3809,0,208,0,80454441,122.8,24929667,29.9,122.8,0.0