tamnd commited on
Commit
593e380
·
verified ·
1 Parent(s): ae98afe

Add 2015-07-24 — 636.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 **2015-04-14** to **2015-07-23** (101 days), totaling **51,756,722 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 15.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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
 
@@ -104,12 +104,12 @@ duckdb.sql("""
104
  ## Events per year
105
 
106
  ```
107
- 2015 ██████████████████████████████ 51.8M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 101 | 51,756,722 | 512,442 | 15.8 GB | 8.4 GB | 1h13m | 11h45m | 2h15m |
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.1M
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.6M
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,059,867 | 48.4% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 2,417,256 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 4,753,657 | 9.2% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,596,586 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 865,150 | 1.7% | Line-level PR comments |
592
- | `stars` | WatchEvent | 4,616,859 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,740,195 | 3.4% | Repository forks |
594
- | `creates` | CreateEvent | 7,299,687 | 14.1% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 1,147,955 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 171,455 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 319,311 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 478,101 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 240,210 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 50,433 | 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-24** (102 days), totaling **52,393,446 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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
  ## Events per year
105
 
106
  ```
107
+ 2015 ██████████████████████████████ 52.4M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 102 | 52,393,446 | 513,661 | 16.1 GB | 8.5 GB | 1h14m | 11h53m | 2h16m |
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 ██████████████████████████████ 25.3M
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.7M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 25,342,508 | 48.4% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 2,446,666 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 4,814,022 | 9.2% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,628,399 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 876,894 | 1.7% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 4,672,511 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,760,647 | 3.4% | Repository forks |
594
+ | `creates` | CreateEvent | 7,416,723 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 1,161,361 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 174,411 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 322,694 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 483,106 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 242,554 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 50,950 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20eb164e2491e6f3fe35b12d3db95a5e1bd6cedf24e162856a77534241de4b18
3
+ size 458201
data/creates/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f484e469e95af6c95365a36dedcc812e64c32b36f5714e8fcb66b037ff2f01c
3
+ size 3802662
data/deletes/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e22c50650d77c414022d41c28a5fa9435573c0c1fa16a5e52f1828782bc97d2
3
+ size 459821
data/forks/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7dd648ed14994c63d8cfe775a2b938d995db7a64552ed2fed2863ceec2868e4
3
+ size 2158154
data/issue_comments/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:336791a1b6c08bc6c8816313a2845727a161f7899dea4244d0004cc03f965a16
3
+ size 11009681
data/issues/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:383e3a170f311ce9f3a0a1ee506dbdc066faae6f97ea0c42b52d25af44370741
3
+ size 7187842
data/members/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a60c3b4d717fa53d218d1e92e9a2fd5156e5cf74f8c034e1e3d8292340cf8fe
3
+ size 93115
data/pr_review_comments/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85964f2a459811a900afe22ae22e5da444e3907f86a1ae01f1ba084083e78e1c
3
+ size 3891900
data/public_events/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2fc47d5f719d586d8c55b51a117cb98f988d555160ad93ce40a086a39d9e87a
3
+ size 22779
data/pull_requests/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:081be0749c314ee57097515f1a08ca2a2eb51bf1448b043a80a064bb2df9efe3
3
+ size 5660233
data/pushes/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6cad8c2714c766c1772fe64259010a01c548f0152be8cb3839a25d6384c0fb1
3
+ size 67818055
data/releases/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c025f4f3b5a34f0959b0d84a521cf2f70f367942d193987e6e22aa82331ae07e
3
+ size 356319
data/stars/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f369f34220ca7e9e4aa8719fc906ce73fc980c8bcae76f96d3523d3975115c7
3
+ size 1868645
data/wiki_pages/2015/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b51b239c1a792c20cb2c2c94e3ead6d3bc993ffb3968411fad085db557464db
3
+ size 290791
stats.csv CHANGED
@@ -99,4 +99,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
99
  2015-07-20,592705,0,276470,29416,58092,30571,0,11629,56196,20439,81843,13872,2109,4014,5309,2161,584,0,227262399,418.5,104430421,38.1,418.5,29.6
100
  2015-07-21,625937,0,297196,29681,62658,33685,0,12949,57199,21401,81727,14602,2139,4500,5121,2472,607,0,244688612,439.2,111397485,40.2,439.2,52.0
101
  2015-07-22,632842,0,306454,30231,61864,32953,0,12519,56669,21053,81824,15004,2434,3700,5137,2470,530,0,244147623,430.8,112928902,42.2,430.8,35.3
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,0.0
 
 
99
  2015-07-20,592705,0,276470,29416,58092,30571,0,11629,56196,20439,81843,13872,2109,4014,5309,2161,584,0,227262399,418.5,104430421,38.1,418.5,29.6
100
  2015-07-21,625937,0,297196,29681,62658,33685,0,12949,57199,21401,81727,14602,2139,4500,5121,2472,607,0,244688612,439.2,111397485,40.2,439.2,52.0
101
  2015-07-22,632842,0,306454,30231,61864,32953,0,12519,56669,21053,81824,15004,2434,3700,5137,2470,530,0,244147623,430.8,112928902,42.2,430.8,35.3
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,0.0