tamnd commited on
Commit
0fb8b95
·
verified ·
1 Parent(s): 6640f80

Add 2015-04-03 — 381.7K 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-04-02** (1,469 days), totaling **299,987,593 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 102.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 22.4 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 █████████░░░░░░░░░░░░░░░░░░░░░ 38.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 | 79 | 38,681,915 | 489,644 | 12.5 GB | 6.4 GB | 51m22s | 2h04m | 1h53m |
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 █████████░░░░░░░░░░░░░░░░░░░░░ 19.1M
164
  ```
165
 
166
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 150,386,564 | 50.1% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 17,046,657 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 26,561,926 | 8.9% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 12,667,075 | 4.2% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 3,298,437 | 1.1% | Line-level PR comments |
647
- | `stars` | WatchEvent | 27,640,916 | 9.2% | Repository stars |
648
- | `forks` | ForkEvent | 10,477,422 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 37,553,076 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 4,335,412 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 514,945 | 0.2% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,585,728 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 4,398,442 | 1.5% | Wiki page edits |
654
- | `members` | MemberEvent | 341,782 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 282,134 | 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-04-03** (1,470 days), totaling **300,369,269 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 102.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 22.5 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 █████████░░░░░░░░░░░░░░░░░░░░░ 39.1M
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 | 80 | 39,063,591 | 488,294 | 12.6 GB | 6.4 GB | 52m03s | 2h05m | 1h55m |
152
 
153
 
154
  ### Pushes per year
 
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
+ 2015 █████████░░░░░░░░░░░░░░░░░░░░░ 19.3M
164
  ```
165
 
166
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 150,573,619 | 50.1% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 17,065,398 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 26,596,137 | 8.9% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 12,685,344 | 4.2% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 3,303,668 | 1.1% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 27,677,182 | 9.2% | Repository stars |
648
+ | `forks` | ForkEvent | 10,491,317 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 37,603,438 | 12.5% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 4,343,119 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 516,129 | 0.2% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,588,031 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 4,402,278 | 1.5% | Wiki page edits |
654
+ | `members` | MemberEvent | 344,084 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 282,448 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aec0b1b96323f617d67839751ceb1fc382e5b43d9b09865a41db578430ef3dd5
3
+ size 330670
data/creates/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14ada7f451cefde2f88a42c7f0d200112f533ce4bfc3dc5787b88507f66f2ae3
3
+ size 2024044
data/deletes/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f82fc69991383043aa243ac426d132ae3f2efe5fa4b79da6c86b451e91d1f8d4
3
+ size 262378
data/forks/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51c0e346c91260365c1c94e9b3aeb8e3f2e9e27704928001122e1532bef73b9c
3
+ size 1495671
data/issue_comments/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a052de044162a09cdb7e89a13eda4726a65f1e69cba92deae9711f9c41e63008
3
+ size 6241363
data/issues/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91ac1c218fb79d1b0715ee03f0608204102a8009888072050fbba172d3138b5f
3
+ size 4662133
data/members/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96b4caca478c8dd766ae329418218e612dc70a22171511c5f6be0a6f7191345d
3
+ size 79187
data/pr_review_comments/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52f320a462ac2fb2527471902b4f8562b8bdcfa78b638aa4de1c12f8ef6745ff
3
+ size 1753118
data/public_events/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:196561d314edb5ea2dfa0c1f373f903deb690cb328d1207141de1db345259669
3
+ size 15261
data/pull_requests/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c9fb1537bf48102fabc99e9759900ead087133dcf8c6ec7edb333883384bca0
3
+ size 3311703
data/pushes/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2560b5a368606f2c8bd2252b382ecce55937d9efb72c2aac40da775a65741361
3
+ size 44360414
data/releases/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85384f3020334c872327c9c7681834c9859428eeb4173203c6cf3f55f56a5780
3
+ size 198210
data/stars/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1361a0d759761f8eb971c8502d1046714cdd858065e1aa77d0997f768d75d62e
3
+ size 1215841
data/wiki_pages/2015/04/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c247fbd994d183e1b975a890a05944daad1b3c62f25e57227c3ca76aa6cf3af5
3
+ size 243676
stats.csv CHANGED
@@ -1467,4 +1467,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1467
  2015-03-30,421650,0,202806,20804,40209,20531,0,0,40675,14253,59371,8721,1298,2784,7445,2318,435,0,0,0.0,72473605,0.0,0.0,0.0
1468
  2015-03-31,505124,0,238496,23519,47085,26212,0,9070,49435,17881,68781,10725,1494,3401,5449,3139,437,0,0,0.0,88785073,0.0,0.0,89.4
1469
  2015-04-01,576968,0,276062,29323,56020,30164,0,9814,50543,19879,77356,12954,1810,3650,5471,3366,556,0,220274489,80.9,102510026,39.2,80.9,165.8
1470
- 2015-04-02,457705,0,224931,21922,42975,23983,0,8073,40525,15261,59275,8671,1394,3078,4066,3119,432,0,171592317,69.4,81941578,80.8,69.4,0.0
 
 
1467
  2015-03-30,421650,0,202806,20804,40209,20531,0,0,40675,14253,59371,8721,1298,2784,7445,2318,435,0,0,0.0,72473605,0.0,0.0,0.0
1468
  2015-03-31,505124,0,238496,23519,47085,26212,0,9070,49435,17881,68781,10725,1494,3401,5449,3139,437,0,0,0.0,88785073,0.0,0.0,89.4
1469
  2015-04-01,576968,0,276062,29323,56020,30164,0,9814,50543,19879,77356,12954,1810,3650,5471,3366,556,0,220274489,80.9,102510026,39.2,80.9,165.8
1470
+ 2015-04-02,457705,0,224931,21922,42975,23983,0,8073,40525,15261,59275,8671,1394,3078,4066,3119,432,0,171592317,69.4,81941578,80.8,69.4,97.1
1471
+ 2015-04-03,381676,0,187055,18741,34211,18269,0,5231,36266,13895,50362,7707,1184,2303,3836,2302,314,0,136995029,51.3,66193669,41.0,51.3,0.0