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

Add 2015-06-30 — 628.1K 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-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,12 +104,12 @@ duckdb.sql("""
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,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.7M
121
  ```
122
 
123
 
@@ -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 ██████████████████████████████ 1.9M
157
  ```
158
 
159
 
@@ -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 ██████████████████████████████ 3.4M
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 | 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
 
 
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-30** (78 days), totaling **39,169,688 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.3 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 ██████████████████████████████ 39.2M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 78 | 39,169,688 | 502,175 | 11.4 GB | 6.3 GB | 53m15s | 9h23m | 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 ██████████████████████████████ 19.0M
121
  ```
122
 
123
 
 
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 ██████████████████████████████ 2.0M
157
  ```
158
 
159
 
 
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 ██████████████████████████████ 3.5M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 19,019,827 | 48.6% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 1,827,083 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 3,563,858 | 9.1% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 1,958,380 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 635,449 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 3,464,042 | 8.8% | Repository stars |
593
+ | `forks` | ForkEvent | 1,303,638 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 5,569,848 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 865,446 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 126,502 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 240,169 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 366,010 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 190,200 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 39,236 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3585973b7ce958165f48c637a704ae16075dd281ef2265140d636ba7cc78f5d
3
+ size 539442
data/creates/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a10e7e26aa478f3229d10f65582c0574cc0008e00841134ceabf51d67c05849
3
+ size 3291822
data/deletes/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3437b3c4f6d426c09dbdbc6819081c4309542f1f8b9a60348f380aee57ee4082
3
+ size 470804
data/forks/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7dc63876ba8bd52ef63987886b9911a57e0599a2956b78299166458fbb8b681
3
+ size 2278682
data/issue_comments/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94e14b781134b8af5b841535ecaf67268cd4a829efdaea822031096748cf02a2
3
+ size 11561703
data/issues/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25286b8670651ff7f5b9710f98902f0cd886e8b62feedc99c74d6db19c8b1ea6
3
+ size 7343514
data/members/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:293a32d5a7b1618b7f2acdb23997047c79d79a0b32f47c425d83f1dc7c17fb46
3
+ size 102008
data/pr_review_comments/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:edcf1d44b31739592ad4c67d3494e5ec9793f69519b9afb8b80ee488a35660d8
3
+ size 5195404
data/public_events/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f0e46859c3e26f07cd95649203053037df6b030ed754afd861b66dffd811c49
3
+ size 28280
data/pull_requests/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79f058c3a7d0dba2b55018cfb3b3df98b45ba11477ea319dcbb012a8e3b24c8e
3
+ size 6100793
data/pushes/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6675db041a74bf86689be02bdf5f71c5cfd896f7f36ff7fae065b14bcd55919
3
+ size 73920263
data/releases/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:312f2b77b983aafa20bcd60e5cde2fa3302da8f52e52c8d6c4bcb2fdb9e55c1e
3
+ size 323990
data/stars/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5401abb9761877810ed4eea61da99a7206d897cfbc1e245497aff05f4dc4c5a
3
+ size 1920066
data/wiki_pages/2015/06/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbb74de3a85cb5b77421c24b7c25e1ba55d4184199462595eecc945bef4544b8
3
+ size 398719
stats.csv CHANGED
@@ -75,4 +75,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
 
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,37.1
79
+ 2015-06-30,628073,0,297205,29585,63158,33556,0,14386,57158,20938,83403,13350,2294,4119,5800,2504,617,0,249903209,467.9,113475490,95.8,467.9,0.0