tamnd commited on
Commit
72d7201
·
verified ·
1 Parent(s): 2444640

Add 2013-12-03 — 328.2K 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-02** (849 days), totaling **115,645,697 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.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
 
@@ -722,14 +722,14 @@ duckdb.sql("""
722
  ```
723
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ███████████████░░░░░░░░░░░░░░░ 34.3M
725
- 2013 ██████████████████████████████ 67.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 | 315 | 67,292,712 | 213,627 | 20.5 GB | 6.3 GB | 3h09m | 9h46m | 4h07m |
733
 
734
 
735
  ### Pushes per year
@@ -737,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 ██████████████░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 34.4M
741
  ```
742
 
743
 
@@ -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,564,370 | 49.8% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,557,348 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 9,887,555 | 8.5% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,510,107 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 894,325 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 10,935,852 | 9.5% | Repository stars |
1157
- | `forks` | ForkEvent | 4,167,633 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 15,283,510 | 13.2% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,091,677 | 0.9% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 62,528 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,151,410 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,144,681 | 1.9% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 105,315 | 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-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
  ```
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 | 4h08m |
733
 
734
 
735
  ### Pushes per year
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 ██████████████░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 34.7M
741
  ```
742
 
743
 
 
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
 
data/commit_comments/2013/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffdd2099e708926df9bf0c88e8562dfb94433be0ba77c529c17dbff38f2d62e4
3
+ size 98203
data/creates/2013/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbf69d5225ded0e7ba7d37d98d42c489910d99e113426e70a5e3b6cea69a9cac
3
+ size 1329364
data/deletes/2013/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a6673b88ccb3bd441fae594718b5fbc8fb9a476a9ce65be819a15cfaa03b960
3
+ size 158851
data/forks/2013/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b8e00a38e7577877af0fa11398d9389d24340721fbde8a4d295d64a2d2f67b0
3
+ size 328710
data/issue_comments/2013/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f41ed5327dca88e553707137b9fdc6d93869563eb2e58a5b8f3c6564176f2d2d
3
+ size 680204
data/issues/2013/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad0ecd48bf893d158ff1e9b9f4198c9222fb78b0dd24749b60a90ea85e9919f4
3
+ size 425245
data/public_events/2013/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d4e55d405f9dd1023a57d29294348f5f86baf3eb8d51aedcecf87fcedca72b2
3
+ size 11466
data/pull_requests/2013/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae946abe896f2ed3bbf9ce4ccb8aa6677c3da628bf4ba2c3b4805f3cde81c418
3
+ size 2669243
data/pushes/2013/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8f5cbbe1f35d0bb13e03bf02d6a9fe3b9e9b825dc32ca64a2638f7eefd80677
3
+ size 26437714
data/stars/2013/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35b4b4ecde98bcbe1cf560ee088d9c9a64599b3cf1acbbb3e6deff27628d71ed
3
+ size 675699
data/wiki_pages/2013/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d428fc64c82d2e26af3bedbe62fe0431f391e4c2976d6c38570b0ea9919bf86e
3
+ size 349391
stats.csv CHANGED
@@ -847,4 +847,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
847
  2013-11-29,229172,1202,121040,11904,18988,9447,0,1914,21055,8499,25846,3536,512,1797,3236,0,196,0,73613550,140.3,22574903,26.7,140.3,33.8
848
  2013-11-30,184482,906,101473,8844,12965,6563,0,1071,17916,7038,20607,2203,393,1718,2661,0,124,0,56798402,110.3,18077940,26.0,110.3,39.9
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,0.0
 
 
 
847
  2013-11-29,229172,1202,121040,11904,18988,9447,0,1914,21055,8499,25846,3536,512,1797,3236,0,196,0,73613550,140.3,22574903,26.7,140.3,33.8
848
  2013-11-30,184482,906,101473,8844,12965,6563,0,1071,17916,7038,20607,2203,393,1718,2661,0,124,0,56798402,110.3,18077940,26.0,110.3,39.9
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,0.0
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