tamnd commited on
Commit
1088b97
·
verified ·
1 Parent(s): 3c77ece

Add 2015-02-01 — 364.5K events, 14 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 **2015-01-31** (1,418 days), totaling **273,959,935 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 94.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 18.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
 
@@ -139,7 +139,7 @@ duckdb.sql("""
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████░░░░░░░░░░░░ 76.2M
141
  2014 ██████████████████████████████ 124.6M
142
- 2015 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 12.7M
143
  ```
144
 
145
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
@@ -148,7 +148,7 @@ duckdb.sql("""
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
  | 2014 | 348 | 124,581,314 | 357,992 | 51.9 GB | 11.8 GB | 4h13m | 20h37m | 5h05m |
151
- | 2015 | 28 | 12,654,257 | 451,937 | 4.4 GB | 2.1 GB | 19m46s | 45m06s | 28m45s |
152
 
153
 
154
  ### Pushes per year
@@ -160,7 +160,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
- 2015 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.3M
164
  ```
165
 
166
 
@@ -181,7 +181,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
181
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████░░░░░░░░░░░░ 4.4M
183
  2014 ██████████████████████████████ 7.3M
184
- 2015 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 623.2K
185
  ```
186
 
187
 
@@ -204,7 +204,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
204
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 1.8M
205
  2013 ████████████████░░░░░░░░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 5.5M
207
- 2015 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 616.6K
208
  ```
209
 
210
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 137,585,419 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 15,702,675 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 24,020,668 | 8.8% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 11,386,345 | 4.2% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,896,384 | 1.1% | Line-level PR comments |
647
- | `stars` | WatchEvent | 25,353,724 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 9,604,590 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 34,286,756 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,807,304 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 433,710 | 0.2% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,404,393 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 4,128,495 | 1.5% | Wiki page edits |
654
- | `members` | MemberEvent | 196,852 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 255,543 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
 
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 **2015-02-01** (1,419 days), totaling **274,324,476 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 94.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 18.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
 
 
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████░░░░░░░░░░░░ 76.2M
141
  2014 ██████████████████████████████ 124.6M
142
+ 2015 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 13.0M
143
  ```
144
 
145
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
 
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
  | 2014 | 348 | 124,581,314 | 357,992 | 51.9 GB | 11.8 GB | 4h13m | 20h37m | 5h05m |
151
+ | 2015 | 29 | 13,018,798 | 448,924 | 4.5 GB | 2.2 GB | 20m20s | 46m19s | 29m55s |
152
 
153
 
154
  ### Pushes per year
 
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
+ 2015 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.5M
164
  ```
165
 
166
 
 
181
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████░░░░░░░░░░░░ 4.4M
183
  2014 ██████████████████████████████ 7.3M
184
+ 2015 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 640.8K
185
  ```
186
 
187
 
 
204
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 1.8M
205
  2013 ████████████████░░░░░░░░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 5.5M
207
+ 2015 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 631.7K
208
  ```
209
 
210
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 137,782,556 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 15,720,259 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 24,049,213 | 8.8% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 11,401,486 | 4.2% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,899,726 | 1.1% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 25,388,937 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 9,615,940 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 34,328,018 | 12.5% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,813,514 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 434,853 | 0.2% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,406,423 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 4,132,091 | 1.5% | Wiki page edits |
654
+ | `members` | MemberEvent | 198,441 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 255,942 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b4ec9630ae88c5fd91f62d92fbe5e5a1abe42fbd974b487369bfbf48c5ec094
3
+ size 276879
data/creates/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ac9938400ab7145bd2f0580675a5e3422df9c3fd808689227586725e98c804f
3
+ size 1666763
data/deletes/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11ebd7342337acc2328908c8c477de121d506fa146756a1702496323145ac52e
3
+ size 205146
data/forks/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a434ac38376a1180b922255836555d6a71e252a496f66d784ab189df767ddfb
3
+ size 1238652
data/issue_comments/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9cdcaa3ffb456b19a007b1a114ce420ff838b0f9a42bb49cec63a004b2ddddf6
3
+ size 5577845
data/issues/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e67f97932363bd8f0171afd4e42af1ec59ed400d18f99e5d746b83df1b9d91e
3
+ size 3991331
data/members/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4ea9387a2d7e4aa6f471a8b4ff5a5cfb0a72beab6a2e77f6b23ab5261151720
3
+ size 64896
data/pr_review_comments/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cf9c39918395f6a7f884886a464a82e40ced6e5e54ec1113df94fe4ec5cac3e
3
+ size 1109400
data/public_events/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcae5d3e39f03cc7a3539d0e5c4e81d77d54ca41d7aab360a81b15ab7c8115b8
3
+ size 16782
data/pull_requests/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c520b0de2da28bdf027b27bcc6a3664fd6402731fa21ea2ad179ad0b3dd08c40
3
+ size 2710460
data/pushes/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3aedd313ab36393dd6b401d4ccbb7f46f35ae8e7909c2897babe8a9fcde84a50
3
+ size 44470467
data/releases/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:880c510ef2d0788b2c0be6ac627b592668aa97fb8f6e8f30a480cf6f21982bea
3
+ size 185254
data/stars/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:534db1b14fc67bb01bab7e26025a00e070345cc72b2f2e212a8b932ed3e2a189
3
+ size 1179388
data/wiki_pages/2015/02/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:622792bbe058c9d53c1c55fe6c89fc4a42195de6e6e6019549cb2178304d627c
3
+ size 276795
stats.csv CHANGED
@@ -1416,4 +1416,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1416
  2015-01-28,514474,0,254227,25200,50854,26979,0,9004,47365,17536,60606,9232,1594,3426,5110,2808,533,0,199281726,88.3,93258932,36.6,88.3,58.1
1417
  2015-01-29,521416,0,255848,25547,52985,28097,0,9441,48233,17649,58435,9912,1628,3704,6224,3120,593,0,204333412,73.6,93946959,35.9,73.6,74.5
1418
  2015-01-30,520122,0,259162,26904,50312,27587,0,8870,46946,17415,59192,9978,1774,3450,5286,2708,538,0,202263702,126.2,95017468,51.9,126.2,101.2
1419
- 2015-01-31,352170,0,187168,16977,27635,15692,0,3234,32155,11871,41620,5949,1199,1824,3930,2542,374,0,120882558,80.7,61187691,44.4,80.7,0.0
 
 
1416
  2015-01-28,514474,0,254227,25200,50854,26979,0,9004,47365,17536,60606,9232,1594,3426,5110,2808,533,0,199281726,88.3,93258932,36.6,88.3,58.1
1417
  2015-01-29,521416,0,255848,25547,52985,28097,0,9441,48233,17649,58435,9912,1628,3704,6224,3120,593,0,204333412,73.6,93946959,35.9,73.6,74.5
1418
  2015-01-30,520122,0,259162,26904,50312,27587,0,8870,46946,17415,59192,9978,1774,3450,5286,2708,538,0,202263702,126.2,95017468,51.9,126.2,101.2
1419
+ 2015-01-31,352170,0,187168,16977,27635,15692,0,3234,32155,11871,41620,5949,1199,1824,3930,2542,374,0,120882558,80.7,61187691,44.4,80.7,70.1
1420
+ 2015-02-01,364541,0,197137,17584,28545,15141,0,3342,35213,11350,41262,6210,1143,2030,3596,1589,399,0,123277686,73.4,62970058,33.9,73.4,0.0