tamnd commited on
Commit
edf5b58
·
verified ·
1 Parent(s): c035abc

Add 2013-04-19 — 221.3K 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-04-18** (633 days), totaling **67,096,873 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 6.3 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 ████████████████░░░░░░░░░░░░░░ 18.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 | 99 | 18,743,888 | 189,332 | 5.7 GB | 1.8 GB | 57m08s | 2h44m | 1h10m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
- 2013 █████████████████░░░░░░░░░░░░░ 9.5M
157
  ```
158
 
159
 
@@ -171,7 +171,7 @@ duckdb.sql("""
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
- 2013 █████████████░░░░░░░░░░░░░░░░░ 686.3K
175
  ```
176
 
177
 
@@ -564,19 +564,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 32,684,830 | 48.7% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 3,793,096 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 5,536,233 | 8.3% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 2,595,398 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 399,836 | 0.6% | Line-level PR comments |
572
- | `stars` | WatchEvent | 6,467,178 | 9.6% | Repository stars |
573
- | `forks` | ForkEvent | 2,294,792 | 3.4% | Repository forks |
574
- | `creates` | CreateEvent | 9,676,642 | 14.4% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 541,906 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 717,492 | 1.1% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 1,288,150 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
579
- | `public_events` | PublicEvent | 60,407 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
 
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-04-19** (634 days), totaling **67,318,192 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 6.3 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 ████████████████░░░░░░░░░░░░░░ 19.0M
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 | 100 | 18,965,207 | 189,652 | 5.7 GB | 1.8 GB | 57m35s | 2h46m | 1h11m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
+ 2013 █████████████████░░░░░░░░░░░░░ 9.6M
157
  ```
158
 
159
 
 
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
+ 2013 █████████████░░░░░░░░░░░░░░░░░ 694.0K
175
  ```
176
 
177
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 32,792,365 | 48.7% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 3,808,723 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 5,566,868 | 8.3% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 2,603,075 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 401,638 | 0.6% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 6,486,497 | 9.6% | Repository stars |
573
+ | `forks` | ForkEvent | 2,302,298 | 3.4% | Repository forks |
574
+ | `creates` | CreateEvent | 9,699,273 | 14.4% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 543,689 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 719,394 | 1.1% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,291,381 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 60,600 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/04/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1dd958d8b7e175a2ad4e6407c37833f80f536a13e42da7a671e1b27d2521a11
3
+ size 69017
data/creates/2013/04/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbbaf2d985c8980794250e255cfcfd2f6430411cabd7884694f05b792c8a0232
3
+ size 813029
data/deletes/2013/04/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8224b5523209bfb11240482d66e276ac224d06aa02415b49a80ab6fb5bd82fed
3
+ size 59559
data/forks/2013/04/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3908f1da860754a6914b5984b5f058deb9d141d6bf3d3856470e89ed77631b93
3
+ size 205722
data/issue_comments/2013/04/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54cc4489a91361a7b139fe7c306ebdec765d46dd1b97c7341280bf278fba329f
3
+ size 510450
data/issues/2013/04/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:682ce044ef3900ffd7468c2d805acf1b4ec6a97998d7a71b457d21f4b0d5cc5c
3
+ size 327147
data/public_events/2013/04/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e3ce9d07f45cf2a82ae15486c7208c56ca982eadac6419c2357f75e2a41cddd
3
+ size 8785
data/pull_requests/2013/04/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06fc67e54398b9950c1130a2d7a1404db237ac6edd10b399426a4e209f0953b4
3
+ size 1429878
data/pushes/2013/04/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eec0fbe6bdc08915a204ad0794ca1c7e2ed3c2983b04d81b33f7d1db643fde8c
3
+ size 19390820
data/stars/2013/04/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e39735670fa5f78b4bc911f9ec7c75f5b38bb4231257be58017b0c62377b5ad6
3
+ size 429902
data/wiki_pages/2013/04/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:569a8b60e7020b2df0134ae8cfe1fb203d8f1461d28827310a3f21f6f92b628b
3
+ size 239981
stats.csv CHANGED
@@ -631,4 +631,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
631
  2013-04-15,227181,1865,114752,12275,21603,8945,0,2275,22403,8455,26554,1930,0,2060,3840,0,224,0,74401440,166.6,23095168,43.6,166.6,98.7
632
  2013-04-16,232699,1678,118726,13488,20548,9017,0,2530,22666,9310,26467,1904,0,2232,3915,0,218,0,75962884,173.3,23522831,44.4,173.3,34.6
633
  2013-04-17,240245,1656,124922,12578,21276,9230,0,2254,22446,8810,28839,2042,0,2187,3812,0,193,0,83081773,177.6,25739398,35.8,177.6,90.7
634
- 2013-04-18,255041,1554,124586,17199,35749,8964,0,2737,21125,8850,26204,2023,0,2093,3760,0,197,0,85950020,181.6,26250955,35.7,181.6,0.0
 
 
631
  2013-04-15,227181,1865,114752,12275,21603,8945,0,2275,22403,8455,26554,1930,0,2060,3840,0,224,0,74401440,166.6,23095168,43.6,166.6,98.7
632
  2013-04-16,232699,1678,118726,13488,20548,9017,0,2530,22666,9310,26467,1904,0,2232,3915,0,218,0,75962884,173.3,23522831,44.4,173.3,34.6
633
  2013-04-17,240245,1656,124922,12578,21276,9230,0,2254,22446,8810,28839,2042,0,2187,3812,0,193,0,83081773,177.6,25739398,35.8,177.6,90.7
634
+ 2013-04-18,255041,1554,124586,17199,35749,8964,0,2737,21125,8850,26204,2023,0,2093,3760,0,197,0,85950020,181.6,26250955,35.7,181.6,26.9
635
+ 2013-04-19,221319,1478,107535,15627,30635,7677,0,1802,19319,7506,22631,1783,0,1902,3231,0,193,0,75983370,155.3,23484290,27.8,155.3,0.0