tamnd commited on
Commit
64742d6
·
verified ·
1 Parent(s): 1f7a5d4

Add 2013-10-15 — 286.0K 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-14** (806 days), totaling **104,195,639 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.9 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,22 +138,22 @@ duckdb.sql("""
138
  ```
139
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████░░░░░░░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 55.8M
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 | 272 | 55,842,654 | 205,303 | 17.0 GB | 5.3 GB | 2h45m | 7h51m | 3h32m |
149
 
150
 
151
  ### Pushes per year
152
 
153
  ```
154
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████░░░░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 28.5M
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
- 2012 █████████████████░░░░░░░░░░░░ 1.9M
165
  2013 ██████████████████████████████ 3.2M
166
  ```
167
 
@@ -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,713,653 | 49.6% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,893,091 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 8,882,070 | 8.5% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 4,025,245 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 775,551 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 9,892,943 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,746,055 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 13,996,892 | 13.4% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 894,718 | 0.9% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 41,308 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 1,051,158 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,969,020 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 95,065 | 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-15** (807 days), totaling **104,481,598 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 29.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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
 
 
138
  ```
139
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████░░░░░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 56.1M
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 | 273 | 56,128,613 | 205,599 | 17.1 GB | 5.3 GB | 2h46m | 7h54m | 3h33m |
149
 
150
 
151
  ### Pushes per year
152
 
153
  ```
154
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████░░░░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 28.7M
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
+ 2012 █████████████████░░░░░░░░░░░░ 1.9M
165
  2013 ██████████████████████████████ 3.2M
166
  ```
167
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 51,858,582 | 49.6% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,907,584 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,907,804 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 4,037,841 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 779,057 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,919,389 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,756,683 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 14,029,166 | 13.4% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 900,190 | 0.9% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 41,837 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 1,053,711 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,973,789 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 95,324 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/10/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ced29b15399a2fd8b6f9d463ba09f57bb11ecf5c666de508b4e6d8f9b9da2db
3
+ size 89067
data/creates/2013/10/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3786c4e71a084e9b942524c05b99618385aeeb096bd6e806ff03f0b9b747b3eb
3
+ size 1177237
data/deletes/2013/10/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ba0fb43ea6b3acae5c147966102223f481bb18b0c55504353df3b6cb1e0e132
3
+ size 148613
data/forks/2013/10/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:178260cd73690e17e1e7b222ab44b8859bb984a8af6481d81061590fde3a4c39
3
+ size 281644
data/issue_comments/2013/10/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df95f67e888e22d421d6fbc37b1b512d692c4a6ee6d1b68181bdbe149caa5d09
3
+ size 611422
data/issues/2013/10/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:616d6ecb5efc6a3dc5b2df6258b7b649538a55084377962e4cb9a6f0042dd198
3
+ size 372938
data/public_events/2013/10/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2ee16c48d5952cabf3be943a14f6b7aa6deecbe4ca25bf8064a970ae3dcf931
3
+ size 11140
data/pull_requests/2013/10/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07bbf5fe58bf106a531efccc5e8ae80a72e2a4a6df469ce18c16523db764d0d7
3
+ size 2253170
data/pushes/2013/10/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f8228d319952d5b3adc79eb28322be60a75c9d8ada23715d6359171b07179f9
3
+ size 24302996
data/stars/2013/10/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa13036fa8c4f9622ee2e37f6ec024e4f1554d0defbf1dc26e0c8ad4d1f0a191
3
+ size 597904
data/wiki_pages/2013/10/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13cdf49d071b6ce56855fdce5e11597b5eb4a2935f6c50e519564918b9907fde
3
+ size 341627
stats.csv CHANGED
@@ -804,4 +804,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
804
  2013-10-11,257305,1743,122891,18711,28549,10875,0,2620,24021,9398,27837,3878,449,2262,3846,0,225,0,82803354,148.3,25831355,43.3,148.3,50.3
805
  2013-10-12,171077,1041,92637,7733,11538,6043,0,1134,17513,6540,19975,2470,322,1279,2709,0,143,0,53943695,94.8,17116235,35.3,94.8,42.5
806
  2013-10-13,190705,869,102020,8796,13890,6972,0,1273,18697,7053,22263,2629,440,2511,3127,0,165,0,60637331,105.1,20070166,44.1,105.1,31.7
807
- 2013-10-14,273803,1546,136338,14108,24490,11777,0,3267,28576,10546,30871,4860,527,2290,4309,0,298,0,91410843,165.7,27814596,40.8,165.7,0.0
 
 
804
  2013-10-11,257305,1743,122891,18711,28549,10875,0,2620,24021,9398,27837,3878,449,2262,3846,0,225,0,82803354,148.3,25831355,43.3,148.3,50.3
805
  2013-10-12,171077,1041,92637,7733,11538,6043,0,1134,17513,6540,19975,2470,322,1279,2709,0,143,0,53943695,94.8,17116235,35.3,94.8,42.5
806
  2013-10-13,190705,869,102020,8796,13890,6972,0,1273,18697,7053,22263,2629,440,2511,3127,0,165,0,60637331,105.1,20070166,44.1,105.1,31.7
807
+ 2013-10-14,273803,1546,136338,14108,24490,11777,0,3267,28576,10546,30871,4860,527,2290,4309,0,298,0,91410843,165.7,27814596,40.8,165.7,43.3
808
+ 2013-10-15,285959,1771,144929,14493,25734,12596,0,3506,26446,10628,32274,5472,529,2553,4769,0,259,0,97477547,177.3,30187758,30.9,177.3,0.0