tamnd commited on
Commit
3fbb8a4
·
verified ·
1 Parent(s): fc78d55

Add 2013-10-26 — 182.8K 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-25** (817 days), totaling **107,031,907 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 29.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.1 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
 
@@ -688,14 +688,14 @@ duckdb.sql("""
688
  ```
689
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
690
  2012 █████████████████░░░░░░░░░░░░░ 34.3M
691
- 2013 ██████████████████████████████ 58.7M
692
  ```
693
 
694
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
695
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
696
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
697
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
698
- | 2013 | 283 | 58,678,922 | 207,346 | 17.9 GB | 5.5 GB | 2h53m | 8h19m | 3h41m |
699
 
700
 
701
  ### Pushes per year
@@ -703,7 +703,7 @@ duckdb.sql("""
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
  2012 ████████████████░░░░░░░░░░░░░░ 16.5M
706
- 2013 ██████████████████████████████ 30.0M
707
  ```
708
 
709
 
@@ -1114,20 +1114,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1114
 
1115
  | Table | GitHub Event | Events | % | Description |
1116
  |-------|-------------|-------:|---:|-------------|
1117
- | `pushes` | PushEvent | 53,145,154 | 49.7% | Git pushes with commits |
1118
- | `issues` | IssuesEvent | 6,053,949 | 5.7% | Issue lifecycle events |
1119
- | `issue_comments` | IssueCommentEvent | 9,141,996 | 8.5% | Comments on issues/PRs |
1120
- | `pull_requests` | PullRequestEvent | 4,147,283 | 3.9% | PR lifecycle events |
1121
- | `pr_review_comments` | PullRequestReviewCommentEvent | 807,041 | 0.8% | Line-level PR comments |
1122
- | `stars` | WatchEvent | 10,152,829 | 9.5% | Repository stars |
1123
- | `forks` | ForkEvent | 3,850,648 | 3.6% | Repository forks |
1124
- | `creates` | CreateEvent | 14,316,347 | 13.4% | Branch/tag/repo creation |
1125
- | `deletes` | DeleteEvent | 943,005 | 0.9% | Branch/tag deletion |
1126
- | `releases` | ReleaseEvent | 46,242 | 0.0% | Release publications |
1127
- | `commit_comments` | CommitCommentEvent | 1,076,672 | 1.0% | Comments on commits |
1128
- | `wiki_pages` | GollumEvent | 2,016,169 | 1.9% | Wiki page edits |
1129
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1130
- | `public_events` | PublicEvent | 97,680 | 0.1% | Repo made public |
1131
 
1132
  ## How it's built
1133
 
 
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-26** (818 days), totaling **107,214,728 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 29.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.1 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
 
 
688
  ```
689
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
690
  2012 █████████████████░░░░░░░░░░░░░ 34.3M
691
+ 2013 ██████████████████████████████ 58.9M
692
  ```
693
 
694
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
695
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
696
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
697
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
698
+ | 2013 | 284 | 58,861,743 | 207,259 | 17.9 GB | 5.6 GB | 2h53m | 8h20m | 3h42m |
699
 
700
 
701
  ### Pushes per year
 
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
  2012 ████████████████░░░░░░░░░░░░░░ 16.5M
706
+ 2013 ██████████████████████████████ 30.1M
707
  ```
708
 
709
 
 
1114
 
1115
  | Table | GitHub Event | Events | % | Description |
1116
  |-------|-------------|-------:|---:|-------------|
1117
+ | `pushes` | PushEvent | 53,245,804 | 49.7% | Git pushes with commits |
1118
+ | `issues` | IssuesEvent | 6,063,121 | 5.7% | Issue lifecycle events |
1119
+ | `issue_comments` | IssueCommentEvent | 9,154,747 | 8.5% | Comments on issues/PRs |
1120
+ | `pull_requests` | PullRequestEvent | 4,153,746 | 3.9% | PR lifecycle events |
1121
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 808,203 | 0.8% | Line-level PR comments |
1122
+ | `stars` | WatchEvent | 10,169,248 | 9.5% | Repository stars |
1123
+ | `forks` | ForkEvent | 3,857,259 | 3.6% | Repository forks |
1124
+ | `creates` | CreateEvent | 14,336,984 | 13.4% | Branch/tag/repo creation |
1125
+ | `deletes` | DeleteEvent | 945,630 | 0.9% | Branch/tag deletion |
1126
+ | `releases` | ReleaseEvent | 46,598 | 0.0% | Release publications |
1127
+ | `commit_comments` | CommitCommentEvent | 1,077,996 | 1.0% | Comments on commits |
1128
+ | `wiki_pages` | GollumEvent | 2,019,301 | 1.9% | Wiki page edits |
1129
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1130
+ | `public_events` | PublicEvent | 97,858 | 0.1% | Repo made public |
1131
 
1132
  ## How it's built
1133
 
data/commit_comments/2013/10/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c66f56b8761701097df9bda2800a32459e440729afd896e91e4ecdc869551881
3
+ size 50585
data/creates/2013/10/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:207a322412a44142166ddb7fe7f639aab89bad1f6ffbfe66f773335c49e528c8
3
+ size 752913
data/deletes/2013/10/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8373bf90793f13d06ebf9be178e79e2e27a9ce5b84ab3dd517b4a6b387af765b
3
+ size 75835
data/forks/2013/10/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5b5d286172f0e5dad24a0d7fd7e448e95f9db117b2d523121705a0a7e9aa195
3
+ size 184208
data/issue_comments/2013/10/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78c4030d539a38ee2520b6e3b9552d62b6969d5a5254756766684e2cb681e0ae
3
+ size 376767
data/issues/2013/10/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1abb863be998efb537e96e67dba0e2569d4f46b40f15d3a74327cc081e53018
3
+ size 231215
data/public_events/2013/10/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:389fa1d852f9ecd4aaa2d5b263262f0dd464ca1f2cd6c81e69bd5710008b3b2c
3
+ size 7989
data/pull_requests/2013/10/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b47ffd65f8944c564d770c68507fa2fef62b9878f482dc0bc0ec9f80cc77179
3
+ size 1133568
data/pushes/2013/10/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f60cb94c19cc9ccea225b29b0bb21a91ba164d006542fca18b468206f3fc1ddc
3
+ size 15475324
data/stars/2013/10/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95791d24825ca9d9587dfaf575b65f4c0cccca5fb00e1c1a08e2acf713b85ba4
3
+ size 370158
data/wiki_pages/2013/10/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d66dac140b32d7b86c14b131e8b7cdcdf8fe1c96723180a51c6f7d593efbc3bd
3
+ size 223319
stats.csv CHANGED
@@ -815,4 +815,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
815
  2013-10-22,249214,1348,126140,13501,22107,11373,0,3034,22545,9560,28364,4439,341,2483,3735,0,244,0,85767370,142.6,26549283,53.0,142.6,48.7
816
  2013-10-23,278159,2225,136412,16595,26622,12267,0,3227,27427,10193,31492,4308,438,2415,4276,0,262,0,93296398,150.6,28504908,47.4,150.7,43.8
817
  2013-10-24,284228,1685,138989,19831,29699,12797,0,3184,24917,10396,30463,4869,563,2413,4169,0,253,0,93516314,160.5,28769335,63.1,160.5,39.7
818
- 2013-10-25,260254,1787,132912,13452,22310,11538,0,2697,23296,9265,30746,5107,525,2121,4271,0,227,0,88191541,147.1,27079321,33.9,147.1,0.0
 
 
815
  2013-10-22,249214,1348,126140,13501,22107,11373,0,3034,22545,9560,28364,4439,341,2483,3735,0,244,0,85767370,142.6,26549283,53.0,142.6,48.7
816
  2013-10-23,278159,2225,136412,16595,26622,12267,0,3227,27427,10193,31492,4308,438,2415,4276,0,262,0,93296398,150.6,28504908,47.4,150.7,43.8
817
  2013-10-24,284228,1685,138989,19831,29699,12797,0,3184,24917,10396,30463,4869,563,2413,4169,0,253,0,93516314,160.5,28769335,63.1,160.5,39.7
818
+ 2013-10-25,260254,1787,132912,13452,22310,11538,0,2697,23296,9265,30746,5107,525,2121,4271,0,227,0,88191541,147.1,27079321,33.9,147.1,53.4
819
+ 2013-10-26,182821,1341,100650,9172,12751,6463,0,1162,16419,6611,20637,2625,356,1324,3132,0,178,0,58604102,110.3,18881881,31.7,110.3,0.0