tamnd commited on
Commit
af31163
·
verified ·
1 Parent(s): b39efc1

Add 2014-05-13 — 408.6K 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 **2015-01-03** (1,009 days), totaling **164,137,676 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 47.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.4 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
 
@@ -134,7 +134,7 @@ duckdb.sql("""
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
- 2014 ████████████████░░░░░░░░░░░░░░ 40.8M
138
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
139
  ```
140
 
@@ -143,7 +143,7 @@ duckdb.sql("""
143
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
144
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
145
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
146
- | 2014 | 129 | 40,789,530 | 316,197 | 12.4 GB | 3.7 GB | 1h24m | 7h05m | 2h00m |
147
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
148
 
149
 
@@ -155,7 +155,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
155
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
156
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
157
  2013 ██████████████████████████████ 38.1M
158
- 2014 ████████████████░░░░░░░░░░░░░░ 20.8M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
@@ -218,7 +218,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
218
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
219
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
220
  2013 ██████████████████████████████ 7.0M
221
- 2014 ████████████████░░░░░░░░░░░���░░ 3.8M
222
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
223
  ```
224
 
@@ -610,20 +610,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
- | `pushes` | PushEvent | 82,343,105 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 9,166,582 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 14,282,494 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 6,608,399 | 4.0% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,454,912 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 15,432,019 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 5,893,349 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 20,767,191 | 12.7% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 1,971,565 | 1.2% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 171,630 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,548,774 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,803,249 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 151,990 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
 
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,012 days), totaling **165,334,263 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 47.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.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
 
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
 
 
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
+ 2014 ████████████████░░░░░░░░░░░░░░ 42.0M
138
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
139
  ```
140
 
 
143
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
144
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
145
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
146
+ | 2014 | 132 | 41,986,117 | 318,076 | 12.7 GB | 3.8 GB | 1h26m | 7h17m | 2h01m |
147
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
148
 
149
 
 
155
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
156
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
157
  2013 ██████████████████████████████ 38.1M
158
+ 2014 ████████████████░░░░░░░░░░░░░░ 21.4M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
218
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
219
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
220
  2013 ██████████████████████████████ 7.0M
221
+ 2014 ████████████████░░░░░░░░░░░░░ 3.9M
222
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
223
  ```
224
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 82,954,055 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 9,225,954 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 14,392,239 | 8.7% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 6,662,453 | 4.0% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,473,148 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 15,542,707 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 5,937,343 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 20,903,918 | 12.6% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 1,991,197 | 1.2% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 174,497 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,558,737 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,816,521 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 153,184 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/05/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:750f774df7adffd0dae9e1156e06b8d589b5083fbfb6b37b94300c9776984cd0
3
+ size 116139
data/creates/2014/05/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d166c5d8a09c8b51d3c6f20c82a3f585f67641e2a2d81fbd72743e7c6c8faa16
3
+ size 1721759
data/deletes/2014/05/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc96610ae4019a82f16ddea8581d8b2a91e0c76ce47be91fc3d1e0f4336a834f
3
+ size 194617
data/forks/2014/05/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0aa3d721fe0dfe0e616d550271a2561605d073efc70e18d1f41ac57092b8a776
3
+ size 402994
data/issue_comments/2014/05/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7a4d0e5199e9b502a9568dded32c11121437e887d911b01e41b58f5e4f5c08d
3
+ size 869220
data/issues/2014/05/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6da986ef2b427595441a92d0bd726c98f3800f24221c97dedeb32715df5584a
3
+ size 599347
data/public_events/2014/05/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04d8762f41a3853af08bd42d2eb3892c73ff0c8241b00e2fbd16baac41c71973
3
+ size 16516
data/pull_requests/2014/05/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:601a3250c56113f799956262f0e464d51e3d8b8bada0a80256c3732045da854d
3
+ size 3167884
data/pushes/2014/05/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13cfe39fd163bb83cdb53af594c1431cee0379c2f892808ac5b9d447a1a829c1
3
+ size 32153354
data/stars/2014/05/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c5d04fad3eb301cee189d491d72fae03a972d951ff9977823a7e95c58687bac
3
+ size 893394
data/wiki_pages/2014/05/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c05947ed70a961e519ba967012d9b0c83c22df4d412f1936dea910038fd31ab
3
+ size 240513
stats.csv CHANGED
@@ -1005,6 +1005,9 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1005
  2014-05-07,415589,2063,206314,31253,38453,18264,0,6405,35947,14821,44739,7508,1063,3388,4930,0,441,0,135716284,92.6,40643529,10.9,92.6,39.4
1006
  2014-05-08,397968,1969,201120,21791,38300,18394,0,5519,35384,14063,45564,6410,1011,3298,4776,0,369,0,131063573,87.1,39806038,3.0,87.1,55.6
1007
  2014-05-10,246062,1314,134843,11824,17571,8700,0,2143,22067,9710,28696,3513,624,1868,2968,0,221,0,76102715,153.1,0,27.7,153.1,38.4
1008
- 2014-05-12,400110,2081,204307,18942,37191,18393,0,5947,37361,14533,45519,6643,975,3499,4329,0,390,0,134062015,232.8,40387176,36.1,232.8,0.0
 
 
 
1009
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1010
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0
 
1005
  2014-05-07,415589,2063,206314,31253,38453,18264,0,6405,35947,14821,44739,7508,1063,3388,4930,0,441,0,135716284,92.6,40643529,10.9,92.6,39.4
1006
  2014-05-08,397968,1969,201120,21791,38300,18394,0,5519,35384,14063,45564,6410,1011,3298,4776,0,369,0,131063573,87.1,39806038,3.0,87.1,55.6
1007
  2014-05-10,246062,1314,134843,11824,17571,8700,0,2143,22067,9710,28696,3513,624,1868,2968,0,221,0,76102715,153.1,0,27.7,153.1,38.4
1008
+ 2014-05-12,400110,2081,204307,18942,37191,18393,0,5947,37361,14533,45519,6643,975,3499,4329,0,390,0,134062015,232.8,40387176,36.1,232.8,51.7
1009
+ 2014-05-13,408559,2147,205771,20520,37274,18325,0,6127,38353,15076,49215,6506,881,3542,4357,0,465,0,134633880,241.4,40375737,51.9,241.4,0.0
1010
+ 2014-05-14,394769,1964,200396,20175,36996,17658,0,6063,37308,14835,44087,6393,965,3257,4308,0,364,0,131117427,230.4,39045591,41.5,230.4,0.0
1011
+ 2014-05-15,393259,1782,204783,18677,35475,18071,0,6046,35027,14083,43425,6733,1021,3164,4607,0,365,0,130968797,226.5,39860521,48.8,226.5,0.0
1012
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1013
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0