tamnd commited on
Commit
ee97924
·
verified ·
1 Parent(s): 82ddd34

Add 2015-07-27 — 620.6K 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-07-26** (104 days), totaling **53,212,475 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 16.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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,12 +104,12 @@ duckdb.sql("""
104
  ## Events per year
105
 
106
  ```
107
- 2015 ██████████████████████████████ 53.2M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 104 | 53,212,475 | 511,658 | 16.3 GB | 8.6 GB | 1h15m | 12h03m | 2h17m |
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 ██████████████████████████████ 25.7M
121
  ```
122
 
123
 
@@ -171,7 +171,7 @@ GROUP BY repo_name ORDER BY merged_prs DESC LIMIT 20;
171
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
172
 
173
  ```
174
- 2015 ██████████████████████████████ 4.7M
175
  ```
176
 
177
 
@@ -584,20 +584,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
- | `pushes` | PushEvent | 25,729,910 | 48.4% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 2,483,345 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 4,875,200 | 9.2% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,658,825 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 885,874 | 1.7% | Line-level PR comments |
592
- | `stars` | WatchEvent | 4,741,153 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,787,446 | 3.4% | Repository forks |
594
- | `creates` | CreateEvent | 7,577,206 | 14.2% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 1,183,069 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 177,136 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 326,988 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 489,582 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 245,088 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 51,653 | 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-07-27** (105 days), totaling **53,833,042 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 16.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.7 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 ██████████████████████████████ 53.8M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 105 | 53,833,042 | 512,695 | 16.5 GB | 8.7 GB | 1h16m | 12h11m | 2h18m |
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 ██████████████████████████████ 26.0M
121
  ```
122
 
123
 
 
171
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
172
 
173
  ```
174
+ 2015 ██████████████████████████████ 4.8M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 26,025,546 | 48.3% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 2,513,633 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 4,936,289 | 9.2% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,691,945 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 898,713 | 1.7% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 4,799,380 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,807,875 | 3.4% | Repository forks |
594
+ | `creates` | CreateEvent | 7,657,637 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 1,196,659 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 179,358 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 331,326 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 494,911 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 247,511 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 52,259 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3075a1ea08e3bd0de85cacb951b1676e26226aff2bb976f1537bd2e44a6bdce
3
+ size 565020
data/creates/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d93a29a3872dd6c276235daa630f44682ad5421da37feb9d4adc7439dc2c3580
3
+ size 3153879
data/deletes/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6080c9d024f59516bce5090d9647cfc54d04d73ad66664ab09fa75ce770fe185
3
+ size 469593
data/forks/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f2c4fcd8d761759fea9205d5c67be08e520cb8b1dfc97cad0e9fe74e9cd272a
3
+ size 2178474
data/issue_comments/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f6aa9523a1e99aa38542b847b765cb4d86e4574afb6d0e1e627a364a37d91d8
3
+ size 11459809
data/issues/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07a8b8a83cb0425bb66f7fb9d9a1f198ed8028c72e7af2664b96ccc972ce12c6
3
+ size 8168614
data/members/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36c82970b5862a78bf274c01e1ba3f4000791a0b0078e60d53e1dd370d2454fa
3
+ size 98866
data/pr_review_comments/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c0feaa664573e232961ae54b9380bf292cdc26d5b4683b4ae1ec210e4f7f5c2
3
+ size 4477724
data/public_events/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e939636acddc0c53ab131ac8355c9b94f8ea4aab551eef730965e08ef86f7c01
3
+ size 25811
data/pull_requests/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4519cc379443da74b318ddbcfbe64212dd5c51d74323ecadba7b21cb542e5ec
3
+ size 6074914
data/pushes/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d4a02fee3b008ea8d2abcd126ab4f65d5410cf47c9650d1e7ad6cd090df8169
3
+ size 72799085
data/releases/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78af426c2ee825dd379486d1e6d96689a4940e28746a3acbeb45e50a77eee2c5
3
+ size 318823
data/stars/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7aa6cfb609b858428550f9774f2f13826edb1c90f7ed1bc02f424aa8018e00a
3
+ size 1937889
data/wiki_pages/2015/07/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8fdbafa57c006cd3baa4bd2a46970172e5441d352674a4543600814721fe87ea
3
+ size 428142
stats.csv CHANGED
@@ -102,4 +102,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
102
  2015-07-23,673389,0,310400,30887,65820,34558,0,12446,58266,22154,103593,19850,2342,4150,5671,2793,459,0,254854305,464.1,116223895,95.3,464.1,36.8
103
  2015-07-24,636724,0,282641,29410,60365,31813,0,11744,55652,20452,117036,13406,2956,3383,5005,2344,517,0,234611221,470.5,105078198,36.7,470.5,53.2
104
  2015-07-25,399966,0,186400,17210,29516,15609,0,4254,34123,12988,83886,7296,1316,2146,3378,1521,323,0,126277355,282.1,62077645,33.9,282.1,32.0
105
- 2015-07-26,419063,0,201002,19469,31662,14817,0,4726,34519,13811,76597,14412,1409,2148,3098,1013,380,0,129304972,305.8,64801413,28.3,305.8,0.0
 
 
102
  2015-07-23,673389,0,310400,30887,65820,34558,0,12446,58266,22154,103593,19850,2342,4150,5671,2793,459,0,254854305,464.1,116223895,95.3,464.1,36.8
103
  2015-07-24,636724,0,282641,29410,60365,31813,0,11744,55652,20452,117036,13406,2956,3383,5005,2344,517,0,234611221,470.5,105078198,36.7,470.5,53.2
104
  2015-07-25,399966,0,186400,17210,29516,15609,0,4254,34123,12988,83886,7296,1316,2146,3378,1521,323,0,126277355,282.1,62077645,33.9,282.1,32.0
105
+ 2015-07-26,419063,0,201002,19469,31662,14817,0,4726,34519,13811,76597,14412,1409,2148,3098,1013,380,0,129304972,305.8,64801413,28.3,305.8,32.4
106
+ 2015-07-27,620567,0,295636,30288,61089,33120,0,12839,58227,20429,80431,13590,2222,4338,5329,2423,606,0,242770233,489.7,112156643,35.7,489.7,0.0