tamnd commited on
Commit
9427e1e
·
verified ·
1 Parent(s): 2140931

Add 2015-05-19 — 258.4K 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-18** (35 days), totaling **17,899,764 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.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.9 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 ██████████████████████████████ 17.9M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 35 | 17,899,764 | 511,421 | 5.8 GB | 2.9 GB | 33m25s | 5h05m | 1h02m |
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 ██████████████████████████████ 8.7M
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 ██████████████████████████████ 814.4K
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 ██████████████████████████████ 881.5K
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 | 8,724,574 | 48.7% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 814,401 | 4.5% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 1,587,262 | 8.9% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 881,476 | 4.9% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 281,235 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 1,563,870 | 8.7% | Repository stars |
593
- | `forks` | ForkEvent | 592,144 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 2,632,014 | 14.7% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 375,994 | 2.1% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 55,000 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 108,935 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 171,083 | 1.0% | Wiki page edits |
599
- | `members` | MemberEvent | 93,678 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 18,098 | 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-20** (37 days), totaling **18,396,218 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 6.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.0 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 ██████████████████████████████ 18.4M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 37 | 18,396,218 | 497,195 | 6.0 GB | 3.0 GB | 34m08s | 5h12m | 1h02m |
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 ██████████████████████████████ 9.0M
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 ██████████████████████████████ 839.1K
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 ██████████████████████████████ 906.0K
157
  ```
158
 
159
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 8,962,725 | 48.7% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 839,092 | 4.6% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 1,634,016 | 8.9% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 906,020 | 4.9% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 289,085 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 1,606,015 | 8.7% | Repository stars |
593
+ | `forks` | ForkEvent | 608,053 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 2,706,033 | 14.7% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 386,903 | 2.1% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 56,393 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 112,113 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 175,248 | 1.0% | Wiki page edits |
599
+ | `members` | MemberEvent | 95,887 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 18,635 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85d587843e390dece3ddde0611714dc6af3847d382ebfab6fc451daf2f3159c9
3
+ size 236555
data/creates/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdf57232417827d6e975f6b959db2ba67d8380cfbdce96fe50cd1b582a41ca26
3
+ size 1375024
data/deletes/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf48a3aa758355f54135280ba89051dacaf6415009e500cfd7a530d3d5d3b921
3
+ size 182949
data/forks/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1529b00c8875c320e5f1e08f9328d9efff89f012d4b9e6dba1a4b262a04c70e3
3
+ size 983372
data/issue_comments/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfe84443b8fb6f93a20074caf08a0f2d1df830f9857c0bb1c14f7a4e18dcd73c
3
+ size 4635095
data/issues/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45eb96082183bf009af8540e2e9f854b36ef48d8cb866dae1e522379c32d5485
3
+ size 3176668
data/members/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7178bcda913c94cbe71c4160dc0d2f6c1b624d88d4d7734b5fe28302b92b00e3
3
+ size 48648
data/pr_review_comments/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9b785cd1aab5513c5d0ff605aacc2e412e8b1b1e2d4fd03f8d7520cbacef697
3
+ size 1485063
data/public_events/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0cf5dc280248e832a4ba8b97b9212970679c4264a630d93437528123b23eadc
3
+ size 13831
data/pull_requests/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d11cace91b51036b15c129906c453bbbd37ccea99c35b2fe2c27fe682683d331
3
+ size 2572093
data/pushes/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73bca2d86a34888e5300be225ac54bf0e1e1929063e8c27053aea765f050bca2
3
+ size 30767272
data/releases/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9612a033cfe98e6157b4ad5caac89dab0d6239e94f690fd3a03130d9d7680442
3
+ size 146786
data/stars/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:844901b9011d164223cae9f8676e1bb5aaeb0829755a94cae83c6fb89cb905cd
3
+ size 788196
data/wiki_pages/2015/05/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8df34b18c9e65542b30ac7def013599660302c246d37f65d29ce9d88a4961785
3
+ size 131232
stats.csv CHANGED
@@ -33,4 +33,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
33
  2015-05-15,202876,0,100001,7991,15773,9272,0,2745,23119,8504,27158,3510,639,1157,1928,881,198,0,0,0.0,34468063,0.0,0.0,105.8
34
  2015-05-16,204645,0,103708,9281,15169,8443,0,1929,19715,7694,30435,3348,557,1032,2084,1053,197,0,0,0.0,34161328,0.0,0.0,36.8
35
  2015-05-17,21896,0,11949,863,1395,964,0,131,1948,806,3060,333,51,97,164,104,31,0,0,0.0,3996748,0.0,0.0,23.6
36
- 2015-05-18,173081,0,86597,8114,13408,7824,0,1934,18109,6034,23561,3675,516,913,1541,678,177,0,59515033,134.2,29305081,13.8,134.2,0.0
 
 
 
33
  2015-05-15,202876,0,100001,7991,15773,9272,0,2745,23119,8504,27158,3510,639,1157,1928,881,198,0,0,0.0,34468063,0.0,0.0,105.8
34
  2015-05-16,204645,0,103708,9281,15169,8443,0,1929,19715,7694,30435,3348,557,1032,2084,1053,197,0,0,0.0,34161328,0.0,0.0,36.8
35
  2015-05-17,21896,0,11949,863,1395,964,0,131,1948,806,3060,333,51,97,164,104,31,0,0,0.0,3996748,0.0,0.0,23.6
36
+ 2015-05-18,173081,0,86597,8114,13408,7824,0,1934,18109,6034,23561,3675,516,913,1541,678,177,0,59515033,134.2,29305081,13.8,134.2,36.1
37
+ 2015-05-19,258363,0,126741,13234,24998,13080,0,4274,22599,8339,34191,4908,778,1707,2126,1103,285,0,97889125,211.7,46542784,19.6,211.7,0.0
38
+ 2015-05-20,238091,0,111410,11457,21756,11464,0,3576,19546,7570,39828,6001,615,1471,2039,1106,252,0,87151172,191.7,41092107,23.5,191.7,0.0