tamnd commited on
Commit
9be0e76
·
verified ·
1 Parent(s): 9e1f289

Add 2013-12-26 — 198.2K events, 11 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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-25** (872 days), totaling **121,682,412 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 34.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.5 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
 
@@ -721,15 +721,15 @@ duckdb.sql("""
721
 
722
  ```
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
- 2012 █████████████░░░░░░░░░░░░░░░░ 34.3M
725
- 2013 ██████████████████████████████ 73.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 | 338 | 73,329,427 | 216,950 | 22.3 GB | 6.9 GB | 3h23m | 10h43m | 4h24m |
733
 
734
 
735
  ### Pushes per year
@@ -737,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 37.5M
741
  ```
742
 
743
 
@@ -764,7 +764,7 @@ duckdb.sql("""
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
767
- 2013 ██████████████████████████████ 6.8M
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 | 60,663,859 | 49.9% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,895,494 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 10,440,947 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,766,927 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 957,957 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 11,505,227 | 9.5% | Repository stars |
1157
- | `forks` | ForkEvent | 4,385,287 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 15,940,463 | 13.1% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,194,258 | 1.0% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 74,599 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,203,245 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,225,940 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 110,960 | 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-26** (873 days), totaling **121,880,592 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 34.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.5 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
 
 
721
 
722
  ```
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
+ 2012 █████████████░░░░░░░░░░░░░░░░ 34.3M
725
+ 2013 ██████████████████████████████ 73.5M
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 | 339 | 73,527,607 | 216,895 | 22.4 GB | 6.9 GB | 3h24m | 10h44m | 4h25m |
733
 
734
 
735
  ### Pushes per year
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 37.6M
741
  ```
742
 
743
 
 
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
767
+ 2013 ██████████████████████████████ 6.9M
768
  ```
769
 
770
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 60,763,993 | 49.9% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,907,000 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 10,455,835 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,774,299 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 959,762 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 11,527,287 | 9.5% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,393,605 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 15,963,802 | 13.1% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,197,211 | 1.0% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 75,013 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,204,784 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,228,928 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 111,116 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d682e20355d4f1e4c06b35c1bf3ff712300da1ee1e17430d3e28ec510eb41c6
3
+ size 56551
data/creates/2013/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34839e19d147937a63f9d4d9f665a46ed76ee53dc9042de7fbbdcbce075645cd
3
+ size 807679
data/deletes/2013/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1372edf55c9c5fa23075763857cc399da1ba5c20d5e626fc212ea93db166096e
3
+ size 80558
data/forks/2013/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8474230e5c4b91e989bfdc46f856692dc661f340a6ecae563a84c03a35526913
3
+ size 221609
data/issue_comments/2013/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32559d467bd4e5cd0c7e14b093d73ce3750212f68e78cd184baeb761da2b85b0
3
+ size 354310
data/issues/2013/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83895f375a6d43f4eff263f3c7a28c463970015e8e5c0585ca3c48103c8ff61d
3
+ size 262511
data/public_events/2013/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34462811f800effedf3a2a10ad7ea3acf5a9cda234c29fa49b10eefcd6d56009
3
+ size 7550
data/pull_requests/2013/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e782f3ec400ab1e3e490f11b466f43261a8430fac6c32ec9a0b9dd7e7eb6d39
3
+ size 1290489
data/pushes/2013/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05d5dfefeff02b7b9213b34f28c9f1a110118e65bcea3265716f04d6dd67a76b
3
+ size 14612375
data/stars/2013/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b76d7afa46cf35ecf5ec284c042f5734425bb02de9cbb3aa6d004b5eb9d684b
3
+ size 495427
data/wiki_pages/2013/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fb39527c3103534e2a2b9ec3c0ba7898367adb245b88bd816fdd16009e6b7a9
3
+ size 160000
stats.csv CHANGED
@@ -870,4 +870,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
870
  2013-12-22,186375,608,97335,11572,13511,6460,0,1190,19743,7192,21049,3123,413,1568,2410,0,201,0,56702092,99.7,17958906,28.0,99.7,45.6
871
  2013-12-23,227712,833,115627,11618,19048,9174,0,2357,24121,9133,26055,4036,441,1963,3096,0,210,0,73120778,125.0,21761956,34.5,125.0,37.5
872
  2013-12-24,170475,592,86974,8731,13064,6363,0,1451,19340,7182,19954,2441,422,1413,2413,0,135,0,52601601,85.2,16418170,25.6,85.2,39.2
873
- 2013-12-25,150119,464,78048,7175,9499,5358,0,868,18344,6575,18371,1870,278,968,2204,0,97,0,44698489,69.2,13785271,25.9,69.2,0.0
 
 
870
  2013-12-22,186375,608,97335,11572,13511,6460,0,1190,19743,7192,21049,3123,413,1568,2410,0,201,0,56702092,99.7,17958906,28.0,99.7,45.6
871
  2013-12-23,227712,833,115627,11618,19048,9174,0,2357,24121,9133,26055,4036,441,1963,3096,0,210,0,73120778,125.0,21761956,34.5,125.0,37.5
872
  2013-12-24,170475,592,86974,8731,13064,6363,0,1451,19340,7182,19954,2441,422,1413,2413,0,135,0,52601601,85.2,16418170,25.6,85.2,39.2
873
+ 2013-12-25,150119,464,78048,7175,9499,5358,0,868,18344,6575,18371,1870,278,968,2204,0,97,0,44698489,69.2,13785271,25.9,69.2,37.6
874
+ 2013-12-26,198180,708,100134,11506,14888,7372,0,1805,22060,8318,23339,2953,414,1539,2988,0,156,0,60830562,100.9,18349059,27.2,100.9,0.0