tamnd commited on
Commit
f1ff6f6
·
verified ·
1 Parent(s): 667882d

Add 2013-12-05 — 319.1K 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-12-04** (851 days), totaling **116,301,717 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 32.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.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
 
@@ -722,14 +722,14 @@ duckdb.sql("""
722
  ```
723
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ███████████████░░░░░░░░░░░░░░░ 34.3M
725
- 2013 ██████████████████████████████ 67.9M
726
  ```
727
 
728
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
729
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
730
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
731
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
732
- | 2013 | 317 | 67,948,732 | 214,349 | 20.7 GB | 6.4 GB | 3h11m | 9h53m | 4h09m |
733
 
734
 
735
  ### Pushes per year
@@ -737,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 ██████████████░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 34.7M
741
  ```
742
 
743
 
@@ -764,7 +764,7 @@ duckdb.sql("""
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
  2012 ███████████████░░░░░░░░░░░░░░░ 3.3M
767
- 2013 ██████████████████████████████ 6.3M
768
  ```
769
 
770
 
@@ -1148,20 +1148,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
- | `pushes` | PushEvent | 57,905,866 | 49.8% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,591,811 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 9,946,396 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,539,878 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 901,768 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 10,994,866 | 9.5% | Repository stars |
1157
- | `forks` | ForkEvent | 4,191,119 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 15,352,675 | 13.2% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,103,412 | 0.9% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 63,663 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,157,328 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,154,054 | 1.9% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 105,876 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
 
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-12-05** (852 days), totaling **116,620,769 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 32.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.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
 
 
722
  ```
723
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ███████████████░░░░░░░░░░░░░░░ 34.3M
725
+ 2013 ██████████████████████████████ 68.3M
726
  ```
727
 
728
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
729
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
730
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
731
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
732
+ | 2013 | 318 | 68,267,784 | 214,678 | 20.8 GB | 6.4 GB | 3h12m | 9h56m | 4h10m |
733
 
734
 
735
  ### Pushes per year
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 ██████████████░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 34.9M
741
  ```
742
 
743
 
 
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
  2012 ███████████████░░░░░░░░░░░░░░░ 3.3M
767
+ 2013 ██████████████████████████████ 6.4M
768
  ```
769
 
770
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 58,068,984 | 49.8% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,609,988 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 9,975,918 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,554,672 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 905,870 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 11,023,986 | 9.5% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,203,255 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 15,385,743 | 13.2% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,108,853 | 1.0% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 64,284 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,160,093 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,158,034 | 1.9% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 106,172 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/12/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a512b7ae9b17cd71f989c0d2488af2af7ccc2279300291c32564719a6bac2d5
3
+ size 95711
data/creates/2013/12/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e5d10fdf93fc0fe6f216da029a700c5ec4f5a42d71f9289c75eb82f28b8dc5d
3
+ size 1342627
data/deletes/2013/12/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd946b9381b4f9453902fdcacbb2479a5426a0280864a615b42d0ab278e773e8
3
+ size 155808
data/forks/2013/12/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:421f4cf7644209b22e5c7aa2fcfc4e85c8a66997f69252dbd6d50bd873490526
3
+ size 383364
data/issue_comments/2013/12/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:419e68500682f16e290401f96f9556a2f7f50bd35dbabb513cc599bc2c53a618
3
+ size 680569
data/issues/2013/12/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fe03e673f4b4234a1ef378aea80b7b6ca55cb4d76cb9d3371a0a5f18d62460d
3
+ size 420581
data/public_events/2013/12/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:692e2fe4e6a84f1acfac80017029737157d35d2761fe325cb1a22b8454fe05ac
3
+ size 12149
data/pull_requests/2013/12/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ac39ecb120c54ef513a7845a275fe54bd5956965ac67f4dab8b1019d586a594
3
+ size 2599105
data/pushes/2013/12/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8fa013e980ecf4bd7f9e16dfb2fd58d322d21e2eba91fef5b3b15ae1ab66f6d9
3
+ size 26346824
data/stars/2013/12/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a12b6a39b2ce39754edba2e6f1d3d9f52c3131cbda6b655094ee3d516eef5b8
3
+ size 632721
data/wiki_pages/2013/12/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b659a818ef5749fe18db83c08026da8ad74a6a7ff43f887b5a23865461ebcc1b
3
+ size 275341
stats.csv CHANGED
@@ -849,4 +849,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
849
  2013-12-01,217336,1065,118911,10431,15863,7817,0,1271,21460,8142,23896,2914,469,1870,3072,0,155,0,67053771,120.6,21283544,41.4,120.6,43.3
850
  2013-12-02,321355,1691,162689,16228,28861,15077,0,4248,31025,12152,35502,4928,614,3112,4922,0,306,0,108672407,189.1,32416400,43.4,189.1,62.4
851
  2013-12-03,328215,1824,169188,17215,29274,14908,0,3706,30933,11791,35301,5599,511,2876,4818,0,271,0,109678645,194.3,33164090,63.9,194.3,53.7
852
- 2013-12-04,327805,1795,172308,17248,29567,14863,0,3737,28081,11695,33864,6136,624,3042,4555,0,290,0,108519496,194.4,32768488,36.3,194.4,0.0
 
 
849
  2013-12-01,217336,1065,118911,10431,15863,7817,0,1271,21460,8142,23896,2914,469,1870,3072,0,155,0,67053771,120.6,21283544,41.4,120.6,43.3
850
  2013-12-02,321355,1691,162689,16228,28861,15077,0,4248,31025,12152,35502,4928,614,3112,4922,0,306,0,108672407,189.1,32416400,43.4,189.1,62.4
851
  2013-12-03,328215,1824,169188,17215,29274,14908,0,3706,30933,11791,35301,5599,511,2876,4818,0,271,0,109678645,194.3,33164090,63.9,194.3,53.7
852
+ 2013-12-04,327805,1795,172308,17248,29567,14863,0,3737,28081,11695,33864,6136,624,3042,4555,0,290,0,108519496,194.4,32768488,36.3,194.4,47.2
853
+ 2013-12-05,319052,1912,163118,18177,29522,14794,0,4102,29120,12136,33068,5441,621,2765,3980,0,296,0,107847615,198.0,32944800,44.0,198.0,0.0