tamnd commited on
Commit
43f52d5
·
verified ·
1 Parent(s): f144d69

Add 2013-11-03 — 209.4K 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-02** (825 days), totaling **109,040,938 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.4 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,14 +688,14 @@ duckdb.sql("""
688
  ```
689
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
690
  2012 ████████████████░░░░░░░░░░░░░░ 34.3M
691
- 2013 ██████████████████████████████ 60.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 | 291 | 60,687,953 | 208,549 | 18.5 GB | 5.7 GB | 2h59m | 8h39m | 3h48m |
699
 
700
 
701
  ### Pushes per year
@@ -703,7 +703,7 @@ duckdb.sql("""
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
  2012 ███████████████░░░░░░░░░░░░░░░ 16.5M
706
- 2013 ██████████████████████████████ 31.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 | 54,168,749 | 49.7% | Git pushes with commits |
1118
- | `issues` | IssuesEvent | 6,167,839 | 5.7% | Issue lifecycle events |
1119
- | `issue_comments` | IssueCommentEvent | 9,315,083 | 8.5% | Comments on issues/PRs |
1120
- | `pull_requests` | PullRequestEvent | 4,231,011 | 3.9% | PR lifecycle events |
1121
- | `pr_review_comments` | PullRequestReviewCommentEvent | 826,581 | 0.8% | Line-level PR comments |
1122
- | `stars` | WatchEvent | 10,333,482 | 9.5% | Repository stars |
1123
- | `forks` | ForkEvent | 3,924,003 | 3.6% | Repository forks |
1124
- | `creates` | CreateEvent | 14,549,902 | 13.3% | Branch/tag/repo creation |
1125
- | `deletes` | DeleteEvent | 982,572 | 0.9% | Branch/tag deletion |
1126
- | `releases` | ReleaseEvent | 50,198 | 0.0% | Release publications |
1127
- | `commit_comments` | CommitCommentEvent | 1,095,276 | 1.0% | Comments on commits |
1128
- | `wiki_pages` | GollumEvent | 2,047,682 | 1.9% | Wiki page edits |
1129
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1130
- | `public_events` | PublicEvent | 99,542 | 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-11-03** (826 days), totaling **109,250,372 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.5 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.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 | 292 | 60,897,387 | 208,552 | 18.6 GB | 5.7 GB | 2h59m | 8h41m | 3h48m |
699
 
700
 
701
  ### Pushes per year
 
703
  ```
704
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
705
  2012 ███████████████░░░░░░░░░░░░░░░ 16.5M
706
+ 2013 ██████████████████████████████ 31.1M
707
  ```
708
 
709
 
 
1114
 
1115
  | Table | GitHub Event | Events | % | Description |
1116
  |-------|-------------|-------:|---:|-------------|
1117
+ | `pushes` | PushEvent | 54,281,776 | 49.7% | Git pushes with commits |
1118
+ | `issues` | IssuesEvent | 6,177,925 | 5.7% | Issue lifecycle events |
1119
+ | `issue_comments` | IssueCommentEvent | 9,329,806 | 8.5% | Comments on issues/PRs |
1120
+ | `pull_requests` | PullRequestEvent | 4,238,687 | 3.9% | PR lifecycle events |
1121
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 828,136 | 0.8% | Line-level PR comments |
1122
+ | `stars` | WatchEvent | 10,353,061 | 9.5% | Repository stars |
1123
+ | `forks` | ForkEvent | 3,932,333 | 3.6% | Repository forks |
1124
+ | `creates` | CreateEvent | 14,574,644 | 13.3% | Branch/tag/repo creation |
1125
+ | `deletes` | DeleteEvent | 985,451 | 0.9% | Branch/tag deletion |
1126
+ | `releases` | ReleaseEvent | 50,667 | 0.0% | Release publications |
1127
+ | `commit_comments` | CommitCommentEvent | 1,096,751 | 1.0% | Comments on commits |
1128
+ | `wiki_pages` | GollumEvent | 2,051,267 | 1.9% | Wiki page edits |
1129
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1130
+ | `public_events` | PublicEvent | 99,722 | 0.1% | Repo made public |
1131
 
1132
  ## How it's built
1133
 
data/commit_comments/2013/11/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3cc4cbc525749bbd56fe592e78c171659d07c7ac8176f7f8f1ecbaee6a3516f
3
+ size 55253
data/creates/2013/11/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e1a2982003061b9b7180efbcb66b6993f20af7de1caae10bd08782e2fccb3b8
3
+ size 865125
data/deletes/2013/11/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0936dda8ebd611d3f4e6075e8c2710cc314e6e05819e85b3e375c7071b397ab4
3
+ size 83402
data/forks/2013/11/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:988ac5f9d99be47b7bfe8c3638dbc87506b919c3cd23326d0ee5417eb4122f56
3
+ size 221251
data/issue_comments/2013/11/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2280b51c88b76f17295484ca137e8e23ef0f4f94fc110a5273a1e89067f4ec7e
3
+ size 359450
data/issues/2013/11/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98083eb5b498531460304b2304a84fef40c52a49ac3d96e1a7705e848fb76796
3
+ size 254753
data/public_events/2013/11/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ddbb3ffcc0a0ba92eadcb7b1db1787133089059097534fcd050ad37ca9c0094
3
+ size 7924
data/pull_requests/2013/11/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1548386731219a1cd5173a134ca63a5fcd835583f50eecc447f3889a57d426ce
3
+ size 1329643
data/pushes/2013/11/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7fdaf23cccbf429c61b9865ae66664d4939f419cafd11a9304c41fc148feb7c
3
+ size 16858637
data/stars/2013/11/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebed50927338b9717bdafbd73f3ffc19b5a20b97056c8bee26916424e59df925
3
+ size 435603
data/wiki_pages/2013/11/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fe1717942c3184ed2af9bf09724a727ff0778ec6ad0fd2d151d612be3c85fd2
3
+ size 255391
stats.csv CHANGED
@@ -823,4 +823,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,44.6
825
  2013-11-01,241589,1507,120441,15167,22259,10691,0,2733,21189,8560,28368,4048,537,2262,3613,0,214,0,79980764,143.5,24338865,71.2,143.5,44.1
826
- 2013-11-02,172356,1070,92276,9701,12823,6231,0,960,15240,6332,20319,2732,368,1441,2735,0,128,0,54006565,101.6,16933502,25.9,101.6,0.0
 
 
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,44.6
825
  2013-11-01,241589,1507,120441,15167,22259,10691,0,2733,21189,8560,28368,4048,537,2262,3613,0,214,0,79980764,143.5,24338865,71.2,143.5,44.1
826
+ 2013-11-02,172356,1070,92276,9701,12823,6231,0,960,15240,6332,20319,2732,368,1441,2735,0,128,0,54006565,101.6,16933502,25.9,101.6,46.6
827
+ 2013-11-03,209434,1128,113027,10086,14723,7676,0,1555,19579,8330,24742,2879,469,1475,3585,0,180,0,65962159,117.1,20726432,25.6,117.1,0.0