tamnd commited on
Commit
bf7ec51
·
verified ·
1 Parent(s): 51b495c

Add 2013-10-31 — 279.5K 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-30** (822 days), totaling **108,347,500 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 30.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.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
 
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 ██████████████████████████████ 60.0M
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 | 288 | 59,994,515 | 208,314 | 18.3 GB | 5.7 GB | 2h56m | 8h32m | 3h46m |
699
 
700
 
701
  ### Pushes per year
@@ -703,7 +703,7 @@ duckdb.sql("""
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
  2012 ████████████████░░░░░░░░░░░░░░ 16.5M
706
- 2013 ██████████████████████████████ 30.6M
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,814,524 | 49.7% | Git pushes with commits |
1118
- | `issues` | IssuesEvent | 6,127,068 | 5.7% | Issue lifecycle events |
1119
- | `issue_comments` | IssueCommentEvent | 9,254,472 | 8.5% | Comments on issues/PRs |
1120
- | `pull_requests` | PullRequestEvent | 4,201,897 | 3.9% | PR lifecycle events |
1121
- | `pr_review_comments` | PullRequestReviewCommentEvent | 819,630 | 0.8% | Line-level PR comments |
1122
- | `stars` | WatchEvent | 10,271,704 | 9.5% | Repository stars |
1123
- | `forks` | ForkEvent | 3,898,895 | 3.6% | Repository forks |
1124
- | `creates` | CreateEvent | 14,469,778 | 13.4% | Branch/tag/repo creation |
1125
- | `deletes` | DeleteEvent | 971,177 | 0.9% | Branch/tag deletion |
1126
- | `releases` | ReleaseEvent | 48,787 | 0.0% | Release publications |
1127
- | `commit_comments` | CommitCommentEvent | 1,088,777 | 1.0% | Comments on commits |
1128
- | `wiki_pages` | GollumEvent | 2,037,126 | 1.9% | Wiki page edits |
1129
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1130
- | `public_events` | PublicEvent | 98,961 | 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-31** (823 days), totaling **108,626,993 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 30.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.3 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 ██████████████████████████████ 60.3M
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 | 289 | 60,274,008 | 208,560 | 18.4 GB | 5.7 GB | 2h57m | 8h35m | 3h46m |
699
 
700
 
701
  ### Pushes per year
 
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
  2012 ████████████████░░░░░░░░░░░░░░ 16.5M
706
+ 2013 ██████████████████████████████ 30.8M
707
  ```
708
 
709
 
 
1114
 
1115
  | Table | GitHub Event | Events | % | Description |
1116
  |-------|-------------|-------:|---:|-------------|
1117
+ | `pushes` | PushEvent | 53,956,032 | 49.7% | Git pushes with commits |
1118
+ | `issues` | IssuesEvent | 6,142,971 | 5.7% | Issue lifecycle events |
1119
+ | `issue_comments` | IssueCommentEvent | 9,280,001 | 8.5% | Comments on issues/PRs |
1120
+ | `pull_requests` | PullRequestEvent | 4,214,089 | 3.9% | PR lifecycle events |
1121
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 822,888 | 0.8% | Line-level PR comments |
1122
+ | `stars` | WatchEvent | 10,297,053 | 9.5% | Repository stars |
1123
+ | `forks` | ForkEvent | 3,909,111 | 3.6% | Repository forks |
1124
+ | `creates` | CreateEvent | 14,501,215 | 13.3% | Branch/tag/repo creation |
1125
+ | `deletes` | DeleteEvent | 975,792 | 0.9% | Branch/tag deletion |
1126
+ | `releases` | ReleaseEvent | 49,293 | 0.0% | Release publications |
1127
+ | `commit_comments` | CommitCommentEvent | 1,091,573 | 1.0% | Comments on commits |
1128
+ | `wiki_pages` | GollumEvent | 2,041,334 | 1.9% | Wiki page edits |
1129
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1130
+ | `public_events` | PublicEvent | 99,200 | 0.1% | Repo made public |
1131
 
1132
  ## How it's built
1133
 
data/commit_comments/2013/10/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31f21422c2c70d02a226ebf1fb2971b128f08e1555d1ed84ee0cd7a42f9aa5f3
3
+ size 93059
data/creates/2013/10/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:670e6d4131fb825351dc983188ac956178f6c44d12964527c60a76e70a37389b
3
+ size 1187036
data/deletes/2013/10/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b863c2ef41397c5d0d4731e59ae9c9d1ccce7402d61c8e86949f0a49d01ce05
3
+ size 129854
data/forks/2013/10/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:921f4dba0148238b63e548bc7d2bf4c87b4a99a23189795503dee612fdc6a815
3
+ size 269448
data/issue_comments/2013/10/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8db9ca75c9525dde5074c598992cdff2244e540ccb679a718fc4e08acb7cdd74
3
+ size 589447
data/issues/2013/10/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef37447eaedc982c489e465d96e22fd69cf9b83377d372e41a6a07be221eadf3
3
+ size 376398
data/public_events/2013/10/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aecee3d7f385267a190cb666724190d0a242d06bf530b3982f0dac2f3616335b
3
+ size 10342
data/pull_requests/2013/10/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87231e7b70a51b0bf02f91e609dbc5a08381681c3c05a915393abc26197ed833
3
+ size 2172123
data/pushes/2013/10/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6a9652ac0b9967a63b6bd6059d2e95f9f73b81ab1d17c1cb48c8c6a8ce5b57a
3
+ size 21806853
data/stars/2013/10/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fab8502426518b251f83abc48ebadda0098fff1e2cda3f5d58e38b8a65f19c70
3
+ size 547910
data/wiki_pages/2013/10/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca0bf9a9e88f8075d07df9f93204ee8288942aa04838bc82feccb9b682271526
3
+ size 217170
stats.csv CHANGED
@@ -820,4 +820,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
820
  2013-10-27,211435,1031,115007,10361,14548,7730,0,1345,19650,7423,24988,2867,471,1904,3932,0,178,0,67947939,124.9,22315353,51.9,124.9,52.5
821
  2013-10-28,307864,1780,150926,15955,26374,13847,0,3336,27170,11071,41007,7528,590,3332,4613,0,335,0,102038718,194.9,30952715,46.3,194.9,84.0
822
  2013-10-29,306953,1964,154086,15948,27198,13156,0,3300,28464,11786,35034,8023,565,2771,4352,0,306,0,101772187,198.1,30790707,43.0,198.1,56.2
823
- 2013-10-30,306520,1696,148701,21683,31605,13418,0,3446,27172,11356,31765,7129,563,2774,4928,0,284,0,99180585,194.3,29478887,35.5,194.3,0.0
 
 
820
  2013-10-27,211435,1031,115007,10361,14548,7730,0,1345,19650,7423,24988,2867,471,1904,3932,0,178,0,67947939,124.9,22315353,51.9,124.9,52.5
821
  2013-10-28,307864,1780,150926,15955,26374,13847,0,3336,27170,11071,41007,7528,590,3332,4613,0,335,0,102038718,194.9,30952715,46.3,194.9,84.0
822
  2013-10-29,306953,1964,154086,15948,27198,13156,0,3300,28464,11786,35034,8023,565,2771,4352,0,306,0,101772187,198.1,30790707,43.0,198.1,56.2
823
+ 2013-10-30,306520,1696,148701,21683,31605,13418,0,3446,27172,11356,31765,7129,563,2774,4928,0,284,0,99180585,194.3,29478887,35.5,194.3,38.3
824
+ 2013-10-31,279493,1737,141508,15903,25529,12192,0,3258,25349,10216,31437,4615,506,2796,4208,0,239,0,91059583,173.5,27399640,41.5,173.5,0.0