tamnd commited on
Commit
b07de78
·
verified ·
1 Parent(s): 52891d4

Add 2013-10-10 — 274.9K events, 11 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 **2011-02-12** to **2013-10-09** (801 days), totaling **103,027,899 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 28.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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
 
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████░░░░░░░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 54.7M
142
  ```
143
 
144
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
145
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
146
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
147
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
148
- | 2013 | 267 | 54,674,914 | 204,774 | 16.7 GB | 5.2 GB | 2h42m | 7h40m | 3h29m |
149
 
150
 
151
  ### Pushes per year
@@ -153,14 +153,14 @@ duckdb.sql("""
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████░░░░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 28.0M
157
  ```
158
 
159
 
160
  ### Issues per year
161
 
162
  ```
163
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ██████████████████░░░░░░░░░░░░ 1.9M
165
  2013 ██████████████████████████████ 3.2M
166
  ```
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 51,123,368 | 49.6% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,825,642 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 8,775,496 | 8.5% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,977,414 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 764,101 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 9,780,987 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,702,761 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 13,865,360 | 13.5% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 876,261 | 0.9% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 39,090 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 1,040,367 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,951,145 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 94,011 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
 
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 **2011-02-12** to **2013-10-10** (802 days), totaling **103,302,749 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 28.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.8 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
 
 
138
  ```
139
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████░░░░░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 54.9M
142
  ```
143
 
144
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
145
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
146
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
147
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
148
+ | 2013 | 268 | 54,949,764 | 205,036 | 16.7 GB | 5.2 GB | 2h42m | 7h42m | 3h29m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████░░░░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 28.1M
157
  ```
158
 
159
 
160
  ### Issues per year
161
 
162
  ```
163
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ██████████████████░░░░░░░░░░░░ 1.9M
165
  2013 ██████████████████████████████ 3.2M
166
  ```
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 51,259,767 | 49.6% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,843,743 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,803,603 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,989,578 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 767,257 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,804,136 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,712,518 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 13,895,946 | 13.5% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 880,881 | 0.9% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 39,570 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 1,042,816 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,955,029 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 94,234 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/10/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6166be16e2cd7448c920e7d46ac6f47191c0a69d195997edcb5769accd6350fe
3
+ size 84895
data/creates/2013/10/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36dd4d36b169aba00bb389a682199b29f3e0da1b39d41b88f626119b67f177ea
3
+ size 1216440
data/deletes/2013/10/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:270f52967e43a5d5f01658d9b4996b7a4aa1ad8060bcca7bcf46e696723143a3
3
+ size 128328
data/forks/2013/10/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34a96f4021207bd89ba4382e56cd6cc6ec6d87909d12298867eed6505cdaee5b
3
+ size 258241
data/issue_comments/2013/10/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4dc0beb523040b8b564c6c87dd08596266d5172b355e7ea0e1050ac0586ed785
3
+ size 613281
data/issues/2013/10/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ddb053b450801392e5545e0d8f044d31884bd6dcd250dde3691bbe09524f04f
3
+ size 413891
data/public_events/2013/10/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2fc6f436550801f24cbf815addc4b8174fd2050443230b35ef640b1cb2d06eaf
3
+ size 9955
data/pull_requests/2013/10/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80886e68dfc6c4e550c304c93889c6fc18df944250406a9eb14b8c1860fcfd43
3
+ size 2161746
data/pushes/2013/10/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73f4e9c20e34bbd79375cddbbacffbb1194f149cd49feedd2599841e79869256
3
+ size 22023260
data/stars/2013/10/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d02c4953edff4ec9beacd3472239a40ef9a7bc11018aaab2ab7d9a4a283b8997
3
+ size 518863
data/wiki_pages/2013/10/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa3c866259b46a1d3e173449a9d7359d819a91cd2eeaa17cb5f9e4d45b22a25a
3
+ size 284182
stats.csv CHANGED
@@ -799,4 +799,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
799
  2013-10-06,205764,858,121816,8434,13083,6593,0,1327,17055,6444,22314,2514,384,1356,3408,0,178,0,60438247,125.8,19871506,25.0,125.8,63.7
800
  2013-10-07,273466,1876,139173,14792,24009,12342,0,3100,23949,10371,31311,4974,571,2261,4487,0,250,0,91598927,184.6,27401292,32.2,184.6,53.3
801
  2013-10-08,269992,1777,136863,14189,23815,12291,0,3459,23589,10321,31708,4422,583,2278,4454,0,243,0,91922790,174.4,27232016,28.4,174.4,40.8
802
- 2013-10-09,269335,1912,136451,13796,24061,12206,0,3366,23535,10224,31519,4768,597,2422,4245,0,233,0,90826290,173.7,27157669,35.2,173.7,0.0
 
 
799
  2013-10-06,205764,858,121816,8434,13083,6593,0,1327,17055,6444,22314,2514,384,1356,3408,0,178,0,60438247,125.8,19871506,25.0,125.8,63.7
800
  2013-10-07,273466,1876,139173,14792,24009,12342,0,3100,23949,10371,31311,4974,571,2261,4487,0,250,0,91598927,184.6,27401292,32.2,184.6,53.3
801
  2013-10-08,269992,1777,136863,14189,23815,12291,0,3459,23589,10321,31708,4422,583,2278,4454,0,243,0,91922790,174.4,27232016,28.4,174.4,40.8
802
+ 2013-10-09,269335,1912,136451,13796,24061,12206,0,3366,23535,10224,31519,4768,597,2422,4245,0,233,0,90826290,173.7,27157669,35.2,173.7,37.1
803
+ 2013-10-10,274850,1775,136399,18101,28107,12164,0,3156,23149,9757,30586,4620,480,2449,3884,0,223,0,89962271,166.3,27713082,33.6,166.3,0.0