tamnd commited on
Commit
710d693
·
verified ·
1 Parent(s): 2864f70

Add 2015-05-11 — 632.0K 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 **2015-04-14** to **2015-05-10** (27 days), totaling **15,109,471 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 5.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.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
 
@@ -104,12 +104,12 @@ duckdb.sql("""
104
  ## Events per year
105
 
106
  ```
107
- 2015 ██████████████████████████████ 15.1M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 27 | 15,109,471 | 559,610 | 5.1 GB | 2.5 GB | 31m09s | 4h30m | 51m34s |
113
 
114
 
115
  ### Pushes per year
@@ -117,7 +117,7 @@ duckdb.sql("""
117
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
118
 
119
  ```
120
- 2015 ██████████████████████████████ 7.5M
121
  ```
122
 
123
 
@@ -134,7 +134,7 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
134
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
135
 
136
  ```
137
- 2015 ██████████████████████████████ 674.6K
138
  ```
139
 
140
 
@@ -153,7 +153,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
153
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
154
 
155
  ```
156
- 2015 ██████████████████████████████ 729.2K
157
  ```
158
 
159
 
@@ -584,20 +584,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
- | `pushes` | PushEvent | 7,516,004 | 49.7% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 674,609 | 4.5% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 1,313,355 | 8.7% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 729,194 | 4.8% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 233,405 | 1.5% | Line-level PR comments |
592
- | `stars` | WatchEvent | 1,288,500 | 8.5% | Repository stars |
593
- | `forks` | ForkEvent | 487,672 | 3.2% | Repository forks |
594
- | `creates` | CreateEvent | 2,182,264 | 14.4% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 311,805 | 2.1% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 45,715 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 90,738 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 142,821 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 78,334 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 15,055 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
 
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 **2015-04-14** to **2015-05-11** (28 days), totaling **15,741,451 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 5.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.6 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
 
 
104
  ## Events per year
105
 
106
  ```
107
+ 2015 ██████████████████████████████ 15.7M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 28 | 15,741,451 | 562,194 | 5.3 GB | 2.6 GB | 31m52s | 4h41m | 53m38s |
113
 
114
 
115
  ### Pushes per year
 
117
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
118
 
119
  ```
120
+ 2015 ██████████████████████████████ 7.8M
121
  ```
122
 
123
 
 
134
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
135
 
136
  ```
137
+ 2015 ██████████████████████████████ 704.3K
138
  ```
139
 
140
 
 
153
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
154
 
155
  ```
156
+ 2015 ██████████████████████████████ 760.8K
157
  ```
158
 
159
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 7,821,388 | 49.7% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 704,345 | 4.5% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 1,371,032 | 8.7% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 760,836 | 4.8% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 243,966 | 1.5% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 1,343,244 | 8.5% | Repository stars |
593
+ | `forks` | ForkEvent | 507,879 | 3.2% | Repository forks |
594
+ | `creates` | CreateEvent | 2,274,315 | 14.4% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 325,956 | 2.1% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 47,658 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 94,687 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 148,861 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 81,603 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 15,681 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf96c631d5240af8f18c050c4804b4208ecafcf2d7e9f924c7859eface2b9681
3
+ size 514620
data/creates/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71521d8218ca331c5db66e6aef0f96727fa4fdeea07f213f0effc21ed0debbef
3
+ size 3397076
data/deletes/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc798b846311ccb34975edb18a496d67bf4fc0b5eb0f7741428afb2f6bc78273
3
+ size 470735
data/forks/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbde713bb0b7cbb2b2ecb48c098fb8a711b97052610c1bde9b99e237013d4f90
3
+ size 2147789
data/issue_comments/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66a607b5ff9b8519dc496d4226401a6cfe59905b44f9d4ea37cfcb3c053683cf
3
+ size 10702997
data/issues/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc49d2e388498ae058a192a2fb4a694e0987c84c13bf406fea4ee99b847fe3bc
3
+ size 7343428
data/members/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69ab509291a3ea21d03d7c5f9ed0898d8193a4c8bbbe6644cdac2fc3b7a0eb8a
3
+ size 127698
data/pr_review_comments/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76864689cf88fa17f1a39d9d4f86a0fe00516fb6eb39ef3d325b898462ef71d3
3
+ size 3664777
data/public_events/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3debfbebbcd633f41aa3394feb7a5c2fba523cd4e44ca9565bba54aac5e024a5
3
+ size 28934
data/pull_requests/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47c9b2eb35125c5269db056059e041af464985c41fe32fccf90ad74f5b08b919
3
+ size 5723342
data/pushes/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:466405f507bed6a7b145a73452a40ed3c7ebf99f2559d1f6d6b4584af09461ed
3
+ size 75251068
data/releases/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdd1537c6231634d32bfc07733b9fd594eca6ab351cfbd01e514a4b051449822
3
+ size 276667
data/stars/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75098db9d178ade717bddef043c136c8150aea35fd4b2856adf1679938bf9c7d
3
+ size 1834228
data/wiki_pages/2015/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f859cb84fd7bb65c9d9c18e4de3a15bae6748b15c50592336f07ce240cbe73b
3
+ size 354246
stats.csv CHANGED
@@ -25,4 +25,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
25
  2015-05-07,656942,0,317297,29836,61590,33598,0,12025,57229,21417,93046,14881,1987,4292,5777,3313,654,0,247519749,637.8,115915888,97.4,637.8,162.2
26
  2015-05-08,600779,0,287665,27355,58405,30544,0,9492,54631,19808,86258,11885,1917,3696,5770,2738,615,0,223446675,569.1,103876855,86.7,569.1,179.4
27
  2015-05-09,396212,0,202168,16833,29826,16563,0,3654,34779,13133,63123,7112,1160,2141,3442,1935,343,0,130292697,284.4,66649776,29.8,284.4,72.6
28
- 2015-05-10,403527,0,213943,16076,27875,15678,0,3810,34213,13161,63114,7017,1326,2020,3369,1507,418,0,129515968,338.5,67516622,30.4,338.5,0.0
 
 
25
  2015-05-07,656942,0,317297,29836,61590,33598,0,12025,57229,21417,93046,14881,1987,4292,5777,3313,654,0,247519749,637.8,115915888,97.4,637.8,162.2
26
  2015-05-08,600779,0,287665,27355,58405,30544,0,9492,54631,19808,86258,11885,1917,3696,5770,2738,615,0,223446675,569.1,103876855,86.7,569.1,179.4
27
  2015-05-09,396212,0,202168,16833,29826,16563,0,3654,34779,13133,63123,7112,1160,2141,3442,1935,343,0,130292697,284.4,66649776,29.8,284.4,72.6
28
+ 2015-05-10,403527,0,213943,16076,27875,15678,0,3810,34213,13161,63114,7017,1326,2020,3369,1507,418,0,129515968,338.5,67516622,30.4,338.5,124.4
29
+ 2015-05-11,631980,0,305384,29736,57677,31642,0,10561,54744,20207,92051,14151,1943,3949,6040,3269,626,0,234992053,672.2,111837605,43.0,672.2,0.0