tamnd commited on
Commit
b46fbce
·
verified ·
1 Parent(s): 2380c70

Add 2013-12-12 — 313.5K events, 11 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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-11** (858 days), totaling **118,305,641 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.3 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
 
@@ -722,14 +722,14 @@ duckdb.sql("""
722
  ```
723
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ██████████████░░░░░░░░░░░░░░░░ 34.3M
725
- 2013 ██████████████████████████████ 70.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 | 324 | 69,952,656 | 215,903 | 21.3 GB | 6.6 GB | 3h15m | 10h12m | 4h14m |
733
 
734
 
735
  ### Pushes per year
@@ -737,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 35.8M
741
  ```
742
 
743
 
@@ -763,7 +763,7 @@ duckdb.sql("""
763
 
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
- 2012 ██████████████░░░░░░░░░░░░░░░ 3.3M
767
  2013 ██████████████████████████████ 6.5M
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 | 58,947,824 | 49.8% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,703,817 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 10,129,431 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,626,961 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 923,736 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 11,176,562 | 9.4% | Repository stars |
1157
- | `forks` | ForkEvent | 4,262,528 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 15,563,595 | 13.2% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,136,539 | 1.0% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 67,622 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,174,289 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,181,860 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 107,702 | 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-12** (859 days), totaling **118,619,183 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.3 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
 
 
722
  ```
723
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ██████████████░░░░░░░░░░░░░░░░ 34.3M
725
+ 2013 ██████████████████████████████ 70.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 | 325 | 70,266,198 | 216,203 | 21.4 GB | 6.6 GB | 3h16m | 10h15m | 4h15m |
733
 
734
 
735
  ### Pushes per year
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 35.9M
741
  ```
742
 
743
 
 
763
 
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
+ 2012 ██████████████░░░░░░░░░░░░░░░ 3.3M
767
  2013 ██████████████████████████████ 6.5M
768
  ```
769
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 59,104,071 | 49.8% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,722,438 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 10,166,454 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,640,747 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 927,409 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 11,203,889 | 9.4% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,273,215 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 15,595,436 | 13.1% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,141,657 | 1.0% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 68,168 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,177,003 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,185,992 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 108,048 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b25ca7f630491cb142a15b8234d5d51804eb383457d4cea0296b0ca1d9d323cd
3
+ size 95375
data/creates/2013/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b95b15da750414e0a3fcad46c59e40d793af33e04769efe2ccaf555702b0973d
3
+ size 1176785
data/deletes/2013/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6ee6b849549336cbee2cd432a8603587bdc510808d359ec5baf8ab757fdf1cc
3
+ size 143656
data/forks/2013/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:088c6f62c484724be9670f0b413826f00bd1c767bb27e9acb7d1f72543733428
3
+ size 285279
data/issue_comments/2013/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1b6bbe764b8630d4c90877fbbba0f47b7fc30f3d3664ba449a4f140886fd3b2
3
+ size 714479
data/issues/2013/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55fb0894fc4028d01d49d5a26ccb22474210c1d1e41c19af34bc41d60564b171
3
+ size 426843
data/public_events/2013/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:302be375348c40edc4e9f9ed2c69bfb9430d8d251148c28fbbde85f3651d3b01
3
+ size 13258
data/pull_requests/2013/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1ee8004afe8d5f38fc571f672541a282395c68f3a1d4cf0b5cf56157f5322ab
3
+ size 2407734
data/pushes/2013/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7611d77b40031ff40f754fd213fb77fe77efedc1ebed4990dc4c37c7a51cb619
3
+ size 24677668
data/stars/2013/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18aee15ed1e029516548baea76104c2d2944c757500cde1bb4de17bd57bbaee8
3
+ size 592307
data/wiki_pages/2013/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c9230a2ef7e7b7f16b45edafea7ba47399ed439da551aac2935a84f8686f7ed
3
+ size 282165
stats.csv CHANGED
@@ -856,4 +856,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
856
  2013-12-08,232638,896,127513,12319,18653,8345,0,1473,20981,8019,25065,3129,517,1768,3765,0,195,0,71808461,129.7,23187962,27.4,129.7,36.5
857
  2013-12-09,324762,1553,168002,18171,29159,14651,0,4106,30724,11396,33197,5197,600,2860,4836,0,310,0,109413889,199.7,33625366,48.3,199.7,41.4
858
  2013-12-10,332206,1635,168586,18090,31876,15603,0,3975,31100,12028,35356,5974,596,2685,4398,0,304,0,110162187,206.5,32546921,31.0,206.5,34.9
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,0.0
 
 
856
  2013-12-08,232638,896,127513,12319,18653,8345,0,1473,20981,8019,25065,3129,517,1768,3765,0,195,0,71808461,129.7,23187962,27.4,129.7,36.5
857
  2013-12-09,324762,1553,168002,18171,29159,14651,0,4106,30724,11396,33197,5197,600,2860,4836,0,310,0,109413889,199.7,33625366,48.3,199.7,41.4
858
  2013-12-10,332206,1635,168586,18090,31876,15603,0,3975,31100,12028,35356,5974,596,2685,4398,0,304,0,110162187,206.5,32546921,31.0,206.5,34.9
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,0.0