tamnd commited on
Commit
ef61a45
·
verified ·
1 Parent(s): fe3df8b

Add 2013-10-17 — 303.4K 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-16** (808 days), totaling **104,774,243 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.1 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,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████░░░░░░░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 56.4M
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 | 274 | 56,421,258 | 205,917 | 17.2 GB | 5.3 GB | 2h46m | 7h57m | 3h34m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████░░░░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 28.8M
157
  ```
158
 
159
 
@@ -162,7 +162,7 @@ duckdb.sql("""
162
  ```
163
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 █████████████████░░░░░░░░░░░░░ 1.9M
165
- 2013 ██████████████████████████████ 3.2M
166
  ```
167
 
168
 
@@ -171,7 +171,7 @@ duckdb.sql("""
171
  ```
172
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 █████████████████████░░░░░░░░░ 1.5M
174
- 2013 ██████████████████████████████ 2.1M
175
  ```
176
 
177
 
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 52,004,879 | 49.6% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,923,880 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 8,935,231 | 8.5% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 4,050,852 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 782,868 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 9,945,881 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,767,721 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 14,061,832 | 13.4% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 905,144 | 0.9% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 42,351 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 1,056,554 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,979,088 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 95,579 | 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-17** (809 days), totaling **105,077,680 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.2 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.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 | 275 | 56,724,695 | 206,271 | 17.3 GB | 5.4 GB | 2h47m | 8h00m | 3h34m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████░░░░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 29.0M
157
  ```
158
 
159
 
 
162
  ```
163
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 █████████████████░░░░░░░░░░░░░ 1.9M
165
+ 2013 ██████████████████████████████ 3.3M
166
  ```
167
 
168
 
 
171
  ```
172
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 █████████████████████░░░░░░░░░ 1.5M
174
+ 2013 ██████████████████████████████ 2.2M
175
  ```
176
 
177
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 52,152,163 | 49.6% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,944,863 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,970,791 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 4,063,630 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 786,670 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,970,999 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,778,592 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 14,093,948 | 13.4% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 909,827 | 0.9% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 42,812 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 1,059,516 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,983,726 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 95,821 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5ae9a4b2cd7e430b9f5af0df5a81243a48c89284ee03b775c843753ff2040c9
3
+ size 91480
data/creates/2013/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19ccdb069421a791417afddea4f342433afabbf34f5ca7d6467a8de6ed810311
3
+ size 1212719
data/deletes/2013/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f88ab066cc9b617f1dcd7bfbbf2361156c8942b7204e0cf24e863c72b4b73871
3
+ size 137673
data/forks/2013/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2041abc6c64c0b1204c2b2e94e1e82da05f1ea5575b0802c9aae3b671b459c3f
3
+ size 285637
data/issue_comments/2013/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:531308d5b355f77430b13c2f926d29c25146f638a769e4d59c272a9decf32db7
3
+ size 680006
data/issues/2013/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5244a44aad9bd2f4f38dee5295163d0cad8f9247a6d0a67443b399b95f6df62
3
+ size 430006
data/public_events/2013/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e4e6082105a5626603711e150789c09ef7f34e5ae0eea8b9086fa2667d021dc
3
+ size 10472
data/pull_requests/2013/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f09eafebbd26dcaca2c838992cb48ccbff8cc5c0c910906b57f55cb74b3bb101
3
+ size 2227361
data/pushes/2013/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cf011ef390388df541c95d569286267537a493928172e7b886b7c201957a29e
3
+ size 23724930
data/stars/2013/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a3d164e5c74dfe9350b971a4a3c3115c5668d7d67721aa72aa364be416ed469
3
+ size 550075
data/wiki_pages/2013/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f798e4b4ac06bbcd5e22e9b0acc3d6eb55f5f66a140f1c30a671ec92ce026b93
3
+ size 334410
stats.csv CHANGED
@@ -806,4 +806,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,45.2
809
- 2013-10-16,292645,1742,146297,16296,27427,13011,0,3811,26492,11038,32666,4954,514,2843,5299,0,255,0,99261747,181.2,30222394,40.5,181.2,0.0
 
 
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,45.2
809
+ 2013-10-16,292645,1742,146297,16296,27427,13011,0,3811,26492,11038,32666,4954,514,2843,5299,0,255,0,99261747,181.2,30222394,40.5,181.2,37.1
810
+ 2013-10-17,303437,1939,147284,20983,35560,12778,0,3802,25118,10871,32116,4683,461,2962,4638,0,242,0,98126635,187.1,29684769,43.9,187.1,0.0