tamnd commited on
Commit
2753929
·
verified ·
1 Parent(s): 9184065

Add 2015-08-02 — 357.8K 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-08-01** (110 days), totaling **56,747,879 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 17.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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 ██████████████████████████████ 56.7M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 110 | 56,747,879 | 515,889 | 17.6 GB | 9.2 GB | 1h19m | 12h45m | 2h25m |
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 ██████████████████████████████ 27.4M
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 ██████████████████████████████ 2.6M
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 ██████████████████████████████ 2.8M
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 | 27,443,129 | 48.4% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 2,649,351 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 5,215,743 | 9.2% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,844,856 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 954,171 | 1.7% | Line-level PR comments |
592
- | `stars` | WatchEvent | 5,060,149 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,901,453 | 3.4% | Repository forks |
594
- | `creates` | CreateEvent | 8,046,438 | 14.2% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 1,260,193 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 190,437 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 348,994 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 518,712 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 259,446 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 54,807 | 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-08-02** (111 days), totaling **57,105,638 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 17.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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 ██████████████████████████████ 57.1M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 111 | 57,105,638 | 514,465 | 17.7 GB | 9.2 GB | 1h19m | 12h50m | 2h25m |
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 ██████████████████████████████ 27.6M
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 ██████████████████████████████ 2.7M
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 ██████████████████████████████ 2.9M
157
  ```
158
 
159
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 27,628,728 | 48.4% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 2,666,822 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 5,244,121 | 9.2% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,860,109 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 958,463 | 1.7% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 5,092,126 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,912,309 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 8,096,367 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 1,266,870 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 191,655 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 350,686 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 521,694 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 260,567 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 55,121 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a413ce2329bba40438cc0e61691b399f6a66065479a7e7f28c1cf38dbe573800
3
+ size 265576
data/creates/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:746fa53ce99a1a047b0aec4655260fb6729909311e0ae6650d5457d5a6f626c3
3
+ size 1835517
data/deletes/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c74689aaa3f6a82d94d91a8b2e9390d5fd41ccc04d37bad2561302d9675c9483
3
+ size 217739
data/forks/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c74f53e319f3860f770cfc139151e95b1fa61fa8af88252e4c72598979db73c
3
+ size 1201664
data/issue_comments/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ac6fe3eb7f2a69d911c33db95ee592906d630ffac3c59eb78913da1d9b31235
3
+ size 5409558
data/issues/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5e469e0501fa918d95f93c012309762e1c8c372786b40413e9e1090871c5c4e
3
+ size 4152475
data/members/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6b33e9983a99d57398a2e2c6c9e870b65eb94030201212a9cfe6e0a68923862
3
+ size 46467
data/pr_review_comments/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bdb9a563b4ec3dcc0d931c0061e3ae4590ffb42cf906f82e4ebd824e262db77
3
+ size 1279374
data/public_events/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9731eb6d92ee123d54fd04f6f46e9bfa679e5c7a22d36138f0e1eb74af3bedbe
3
+ size 15120
data/pull_requests/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:188f65f969af00d235e5cc57ab77b1b8ba4f7f984507ce710bc839201319ee15
3
+ size 2660700
data/pushes/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:497878377ddb51666e08cccb9723b29b10b2c528bf0df00a6b52e6ffbf2a3ee8
3
+ size 41426215
data/releases/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:111fa437c042a63cb61c90b7453fdab145e2bfe711b6b0fa5f4a6fba4aa82eea
3
+ size 188230
data/stars/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:670bcae6505806a9c7a25db0c1e74476dae0658ea20130b9eba288c1f3a01146
3
+ size 1125139
data/wiki_pages/2015/08/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e96f1da0bc673560766975f22ae24c95c039cb8d2474d046bbebb32d69a84b3
3
+ size 232324
stats.csv CHANGED
@@ -108,4 +108,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
108
  2015-07-29,662867,0,320941,31333,66516,35306,0,12823,58022,21181,86196,15126,2478,4309,5300,2770,566,0,258285897,460.7,118477200,37.1,460.7,68.3
109
  2015-07-30,653601,0,319166,29389,63201,35205,0,13705,58243,20414,85572,13468,2362,4064,5513,2788,511,0,253447077,443.6,115802246,40.6,443.6,53.4
110
  2015-07-31,588460,0,284724,28452,56593,32135,0,11445,52723,18730,76832,13575,2342,3475,4600,2332,502,0,229954312,439.3,105624542,38.5,439.3,82.2
111
- 2015-08-01,350293,0,178670,16204,27240,14719,0,3518,31754,11322,51073,7716,1437,1769,2981,1562,328,0,116625451,252.9,58879722,35.0,252.9,0.0
 
 
108
  2015-07-29,662867,0,320941,31333,66516,35306,0,12823,58022,21181,86196,15126,2478,4309,5300,2770,566,0,258285897,460.7,118477200,37.1,460.7,68.3
109
  2015-07-30,653601,0,319166,29389,63201,35205,0,13705,58243,20414,85572,13468,2362,4064,5513,2788,511,0,253447077,443.6,115802246,40.6,443.6,53.4
110
  2015-07-31,588460,0,284724,28452,56593,32135,0,11445,52723,18730,76832,13575,2342,3475,4600,2332,502,0,229954312,439.3,105624542,38.5,439.3,82.2
111
+ 2015-08-01,350293,0,178670,16204,27240,14719,0,3518,31754,11322,51073,7716,1437,1769,2981,1562,328,0,116625451,252.9,58879722,35.0,252.9,28.4
112
+ 2015-08-02,357759,0,185599,17471,28378,15253,0,4292,31977,10856,49929,6677,1218,1692,2982,1121,314,0,120377063,261.4,60056098,31.1,261.4,0.0