tamnd commited on
Commit
ccb30da
·
verified ·
1 Parent(s): 656e79f

Add 2011-02-12 to 2011-02-18 — 7 days, 273.6K events, 7 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 **2015-01-03** (1,068 days), totaling **184,349,432 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 53.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.2 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
 
@@ -133,7 +133,7 @@ duckdb.sql("""
133
  ## Events per year
134
 
135
  ```
136
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 ████████████████████████░░░░░░ 61.0M
@@ -142,7 +142,7 @@ duckdb.sql("""
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
  | 2014 | 188 | 61,001,286 | 324,474 | 18.7 GB | 5.6 GB | 2h02m | 10h40m | 2h52m |
@@ -175,7 +175,7 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ██████████████████████░░░░░░░░ 3.2M
@@ -198,7 +198,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
- 2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ███████████████████████████░░░ 2.7M
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 92,563,690 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,230,013 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,137,542 | 8.8% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,508,860 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,729,605 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 17,304,537 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,638,168 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 23,109,649 | 12.5% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,366,534 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 223,160 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,711,745 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,024,850 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 170,498 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
 
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 **2015-01-03** (1,071 days), totaling **184,473,519 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 53.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.2 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
 
 
133
  ## Events per year
134
 
135
  ```
136
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.2M
137
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 ████████████████████████░░░░░░ 61.0M
 
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 246 | 14,220,231 | 57,805 | 2.7 GB | 1.4 GB | 1h06m | 50m22s | 1h53m |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
  | 2014 | 188 | 61,001,286 | 324,474 | 18.7 GB | 5.6 GB | 2h02m | 10h40m | 2h52m |
 
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 742.2K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ██████████████████████░░░░░░░░ 3.2M
 
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
+ 2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 373.7K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 ███████████████████████████░░░ 2.7M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 92,631,245 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,235,149 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,137,542 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,511,710 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,729,605 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 17,318,370 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,641,645 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 23,132,109 | 12.5% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,367,906 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 223,160 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,713,545 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,028,345 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 106,064 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 170,637 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/02/12.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b6337d494b8257704a133f3fb5c86377cb604cd80d6adacf7a6455c05e5469b6
3
- size 104017
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fe573f3046f6c92e924b2ce7308e372db816ae1ba0216d483d0fe962eb8fba8
3
+ size 151800
data/stars/2011/02/13.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:26fd661478aa3247e33a98a1564699eafad98c65a8169258faff456758dd5737
3
- size 107841
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e742681c2e8074c351983f22ec0f98ceec872081331f838e694582bb183be80d
3
+ size 158849
data/stars/2011/02/14.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:19d69f08b3ebd28b95b72e0dea17e697450ad911684785ed1757cc0c65bcea10
3
- size 139401
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73ba4b595a662ad0fb1aae50fb0aa7ce771851e8d055af2362a63fb756ffa3a9
3
+ size 204169
data/stars/2011/02/15.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4c25f17ed30c8af1a062519430e0ae05f403562e614863637b0958eb7d530d5d
3
- size 148133
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc0848fbc56a953ba88312f0ba99b4508dadef8d889ff3a6bddcd5f895faa2a8
3
+ size 217212
data/stars/2011/02/16.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f5b539f42864f0a691fa973d9985e1b8fd331cbf87581ada7d14bf8e23f6beda
3
- size 135491
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3be2c6356364981fc3b99bb4e1c33e94397e5c5eeb5b54d400da016413e7d01a
3
+ size 199655
data/stars/2011/02/17.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:765b689202419fcf15db5667c7bcd9bb5624ed11fd065e23c947087853b53f0a
3
- size 141815
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:096ec070c32ed72f5601815bdf743800675e3074e5f0b6417ed212df6c787aad
3
+ size 210110
data/stars/2011/02/18.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:046aced32a4ca9868385d43a7bd0b95a17d518ec0da08132e6ae0d5a6b88c1b5
3
- size 138635
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fbca499bfe16fd66200d05544e849a990e8efe0583a659248c8d05d0bec585a
3
+ size 203412
stats.csv CHANGED
@@ -1,8 +1,11 @@
1
  date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_reviews,pr_review_comments,stars,forks,creates,deletes,releases,commit_comments,wiki_pages,members,public_events,discussions,bytes_read,dur_seconds,parquet_bytes,dur_download_s,dur_process_s,dur_commit_s
2
- 2011-02-12,30100,0,16694,1161,0,799,0,0,3517,930,4842,466,0,410,1029,228,24,0,5912248,9.9,3288866,5.9,9.9,31.8
3
- 2011-02-13,37082,0,18277,1332,0,667,0,0,3692,822,10106,455,0,451,1035,209,36,0,6432532,12.1,3596553,15.3,12.1,35.5
4
- 2011-02-14,41481,0,22797,1620,0,1002,0,0,4722,1160,6933,792,0,559,1496,371,29,0,8283118,14.1,4520871,5.8,14.1,20.3
5
- 2011-02-15,40870,0,22613,1878,0,1009,0,0,4967,1178,6459,712,0,518,1150,343,43,0,8224882,15.1,4352221,19.4,15.1,21.2
 
 
 
6
  2011-02-27,32055,0,18497,1558,0,785,0,0,3183,816,5371,486,0,353,820,163,23,0,6236724,9.0,3343708,1.6,9.0,38.0
7
  2011-02-28,38700,0,22030,2051,0,1013,0,0,4299,1093,5703,492,0,597,1027,347,48,0,7907379,14.5,4195639,10.9,14.5,29.9
8
  2011-03-01,41792,0,23558,1759,0,1112,0,0,4951,1278,6119,579,0,679,1378,332,47,0,8536051,18.0,4636711,13.2,18.0,25.3
 
1
  date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_reviews,pr_review_comments,stars,forks,creates,deletes,releases,commit_comments,wiki_pages,members,public_events,discussions,bytes_read,dur_seconds,parquet_bytes,dur_download_s,dur_process_s,dur_commit_s
2
+ 2011-02-12,30100,0,16694,1161,0,799,0,0,3517,930,4842,466,0,410,1029,228,24,0,5912248,5.0,151800,6.7,5.0,0.0
3
+ 2011-02-13,37082,0,18277,1332,0,667,0,0,3692,822,10106,455,0,451,1035,209,36,0,6432532,5.4,158849,7.6,5.4,0.0
4
+ 2011-02-14,41481,0,22797,1620,0,1002,0,0,4722,1160,6933,792,0,559,1496,371,29,0,8283118,5.3,204169,4.8,5.3,0.0
5
+ 2011-02-15,40870,0,22613,1878,0,1009,0,0,4967,1178,6459,712,0,518,1150,343,43,0,8224882,6.7,217212,7.4,6.7,0.0
6
+ 2011-02-16,38663,0,21993,1665,0,970,0,0,4477,1178,5693,467,0,581,1268,332,39,0,7893909,6.3,199655,6.7,6.3,0.0
7
+ 2011-02-17,44142,0,23464,1748,0,1009,0,0,4758,1148,9315,491,0,655,1126,390,38,0,8644694,6.9,210110,5.7,6.9,0.0
8
+ 2011-02-18,41282,0,22098,1723,0,871,0,0,4598,1151,7452,414,0,564,1101,1248,62,0,8070620,8.0,203412,6.0,8.0,0.0
9
  2011-02-27,32055,0,18497,1558,0,785,0,0,3183,816,5371,486,0,353,820,163,23,0,6236724,9.0,3343708,1.6,9.0,38.0
10
  2011-02-28,38700,0,22030,2051,0,1013,0,0,4299,1093,5703,492,0,597,1027,347,48,0,7907379,14.5,4195639,10.9,14.5,29.9
11
  2011-03-01,41792,0,23558,1759,0,1112,0,0,4951,1278,6119,579,0,679,1378,332,47,0,8536051,18.0,4636711,13.2,18.0,25.3