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

Add 2013-10-18 — 256.7K 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-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
 
@@ -137,23 +137,23 @@ duckdb.sql("""
137
 
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
152
 
153
  ```
154
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
- 2012 ████████████████░░░░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 29.0M
157
  ```
158
 
159
 
@@ -178,7 +178,7 @@ duckdb.sql("""
178
  ### Stars per year
179
 
180
  ```
181
- 2011 ███████░░░░░░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████░░░░░░░░░░░░ 3.3M
183
  2013 ██████████████████████████████ 5.3M
184
  ```
@@ -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,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
 
 
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-19** (811 days), totaling **105,510,963 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.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
 
 
137
 
138
  ```
139
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 █████████████████░░░░░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 57.2M
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 | 277 | 57,157,978 | 206,346 | 17.4 GB | 5.4 GB | 2h48m | 8h04m | 3h35m |
149
 
150
 
151
  ### Pushes per year
152
 
153
  ```
154
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
+ 2012 ████████████████░░░░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 29.2M
157
  ```
158
 
159
 
 
178
  ### Stars per year
179
 
180
  ```
181
+ 2011 ███████░░░░░░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████░░░░░░░░░░░░ 3.3M
183
  2013 ██████████████████████████████ 5.3M
184
  ```
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 52,376,057 | 49.6% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,967,285 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 9,005,260 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 4,081,334 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 790,781 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 10,013,244 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,794,551 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 14,143,977 | 13.4% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 916,566 | 0.9% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 43,562 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 1,063,254 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,991,707 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 96,216 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4ece7cf4d90d238d3dafa136085699133458ea0fe8cb75278a24a2565daf885
3
+ size 82080
data/creates/2013/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02260eb423e4fc6d6e42de8f8b26b7b0f9148231f540a339b80114b1efeb27eb
3
+ size 1057521
data/deletes/2013/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88167faed8bc17f0e77dc7f1ed1b5d17aba8a3aa6aa0e84bd313606be56b813d
3
+ size 124424
data/forks/2013/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca92c8cf22f37c66cdec5c432dedb08e994b8d76400d635f4c18cefeb40cf24e
3
+ size 248078
data/issue_comments/2013/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfbea9d78a476d55d7c5375d97435bfca8fc79cbc94f353286fd0f8a3b11aa9a
3
+ size 529632
data/issues/2013/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d661172ebcaa13de532e44f17a95019f2802a4a3ca2b193344e07543b4b11f7
3
+ size 345418
data/public_events/2013/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7a9ad0c0e85739811693788c41dfce70c34fd9adbacbf8bdfa7ab3f8d93f0d1
3
+ size 10672
data/pull_requests/2013/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cf265b9eb3d031789bd12fe403ae1173fe620f31d8201227d7708aa25c97df0
3
+ size 1970709
data/pushes/2013/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c53f2f4e7f9ebff0f2302268f942dd61e848b996ae7258b78c088fccfb9c7bfc
3
+ size 20393110
data/stars/2013/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7be6d50d3894b5f8b1b42cc3f1420a35381fff6be9757c9bc2da3ce66ad63f1
3
+ size 535838
data/wiki_pages/2013/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29402e71d174f098a6700714ef2b5835543410263e718e1273ba5c758af38138
3
+ size 335052
stats.csv CHANGED
@@ -807,4 +807,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
 
 
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,35.7
811
+ 2013-10-18,256743,1682,127701,13726,22452,11686,0,3052,25084,9284,29800,4481,434,2351,4764,0,246,0,86259895,156.1,25632534,45.5,156.2,0.0
812
+ 2013-10-19,176540,1165,96193,8696,12017,6018,0,1059,17161,6675,20229,2258,316,1387,3217,0,149,0,54916039,99.1,17439591,31.0,99.1,0.0