tamnd commited on
Commit
21bdf13
·
verified ·
1 Parent(s): d43c65b

Add 2015-06-29 — 603.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-06-28** (76 days), totaling **37,938,651 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 11.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.1 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 ██████████████████████████████ 37.9M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 76 | 37,938,651 | 499,192 | 11.0 GB | 6.1 GB | 50m09s | 9h08m | 1h55m |
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 ██████████████████████████████ 18.4M
121
  ```
122
 
123
 
@@ -584,20 +584,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
- | `pushes` | PushEvent | 18,436,517 | 48.6% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 1,767,958 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 3,440,510 | 9.1% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 1,892,825 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 608,455 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 3,350,991 | 8.8% | Repository stars |
593
- | `forks` | ForkEvent | 1,263,255 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 5,406,113 | 14.2% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 839,951 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 122,224 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 232,353 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 354,401 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 185,043 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 38,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-06-29** (77 days), totaling **38,541,615 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 11.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.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
 
 
104
  ## Events per year
105
 
106
  ```
107
+ 2015 ██████████████████████████████ 38.5M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 77 | 38,541,615 | 500,540 | 11.2 GB | 6.2 GB | 51m39s | 9h15m | 1h56m |
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 ██████████████████████████████ 18.7M
121
  ```
122
 
123
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 18,722,622 | 48.6% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 1,797,498 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 3,500,700 | 9.1% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 1,924,824 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 621,063 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 3,406,884 | 8.8% | Repository stars |
593
+ | `forks` | ForkEvent | 1,282,700 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 5,486,445 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 852,096 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 124,208 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 236,050 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 360,210 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 187,696 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 38,619 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d95cabaa0c847cd770d329edabe4cde2dd50eede44233620fdea13b43b7d22e4
3
+ size 506191
data/creates/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec31448ac71dbb5774e48de118ab2b0378e1931cb04e276eb9c66cb875b551bc
3
+ size 3124173
data/deletes/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e50d3fdd21570b694bd8e3da6475bd5f73d8d4ca92e524df8fab97c233cc9de4
3
+ size 434188
data/forks/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f0f64ed3b7575ed595e452dc27c940f711d463f777a5639f4477f8a3b1eaf52
3
+ size 2078184
data/issue_comments/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0408c71d68ee71546f624ae7b23f56128cd1c3b0a5d6e923de6244f327de1b67
3
+ size 10987193
data/issues/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:423153d1f3e9bf118463eec6bb6246215829ae21589b07b7cd944fb674778148
3
+ size 7364742
data/members/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89239a7d1fb77fb2c415ffc105c646f29bafc07ab8b6bc328dee6853952b2602
3
+ size 106043
data/pr_review_comments/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:669c5e15da9339775d3051b3b3e392b3957dc68cd9d8d357ad8e4957fa671066
3
+ size 4293755
data/public_events/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:771e995698bf90c880c4264cea946958d59e3e3618bfa696fc540eba985878be
3
+ size 25904
data/pull_requests/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f999c7bb42539cab106d40a908f29cd95afc12aa73c78a69cad64a797e830e5f
3
+ size 5885625
data/pushes/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54c0ad938246d2041ecda02d3e1e159db6cbc36a0fd85b7d82254da76162d071
3
+ size 70389862
data/releases/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7446c1e2e9e6a6bee2d30c53d6d560f28f7a5f927440db07d41d5ca80810b79
3
+ size 309346
data/stars/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b152ef5da552a96929e8fab5f893fd3edaee7237071d7a696690fd28c6950ee5
3
+ size 1889716
data/wiki_pages/2015/06/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88adceea6f85538d1cccf5be0f87dd651bb849f08b08c1ef69b8e41aa878bb27
3
+ size 338539
stats.csv CHANGED
@@ -74,4 +74,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
74
  2015-06-25,634985,0,308353,30310,62241,34911,0,12440,54284,20986,83114,13378,2000,4216,5488,2605,659,0,246336432,500.1,113988907,39.4,500.1,38.9
75
  2015-06-26,593359,0,283957,29117,55945,31377,0,11011,51208,19168,84509,12950,1908,4199,5072,2406,532,0,226885546,446.9,105244715,37.4,446.9,36.2
76
  2015-06-27,367017,0,189540,15305,27207,15012,0,3642,32291,12215,56659,6526,1158,1937,3108,2116,301,0,120439220,219.3,60496973,28.9,219.3,31.7
77
- 2015-06-28,372368,0,198421,15988,27437,15476,0,3634,32890,11852,51087,7144,1247,1857,3616,1349,370,0,122576430,221.1,62151068,29.2,221.1,0.0
 
 
74
  2015-06-25,634985,0,308353,30310,62241,34911,0,12440,54284,20986,83114,13378,2000,4216,5488,2605,659,0,246336432,500.1,113988907,39.4,500.1,38.9
75
  2015-06-26,593359,0,283957,29117,55945,31377,0,11011,51208,19168,84509,12950,1908,4199,5072,2406,532,0,226885546,446.9,105244715,37.4,446.9,36.2
76
  2015-06-27,367017,0,189540,15305,27207,15012,0,3642,32291,12215,56659,6526,1158,1937,3108,2116,301,0,120439220,219.3,60496973,28.9,219.3,31.7
77
+ 2015-06-28,372368,0,198421,15988,27437,15476,0,3634,32890,11852,51087,7144,1247,1857,3616,1349,370,0,122576430,221.1,62151068,29.2,221.1,46.0
78
+ 2015-06-29,602964,0,286105,29540,60190,31999,0,12608,55893,19445,80332,12145,1984,3697,5809,2653,564,0,234573054,438.2,107733461,90.6,438.2,0.0