Add 2014-01-01 — 169.0K events, 11 files
Browse files- README.md +21 -15
- data/commit_comments/2014/01/01.parquet +3 -0
- data/creates/2014/01/01.parquet +3 -0
- data/deletes/2014/01/01.parquet +3 -0
- data/forks/2014/01/01.parquet +3 -0
- data/issue_comments/2014/01/01.parquet +3 -0
- data/issues/2014/01/01.parquet +3 -0
- data/public_events/2014/01/01.parquet +3 -0
- data/pull_requests/2014/01/01.parquet +3 -0
- data/pushes/2014/01/01.parquet +3 -0
- data/stars/2014/01/01.parquet +3 -0
- data/wiki_pages/2014/01/01.parquet +3 -0
- stats.csv +2 -1
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 **
|
| 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.6 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 |
|
|
@@ -723,13 +723,15 @@ duckdb.sql("""
|
|
| 723 |
2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
|
| 724 |
2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
|
| 725 |
2013 ██████████████████████████████ 74.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 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m |
|
|
|
|
| 733 |
|
| 734 |
|
| 735 |
### Pushes per year
|
|
@@ -738,6 +740,7 @@ duckdb.sql("""
|
|
| 738 |
2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
|
| 739 |
2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
|
| 740 |
2013 ██████████████████████████████ 38.1M
|
|
|
|
| 741 |
```
|
| 742 |
|
| 743 |
|
|
@@ -747,6 +750,7 @@ duckdb.sql("""
|
|
| 747 |
2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
|
| 748 |
2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
|
| 749 |
2013 ██████████████████████████████ 4.3M
|
|
|
|
| 750 |
```
|
| 751 |
|
| 752 |
|
|
@@ -756,6 +760,7 @@ duckdb.sql("""
|
|
| 756 |
2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
|
| 757 |
2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
|
| 758 |
2013 ██████████████████████████████ 2.9M
|
|
|
|
| 759 |
```
|
| 760 |
|
| 761 |
|
|
@@ -765,6 +770,7 @@ duckdb.sql("""
|
|
| 765 |
2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
|
| 766 |
2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
|
| 767 |
2013 ██████████████████████████████ 7.0M
|
|
|
|
| 768 |
```
|
| 769 |
|
| 770 |
|
|
@@ -1148,20 +1154,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
|
|
| 1148 |
|
| 1149 |
| Table | GitHub Event | Events | % | Description |
|
| 1150 |
|-------|-------------|-------:|---:|-------------|
|
| 1151 |
-
| `pushes` | PushEvent | 61,
|
| 1152 |
-
| `issues` | IssuesEvent | 6,
|
| 1153 |
-
| `issue_comments` | IssueCommentEvent | 10,
|
| 1154 |
-
| `pull_requests` | PullRequestEvent | 4,
|
| 1155 |
-
| `pr_review_comments` | PullRequestReviewCommentEvent |
|
| 1156 |
-
| `stars` | WatchEvent | 11,
|
| 1157 |
-
| `forks` | ForkEvent | 4,
|
| 1158 |
-
| `creates` | CreateEvent | 16,
|
| 1159 |
-
| `deletes` | DeleteEvent | 1,
|
| 1160 |
-
| `releases` | ReleaseEvent | 77,
|
| 1161 |
-
| `commit_comments` | CommitCommentEvent | 1,
|
| 1162 |
-
| `wiki_pages` | GollumEvent | 2,
|
| 1163 |
| `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
|
| 1164 |
-
| `public_events` | PublicEvent |
|
| 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 **2014-01-01** (879 days), totaling **123,005,418 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.6 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 |
|
|
|
|
| 723 |
2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
|
| 724 |
2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
|
| 725 |
2013 ██████████████████████████████ 74.5M
|
| 726 |
+
2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 169.0K
|
| 727 |
```
|
| 728 |
|
| 729 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 730 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 731 |
| 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
|
| 732 |
| 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
|
| 733 |
+
| 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
|
| 734 |
+
| 2014 | 1 | 169,021 | 169,021 | 49.3 MB | 15.4 MB | 26s | 1m25s | — |
|
| 735 |
|
| 736 |
|
| 737 |
### Pushes per year
|
|
|
|
| 740 |
2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
|
| 741 |
2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
|
| 742 |
2013 ██████████████████████████████ 38.1M
|
| 743 |
+
2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 89.3K
|
| 744 |
```
|
| 745 |
|
| 746 |
|
|
|
|
| 750 |
2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
|
| 751 |
2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
|
| 752 |
2013 ██████████████████████████████ 4.3M
|
| 753 |
+
2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.1K
|
| 754 |
```
|
| 755 |
|
| 756 |
|
|
|
|
| 760 |
2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
|
| 761 |
2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
|
| 762 |
2013 ██████████████████████████████ 2.9M
|
| 763 |
+
2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.1K
|
| 764 |
```
|
| 765 |
|
| 766 |
|
|
|
|
| 770 |
2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
|
| 771 |
2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
|
| 772 |
2013 ██████████████████████████████ 7.0M
|
| 773 |
+
2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 19.1K
|
| 774 |
```
|
| 775 |
|
| 776 |
|
|
|
|
| 1154 |
|
| 1155 |
| Table | GitHub Event | Events | % | Description |
|
| 1156 |
|-------|-------------|-------:|---:|-------------|
|
| 1157 |
+
| `pushes` | PushEvent | 61,345,757 | 49.9% | Git pushes with commits |
|
| 1158 |
+
| `issues` | IssuesEvent | 6,970,953 | 5.7% | Issue lifecycle events |
|
| 1159 |
+
| `issue_comments` | IssueCommentEvent | 10,545,829 | 8.6% | Comments on issues/PRs |
|
| 1160 |
+
| `pull_requests` | PullRequestEvent | 4,816,547 | 3.9% | PR lifecycle events |
|
| 1161 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 968,361 | 0.8% | Line-level PR comments |
|
| 1162 |
+
| `stars` | WatchEvent | 11,646,241 | 9.5% | Repository stars |
|
| 1163 |
+
| `forks` | ForkEvent | 4,436,267 | 3.6% | Repository forks |
|
| 1164 |
+
| `creates` | CreateEvent | 16,091,592 | 13.1% | Branch/tag/repo creation |
|
| 1165 |
+
| `deletes` | DeleteEvent | 1,214,815 | 1.0% | Branch/tag deletion |
|
| 1166 |
+
| `releases` | ReleaseEvent | 77,667 | 0.1% | Release publications |
|
| 1167 |
+
| `commit_comments` | CommitCommentEvent | 1,213,760 | 1.0% | Comments on commits |
|
| 1168 |
+
| `wiki_pages` | GollumEvent | 2,244,155 | 1.8% | Wiki page edits |
|
| 1169 |
| `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
|
| 1170 |
+
| `public_events` | PublicEvent | 112,138 | 0.1% | Repo made public |
|
| 1171 |
|
| 1172 |
## How it's built
|
| 1173 |
|
data/commit_comments/2014/01/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b282c0c383bc2841484d303d89297fce60face1663f550d4c27b91ac8fc35c7
|
| 3 |
+
size 53201
|
data/creates/2014/01/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:41f971cf7820e255dbe2d2f61f2d4d0721d20003c0a0e3d71413c998a1c928f4
|
| 3 |
+
size 700529
|
data/deletes/2014/01/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:35237f6cfa47ba13b05018fbae8561c1265c61064bde56bfe6535ee806dab8e4
|
| 3 |
+
size 67261
|
data/forks/2014/01/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:440cae2291fc892a48ab87e86fb023c229c7394ee36c513afd6c8fe099335673
|
| 3 |
+
size 243547
|
data/issue_comments/2014/01/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97434fa0012d81e6d80891ede470b337bb6b779b8bab813e99a56336dcbd730a
|
| 3 |
+
size 301809
|
data/issues/2014/01/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da6547fcbbd49c11e531a15da5e6d94ce85eb9bd30e85dccf1827b0673848656
|
| 3 |
+
size 211595
|
data/public_events/2014/01/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f0034b7a59d902ebc808ba2dd65a48886891678d32cfbb97e02a69f8ae06df66
|
| 3 |
+
size 7117
|
data/pull_requests/2014/01/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4526082206088cdafc5410f2417597e277064c955a624ffcfb1f7e6c0c66c2e
|
| 3 |
+
size 1085463
|
data/pushes/2014/01/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5abb62711ae65be269b4a4c15ddb8b19bae98617957ff725cda2c178a32dca4
|
| 3 |
+
size 12855130
|
data/stars/2014/01/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b6b885ebf49b3ed2abd3826f3e764055cb9b0626acb815d3d571c76b1c1ded7
|
| 3 |
+
size 489156
|
data/wiki_pages/2014/01/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8c263881909eca87a1499e77dc5f8a37b46cf3dc70eb6078d7b14d3c695bce9
|
| 3 |
+
size 168314
|
stats.csv
CHANGED
|
@@ -876,4 +876,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 876 |
2013-12-28,166645,511,88509,8706,12609,5529,0,1227,17925,6057,18744,2586,441,1298,2360,0,143,0,49904098,80.7,15331956,27.7,80.7,34.2
|
| 877 |
2013-12-29,187654,584,97132,12508,13677,6339,0,1149,21063,6897,20816,2807,405,1306,2784,0,187,0,56444289,91.7,17551425,33.3,91.7,27.0
|
| 878 |
2013-12-30,230387,787,117271,13306,19854,9358,0,2149,23970,9216,25010,3773,512,2139,2860,0,182,0,76137933,125.0,25049480,39.6,125.0,42.5
|
| 879 |
-
2013-12-31,168644,433,87803,8847,13635,6851,0,1342,17011,6166,19861,2541,432,1454,2114,0,154,0,53436707,91.7,16153517,35.4,91.7,
|
|
|
|
|
|
| 876 |
2013-12-28,166645,511,88509,8706,12609,5529,0,1227,17925,6057,18744,2586,441,1298,2360,0,143,0,49904098,80.7,15331956,27.7,80.7,34.2
|
| 877 |
2013-12-29,187654,584,97132,12508,13677,6339,0,1149,21063,6897,20816,2807,405,1306,2784,0,187,0,56444289,91.7,17551425,33.3,91.7,27.0
|
| 878 |
2013-12-30,230387,787,117271,13306,19854,9358,0,2149,23970,9216,25010,3773,512,2139,2860,0,182,0,76137933,125.0,25049480,39.6,125.0,42.5
|
| 879 |
+
2013-12-31,168644,433,87803,8847,13635,6851,0,1342,17011,6166,19861,2541,432,1454,2114,0,154,0,53436707,91.7,16153517,35.4,91.7,25.7
|
| 880 |
+
2014-01-01,169021,416,89318,8073,12023,6124,0,1059,19082,6472,19941,2421,390,1232,2318,0,152,0,51711890,85.7,16183122,26.3,85.7,0.0
|