tamnd commited on
Commit
1e91583
·
verified ·
1 Parent(s): cd83079

Add 2015-07-03 — 507.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-07-02** (80 days), totaling **40,317,949 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.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.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,12 +104,12 @@ duckdb.sql("""
104
  ## Events per year
105
 
106
  ```
107
- 2015 ██████████████████████████████ 40.3M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 80 | 40,317,949 | 503,974 | 11.9 GB | 6.5 GB | 54m41s | 9h37m | 1h58m |
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 ██████████████████████████████ 19.6M
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 ██████████████████████████████ 2.0M
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.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 | 19,561,628 | 48.5% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 1,881,832 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 3,675,832 | 9.1% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,019,820 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 660,395 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 3,569,263 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,342,929 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 5,726,885 | 14.2% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 889,848 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 130,370 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 247,589 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 375,967 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 195,141 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 40,450 | 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-05** (83 days), totaling **41,510,604 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 12.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.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 ██████████████████████████████ 41.5M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 83 | 41,510,604 | 500,127 | 12.2 GB | 6.7 GB | 56m16s | 9h49m | 1h58m |
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 ██████████████████████████████ 20.2M
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.1M
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.7M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 20,162,749 | 48.6% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 1,934,343 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 3,770,730 | 9.1% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,071,724 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 674,512 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 3,683,718 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,383,728 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 5,898,169 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 914,649 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 134,576 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 254,173 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 386,573 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 199,481 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 41,479 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:716eb5b3e772c37a6df5f3f85f9809702c9d410a28a796cb6e42f0c96f05e297
3
+ size 455291
data/creates/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4cf7dca3117198628e69408588fff6e436b344b356818cc07a7344f86815142
3
+ size 2628696
data/deletes/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:552fae2f54e0ad561b4dc09b54a4584f408609d7ed611dd22b5e8026be70de21
3
+ size 343364
data/forks/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a729cf43e939e534d6a8838ac17b47934afbcfe3cee590dc2ff6f7a15a552591
3
+ size 1907216
data/issue_comments/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f4307bf469ed99c8cfe01240504136cd0b09a022a2fe47bf22a9e2e15d6b91d
3
+ size 8541649
data/issues/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:719bcec86ff409cafcbac6ecbe29f181eac41b664efe9fb1271565677937b392
3
+ size 6146684
data/members/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a59f39b23e02c68b24d66f7cc25dede2d029d0a4bda1d212705d5654347d7905
3
+ size 78507
data/pr_review_comments/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b1a05778b35553788efccc2ec3cf9e3dcab96c7aa382c09704a79f549bd7185
3
+ size 2579562
data/public_events/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:854e93d287fd9627b99495710ac721cbd19e6cc43d515596c5719a2c0f019b52
3
+ size 21320
data/pull_requests/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20104273a3e8fa751d8dd9e6edc6977fe84b99b668a3bcfb66178f83e806c260
3
+ size 4498579
data/pushes/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50a7dadbe919cebc39612a9da3b6913f33df322665db6d9cc2187d5d760c547d
3
+ size 58911972
data/releases/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b853087b5ce2abb95a34eb230e4c3bb527a19676865455c6df6744e0a59de08f
3
+ size 257525
data/stars/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:998b8c0e49b9b372ee51669ab111955ab8d7afd9eaafabe81872966a49b2d2a4
3
+ size 1699620
data/wiki_pages/2015/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ad935166922f1e87606ca7f33b74c3fd4c86b6ea76c71525f23263398f7b7b7
3
+ size 309466
stats.csv CHANGED
@@ -78,4 +78,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,43.7
80
  2015-07-01,577176,0,272943,27450,56863,30825,0,13370,51519,19670,79063,11748,1982,3650,4969,2590,534,0,229599457,432.2,104312103,42.5,432.2,39.0
81
- 2015-07-02,571085,0,268858,27299,55111,30615,0,11576,53702,19621,77974,12654,1886,3770,4988,2351,680,0,221977408,426.6,101149234,43.3,426.6,0.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,43.7
80
  2015-07-01,577176,0,272943,27450,56863,30825,0,13370,51519,19670,79063,11748,1982,3650,4969,2590,534,0,229599457,432.2,104312103,42.5,432.2,39.0
81
+ 2015-07-02,571085,0,268858,27299,55111,30615,0,11576,53702,19621,77974,12654,1886,3770,4988,2351,680,0,221977408,426.6,101149234,43.3,426.6,39.8
82
+ 2015-07-03,507377,0,246139,23151,44889,24730,0,7150,50366,17871,71306,9977,1791,3408,4140,1990,469,0,184296180,326.6,88379451,34.5,326.6,0.0
83
+ 2015-07-04,337117,0,175348,14324,24418,13171,0,3128,31796,11212,48975,7534,1155,1615,2878,1288,275,0,109470741,202.8,55544409,32.4,202.8,0.0
84
+ 2015-07-05,348161,0,179634,15036,25591,14003,0,3839,32293,11716,51003,7290,1260,1561,3588,1062,285,0,113940432,203.3,57460379,28.0,203.3,0.0