tamnd commited on
Commit
f22e647
·
verified ·
1 Parent(s): fb42e3c

Add 2015-05-06 — 669.9K 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-05** (22 days), totaling **12,382,152 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 4.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.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,12 +104,12 @@ duckdb.sql("""
104
  ## Events per year
105
 
106
  ```
107
- 2015 ██████████████████████████████ 12.4M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 22 | 12,382,152 | 562,825 | 4.2 GB | 2.0 GB | 26m28s | 3h49m | 38m49s |
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 ██████████████████████████████ 6.2M
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 ██████████████████████████████ 555.8K
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 ██████████████████████████████ 599.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 | 6,173,889 | 49.9% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 555,821 | 4.5% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 1,074,754 | 8.7% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 599,469 | 4.8% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 192,855 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 1,051,113 | 8.5% | Repository stars |
593
- | `forks` | ForkEvent | 398,449 | 3.2% | Repository forks |
594
- | `creates` | CreateEvent | 1,771,909 | 14.3% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 256,300 | 2.1% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 37,320 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 74,296 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 118,139 | 1.0% | Wiki page edits |
599
- | `members` | MemberEvent | 65,558 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 12,280 | 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-06** (23 days), totaling **13,052,011 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 4.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.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
  ## Events per year
105
 
106
  ```
107
+ 2015 ██████████████████████████████ 13.1M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 23 | 13,052,011 | 567,478 | 4.4 GB | 2.1 GB | 27m05s | 3h59m | 42m32s |
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 ██████████████████████████████ 6.5M
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 ██████████████████████████████ 584.5K
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 ██████████████████████████████ 632.8K
157
  ```
158
 
159
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 6,494,931 | 49.8% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 584,509 | 4.5% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 1,135,659 | 8.7% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 632,811 | 4.8% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 204,424 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 1,107,648 | 8.5% | Repository stars |
593
+ | `forks` | ForkEvent | 420,153 | 3.2% | Repository forks |
594
+ | `creates` | CreateEvent | 1,876,723 | 14.4% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 270,910 | 2.1% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 39,325 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 78,589 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 124,463 | 1.0% | Wiki page edits |
599
+ | `members` | MemberEvent | 68,841 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 13,025 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c452853fb441afa5430cd12498b901ba4838945536dd6fe892c5303712a2bfe
3
+ size 549314
data/creates/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37fb39f74af5cc8eee7f25c4f3d4289a9936160b6c40a9c0742f19d805a09bf6
3
+ size 3660144
data/deletes/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f2834bd6199462fd1c5e47e839a679d6484eb34426c51087942c9d2e5a6d108
3
+ size 503878
data/forks/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7438e0e77f4e9c2f6ea8dc0bc831f596338fbae2ca2f9d7c5a492485f0d5470f
3
+ size 2307508
data/issue_comments/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec34ac9b3cf14bca42074b7319cf13f439e48aaa74bf0dd426a4bc85408cee69
3
+ size 11090535
data/issues/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7dbf0cc07cded04d9d4e5416ece46c433407e95419570fe376d4b396c8b7b72f
3
+ size 7478016
data/members/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af4da67b37d5a89fc9662ef838072734bf89f8a37be08ae91e4806ad24fe3dfb
3
+ size 130328
data/pr_review_comments/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64a4a164be7c4ba6e97def3b02cffee1ad6908d6ce2dd08ebcc58be181c0007e
3
+ size 3859548
data/public_events/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bab6097e80d17b0943171fe0af34d71150360f32d554208c8b37d481eee3a58
3
+ size 29632
data/pull_requests/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37be35e29e19895d833853e1be7cf0ae49c2f9f6f4c9c112c75247347593bbd9
3
+ size 5857974
data/pushes/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67a7b2b1468ffdf543b63c62414390d1549db9548a2fbab78ebc7c137ba6e48c
3
+ size 78886329
data/releases/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0032b667579674ab25338cdb3d4905b3ebb9bc231f2872c00c2b118460685493
3
+ size 290321
data/stars/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2b6b804b7ccb8d6d829733cd8bd72ef2e58065ac7c17f7bf4450b9383361aeb
3
+ size 1931285
data/wiki_pages/2015/05/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7493938a6d8b423d003ce2761c2ca8f564806afbcab31f6b199f1c1e55f61d20
3
+ size 364114
stats.csv CHANGED
@@ -20,4 +20,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
20
  2015-05-02,371428,0,194613,15410,25698,15038,0,3512,29665,11035,58686,8924,1268,1916,3378,1848,437,0,118782410,337.4,61455961,77.9,337.4,45.0
21
  2015-05-03,401608,0,215766,17298,27541,16073,0,3897,32966,11612,59580,7559,1355,2115,3851,1589,406,0,129123297,357.6,67477825,90.1,357.6,59.0
22
  2015-05-04,577241,0,287353,27398,51681,27759,0,10098,49757,18741,77790,12374,1883,3542,5352,2889,624,0,212484736,549.4,100843783,33.9,549.4,77.4
23
- 2015-05-05,622818,0,307887,28853,58271,31943,0,11009,52744,20172,83911,12590,1857,3749,6082,3078,672,0,234337725,604.5,110645475,35.3,604.5,0.0
 
 
20
  2015-05-02,371428,0,194613,15410,25698,15038,0,3512,29665,11035,58686,8924,1268,1916,3378,1848,437,0,118782410,337.4,61455961,77.9,337.4,45.0
21
  2015-05-03,401608,0,215766,17298,27541,16073,0,3897,32966,11612,59580,7559,1355,2115,3851,1589,406,0,129123297,357.6,67477825,90.1,357.6,59.0
22
  2015-05-04,577241,0,287353,27398,51681,27759,0,10098,49757,18741,77790,12374,1883,3542,5352,2889,624,0,212484736,549.4,100843783,33.9,549.4,77.4
23
+ 2015-05-05,622818,0,307887,28853,58271,31943,0,11009,52744,20172,83911,12590,1857,3749,6082,3078,672,0,234337725,604.5,110645475,35.3,604.5,223.5
24
+ 2015-05-06,669859,0,321042,28688,60905,33342,0,11569,56535,21704,104814,14610,2005,4293,6324,3283,745,0,247143315,596.0,116938926,37.0,596.0,0.0