tamnd commited on
Commit
8cd74c0
·
verified ·
1 Parent(s): c66708b

Add 2014-03-18 — 394.7K 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-03-17** (954 days), totaling **146,151,022 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 41.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.7 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 █████████░░░░░░░░░░░░░░░░░░░░░ 23.3M
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 | 76 | 23,314,625 | 306,771 | 7.1 GB | 2.1 GB | 50m36s | 3h44m | 1h01m |
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 █████████░░░░░░░░░░░░░░░░░░░░░ 11.8M
744
  ```
745
 
746
 
@@ -750,7 +750,7 @@ duckdb.sql("""
750
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
751
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
752
  2013 ██████████████████████████████ 4.3M
753
- 2014 ████████░░░░░░░░░░░░░░░░░░░░░ 1.3M
754
  ```
755
 
756
 
@@ -1154,20 +1154,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
- | `pushes` | PushEvent | 73,094,677 | 50.0% | Git pushes with commits |
1158
- | `issues` | IssuesEvent | 8,236,372 | 5.6% | Issue lifecycle events |
1159
- | `issue_comments` | IssueCommentEvent | 12,677,841 | 8.7% | Comments on issues/PRs |
1160
- | `pull_requests` | PullRequestEvent | 5,824,329 | 4.0% | PR lifecycle events |
1161
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,232,062 | 0.8% | Line-level PR comments |
1162
- | `stars` | WatchEvent | 13,795,479 | 9.4% | Repository stars |
1163
- | `forks` | ForkEvent | 5,259,245 | 3.6% | Repository forks |
1164
- | `creates` | CreateEvent | 18,709,590 | 12.8% | Branch/tag/repo creation |
1165
- | `deletes` | DeleteEvent | 1,632,399 | 1.1% | Branch/tag deletion |
1166
- | `releases` | ReleaseEvent | 128,874 | 0.1% | Release publications |
1167
- | `commit_comments` | CommitCommentEvent | 1,407,835 | 1.0% | Comments on commits |
1168
- | `wiki_pages` | GollumEvent | 2,571,835 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
- | `public_events` | PublicEvent | 134,563 | 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-03-18** (955 days), totaling **146,545,703 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 41.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.7 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 █████████░░░░░░░░░░░░░░░░░░░░░ 23.7M
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 | 77 | 23,709,306 | 307,913 | 7.2 GB | 2.2 GB | 51m30s | 3h48m | 1h02m |
735
 
736
 
737
  ### Pushes per year
 
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
+ 2014 █████████░░░░░░░░░░░░░░░░░░░░░ 12.0M
744
  ```
745
 
746
 
 
750
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
751
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
752
  2013 ██████████████████████████████ 4.3M
753
+ 2014 ████████░░░░░░░░░░░░░░░░░░░░░ 1.3M
754
  ```
755
 
756
 
 
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
+ | `pushes` | PushEvent | 73,289,763 | 50.0% | Git pushes with commits |
1158
+ | `issues` | IssuesEvent | 8,256,404 | 5.6% | Issue lifecycle events |
1159
+ | `issue_comments` | IssueCommentEvent | 12,715,392 | 8.7% | Comments on issues/PRs |
1160
+ | `pull_requests` | PullRequestEvent | 5,842,662 | 4.0% | PR lifecycle events |
1161
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,237,832 | 0.8% | Line-level PR comments |
1162
+ | `stars` | WatchEvent | 13,831,313 | 9.4% | Repository stars |
1163
+ | `forks` | ForkEvent | 5,273,628 | 3.6% | Repository forks |
1164
+ | `creates` | CreateEvent | 18,757,119 | 12.8% | Branch/tag/repo creation |
1165
+ | `deletes` | DeleteEvent | 1,639,801 | 1.1% | Branch/tag deletion |
1166
+ | `releases` | ReleaseEvent | 129,889 | 0.1% | Release publications |
1167
+ | `commit_comments` | CommitCommentEvent | 1,411,123 | 1.0% | Comments on commits |
1168
+ | `wiki_pages` | GollumEvent | 2,577,560 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
+ | `public_events` | PublicEvent | 134,947 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
data/commit_comments/2014/03/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab9665e8300438f6ee120836a398f018cdb2994041ecf33642d23190fbc2f280
3
+ size 114376
data/creates/2014/03/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6fe1f517834bc17ec8a1defaf608ca200ed3fe3ada50b61a55bc3c67c54034c
3
+ size 1692561
data/deletes/2014/03/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab99829567fc21d4c272466bccd06ec6bb3206e507d345925015e837f1b2d818
3
+ size 198511
data/forks/2014/03/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f8ddc898ae67bcd7351287a1097fbf2a9d492709292b4caf71cb81b871c3bdc
3
+ size 428624
data/issue_comments/2014/03/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a85808901376ec6e2d81cbe35b804fc72b0c5e7c2686988d3fe1f1e7242a6ae
3
+ size 874442
data/issues/2014/03/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:352668e9e13d493bfb89e0aaf036961936d8250a74aa6fa7d6d5ea2543ff7517
3
+ size 511161
data/public_events/2014/03/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d024510b49afa5a87dbce24ad06e570711d0e61de65d5615816fb50afc4167d
3
+ size 15035
data/pull_requests/2014/03/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c5cf4e0218e98c0b2ed26499f8b4ac163c15794eacfac4c8b7836d166d14c15
3
+ size 3139895
data/pushes/2014/03/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc9a029584219140268633d994c1018c473a893022c77ef76df38270cc94c4e4
3
+ size 30574270
data/stars/2014/03/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df7b9e488b4e764594833ed23b6d7d33ab68616c1324c900faa5765486b93e75
3
+ size 772652
data/wiki_pages/2014/03/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:734a45030013775985761578e1fd0b531d098e91f233d44b04dea43d3fc79d0d
3
+ size 366078
stats.csv CHANGED
@@ -952,4 +952,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
952
  2014-03-14,301115,1593,148059,18198,31569,13815,0,4092,26192,11394,32987,5832,666,2123,4343,0,252,0,99196977,181.5,29763761,51.5,181.5,51.3
953
  2014-03-15,223551,1119,115275,12930,18802,7855,0,1865,22138,8651,25381,3743,455,1593,3565,0,179,0,67982239,128.3,21300588,41.9,128.3,64.7
954
  2014-03-16,264394,1172,141523,12368,20209,9489,0,2552,26316,9475,30301,4603,606,1806,3725,0,249,0,82635694,154.3,26094021,29.7,154.3,54.0
955
- 2014-03-17,380242,2110,189652,19604,36519,17073,0,6138,34908,14124,42776,7411,825,3193,5508,0,401,0,127997949,253.4,37797165,41.5,253.4,0.0
 
 
952
  2014-03-14,301115,1593,148059,18198,31569,13815,0,4092,26192,11394,32987,5832,666,2123,4343,0,252,0,99196977,181.5,29763761,51.5,181.5,51.3
953
  2014-03-15,223551,1119,115275,12930,18802,7855,0,1865,22138,8651,25381,3743,455,1593,3565,0,179,0,67982239,128.3,21300588,41.9,128.3,64.7
954
  2014-03-16,264394,1172,141523,12368,20209,9489,0,2552,26316,9475,30301,4603,606,1806,3725,0,249,0,82635694,154.3,26094021,29.7,154.3,54.0
955
+ 2014-03-17,380242,2110,189652,19604,36519,17073,0,6138,34908,14124,42776,7411,825,3193,5508,0,401,0,127997949,253.4,37797165,41.5,253.4,66.9
956
+ 2014-03-18,394681,2349,195086,20032,37551,18333,0,5770,35834,14383,47529,7402,1015,3288,5725,0,384,0,130893056,270.8,38687605,53.5,270.8,0.0