tamnd commited on
Commit
46b87fa
·
verified ·
1 Parent(s): 149d506

Add 2014-02-28 — 326.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 **2014-02-27** (936 days), totaling **140,278,293 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 39.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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
 
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
 
@@ -723,7 +723,7 @@ duckdb.sql("""
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
- 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 17.4M
727
  ```
728
 
729
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
@@ -731,7 +731,7 @@ duckdb.sql("""
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 | 58 | 17,441,896 | 300,722 | 5.3 GB | 1.6 GB | 39m05s | 2h44m | 45m56s |
735
 
736
 
737
  ### Pushes per year
@@ -740,7 +740,7 @@ duckdb.sql("""
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
- 2014 ██████░░░░░░░░░░░░░░░░░░░░░░░ 8.9M
744
  ```
745
 
746
 
@@ -750,7 +750,7 @@ duckdb.sql("""
750
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
751
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
752
  2013 ██████████████████████████████ 4.3M
753
- 2014 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 959.4K
754
  ```
755
 
756
 
@@ -760,7 +760,7 @@ duckdb.sql("""
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████��███████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
- 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 756.1K
764
  ```
765
 
766
 
@@ -770,7 +770,7 @@ duckdb.sql("""
770
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
771
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
772
  2013 ██████████████████████████████ 7.0M
773
- 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.6M
774
  ```
775
 
776
 
@@ -1154,20 +1154,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
- | `pushes` | PushEvent | 70,137,536 | 50.0% | Git pushes with commits |
1158
- | `issues` | IssuesEvent | 7,922,254 | 5.6% | Issue lifecycle events |
1159
- | `issue_comments` | IssueCommentEvent | 12,137,120 | 8.7% | Comments on issues/PRs |
1160
- | `pull_requests` | PullRequestEvent | 5,566,542 | 4.0% | PR lifecycle events |
1161
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,160,599 | 0.8% | Line-level PR comments |
1162
- | `stars` | WatchEvent | 13,256,043 | 9.4% | Repository stars |
1163
- | `forks` | ForkEvent | 5,048,182 | 3.6% | Repository forks |
1164
- | `creates` | CreateEvent | 18,024,768 | 12.8% | Branch/tag/repo creation |
1165
- | `deletes` | DeleteEvent | 1,516,130 | 1.1% | Branch/tag deletion |
1166
- | `releases` | ReleaseEvent | 115,763 | 0.1% | Release publications |
1167
- | `commit_comments` | CommitCommentEvent | 1,361,258 | 1.0% | Comments on commits |
1168
- | `wiki_pages` | GollumEvent | 2,488,859 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
- | `public_events` | PublicEvent | 128,914 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
 
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-02-28** (937 days), totaling **140,604,490 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 40.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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
 
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
 
 
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
+ 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 17.8M
727
  ```
728
 
729
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
 
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 | 59 | 17,768,093 | 301,154 | 5.4 GB | 1.6 GB | 39m40s | 2h48m | 46m46s |
735
 
736
 
737
  ### Pushes per year
 
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
+ 2014 ██████░░░░░░░░░░░░░░░░░░░░░░░ 9.0M
744
  ```
745
 
746
 
 
750
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
751
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
752
  2013 ██████████████████████████████ 4.3M
753
+ 2014 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 976.1K
754
  ```
755
 
756
 
 
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████��███████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
+ 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 772.3K
764
  ```
765
 
766
 
 
770
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
771
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
772
  2013 ██████████████████████████████ 7.0M
773
+ 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.7M
774
  ```
775
 
776
 
 
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
+ | `pushes` | PushEvent | 70,301,978 | 50.0% | Git pushes with commits |
1158
+ | `issues` | IssuesEvent | 7,939,009 | 5.6% | Issue lifecycle events |
1159
+ | `issue_comments` | IssueCommentEvent | 12,167,894 | 8.7% | Comments on issues/PRs |
1160
+ | `pull_requests` | PullRequestEvent | 5,582,730 | 4.0% | PR lifecycle events |
1161
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,164,734 | 0.8% | Line-level PR comments |
1162
+ | `stars` | WatchEvent | 13,283,934 | 9.4% | Repository stars |
1163
+ | `forks` | ForkEvent | 5,059,976 | 3.6% | Repository forks |
1164
+ | `creates` | CreateEvent | 18,062,268 | 12.8% | Branch/tag/repo creation |
1165
+ | `deletes` | DeleteEvent | 1,522,826 | 1.1% | Branch/tag deletion |
1166
+ | `releases` | ReleaseEvent | 116,483 | 0.1% | Release publications |
1167
+ | `commit_comments` | CommitCommentEvent | 1,363,993 | 1.0% | Comments on commits |
1168
+ | `wiki_pages` | GollumEvent | 2,493,167 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
+ | `public_events` | PublicEvent | 129,225 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
data/commit_comments/2014/02/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d31f13a7e91bbb651137dff52cf813291ef8694f2a869390c852bc008f960e50
3
+ size 93782
data/creates/2014/02/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c91d9b9e177b9aaa3b95099a0b280814feb7c5990f7f9a079a3376ea3793e45
3
+ size 1383511
data/deletes/2014/02/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:692a453cb20bae38bffc405ef78f332b3d540611fe9f52303cfc213616dfbe87
3
+ size 185876
data/forks/2014/02/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1994e4658b894698e2ba25248cb7ff2ebb9bfc3cecc0b128f5295dc4526b874
3
+ size 338264
data/issue_comments/2014/02/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c27be79e4548cb1b667fae560d003a149bd9c5a865f86ed0dbce68eb857d6d3
3
+ size 731569
data/issues/2014/02/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06ee137ab6c58491b83d136ac78474ef5cf3783ebbb9d0618ec571a9c5044e99
3
+ size 444820
data/public_events/2014/02/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:981cd5f16d25864090d65ccb2434eaa2d04ecff5eaf78daec357848cc2ceb472
3
+ size 12908
data/pull_requests/2014/02/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74f9cf4b1d236ed2724cc79cd88dd0f1ded139f2528a3ed6f23f732048aa69ce
3
+ size 2709666
data/pushes/2014/02/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41818ef648f5cff9c50bf18bb39e3a8af1fb34d809c66b1f007db1f769b220ce
3
+ size 25451977
data/stars/2014/02/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9fac7a86203bbe8e5d05ebfc22c3c7ca4bcfb90b9a49de1bf8f9f58acca61cf
3
+ size 620490
data/wiki_pages/2014/02/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a37cc41f31fb2f8ef6254ae7097918adc3065fbf14433915ca8c65145884e01
3
+ size 225068
stats.csv CHANGED
@@ -934,4 +934,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
934
  2014-02-24,377327,1993,184757,22509,40479,17365,0,5379,33184,12870,42622,6687,780,3259,5067,0,376,0,125351474,250.4,36924932,43.0,250.4,39.7
935
  2014-02-25,381479,2197,190103,21410,36672,17439,0,4889,35114,14289,42846,6537,809,3184,5550,0,440,0,126742429,246.6,37698407,46.9,246.6,43.5
936
  2014-02-26,387963,2116,192209,20928,38772,18537,0,5146,34077,14678,43093,8950,863,3032,5244,0,318,0,129621281,254.6,37889672,43.7,254.6,49.5
937
- 2014-02-27,378071,2089,188944,18878,35611,18775,0,4758,33964,14366,43820,7303,870,3170,5172,0,351,0,125854321,236.1,37649870,43.4,236.1,0.0
 
 
934
  2014-02-24,377327,1993,184757,22509,40479,17365,0,5379,33184,12870,42622,6687,780,3259,5067,0,376,0,125351474,250.4,36924932,43.0,250.4,39.7
935
  2014-02-25,381479,2197,190103,21410,36672,17439,0,4889,35114,14289,42846,6537,809,3184,5550,0,440,0,126742429,246.6,37698407,46.9,246.6,43.5
936
  2014-02-26,387963,2116,192209,20928,38772,18537,0,5146,34077,14678,43093,8950,863,3032,5244,0,318,0,129621281,254.6,37889672,43.7,254.6,49.5
937
+ 2014-02-27,378071,2089,188944,18878,35611,18775,0,4758,33964,14366,43820,7303,870,3170,5172,0,351,0,125854321,236.1,37649870,43.4,236.1,50.1
938
+ 2014-02-28,326197,1948,164442,16755,30774,16188,0,4135,27891,11794,37500,6696,720,2735,4308,0,311,0,109358746,219.7,32197931,35.3,219.7,0.0