tamnd commited on
Commit
7601dcb
·
verified ·
1 Parent(s): 54d53ff

Add 2014-06-04 — 421.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 **2015-01-03** (1,030 days), totaling **171,651,798 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 49.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.1 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 ███████████████████░░░░░░░░░░░ 48.3M
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 | 150 | 48,303,652 | 322,024 | 14.6 GB | 4.4 GB | 1h36m | 8h21m | 2h16m |
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 ███████████████████░░░░░░░░░░░ 24.6M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
@@ -610,20 +610,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
- | `pushes` | PushEvent | 86,169,886 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 9,580,635 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 14,973,407 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 6,936,971 | 4.0% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,554,470 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 16,089,108 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,165,517 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 21,618,078 | 12.6% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,138,829 | 1.2% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 190,275 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,607,177 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,890,785 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 158,921 | 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,031 days), totaling **172,072,981 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 49.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.1 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 ███████████████████░░░░░░░░░░░ 48.7M
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 | 151 | 48,724,835 | 322,681 | 14.8 GB | 4.5 GB | 1h37m | 8h25m | 2h17m |
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 ███████████████████░░░░░░░░░░░ 24.8M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 86,372,988 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 9,604,734 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,015,210 | 8.7% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 6,955,987 | 4.0% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,560,844 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 16,125,788 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,181,471 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 21,666,201 | 12.6% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,152,834 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 191,271 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,611,706 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,894,969 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 159,310 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b950663b747650f3411c9deca031d64eeaaa1895a0c4e30facef90ca7d089c09
3
+ size 128822
data/creates/2014/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:538f42f9228ffadd7af7af8b32ae3d74eaa573c56165a0255dff9316382c633f
3
+ size 1697415
data/deletes/2014/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a52a4f8cbf8084a9d642cbd9a76752e528a87ddd81bf1acc60bfe7f572369f9
3
+ size 259715
data/forks/2014/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5c782d632f77860050b6ce7bb4ce6c4bf0fe3f31da8a8a01b86d407b2a2903a
3
+ size 403810
data/issue_comments/2014/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4757764b622cfe1c7086aa3676859db8eed6bdba652a819e540cb117eceb38f3
3
+ size 931700
data/issues/2014/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c47518d8ba766f2a58180e726ae75d90b7a4dd63e87e1744b91195cd5f678aef
3
+ size 579786
data/public_events/2014/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d54620d44a1674fe4b5096ab13b4c875bf5755130448da6fa3bbda85f6fdc69b
3
+ size 14262
data/pull_requests/2014/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:594250acd95fecbe1c766b799d41ddcc312c6b0ce1320e83f8971f09eef0a710
3
+ size 3208022
data/pushes/2014/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:845d56e18b63c83dab030ee14ec373c69b76786b6ece7b7aed1a8364e7923029
3
+ size 32030840
data/stars/2014/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c8c8e65f829b4d5c14536947ab15efd8f96ba5b234cbf161a84dc873f4750ee
3
+ size 796734
data/wiki_pages/2014/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e349f5baebbed70f94e0004ba577a3340848b7f436c4df9dd4f7056b5dc50f8d
3
+ size 301464
stats.csv CHANGED
@@ -1026,6 +1026,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1026
  2014-05-30,331073,1309,166956,19515,30265,15781,0,4097,29104,11680,37894,7061,863,2753,3486,0,309,0,109652472,185.2,33316937,7.1,185.2,37.0
1027
  2014-06-01,255818,964,137722,11779,18630,9306,0,1864,22578,8431,29378,9829,702,1660,2757,0,218,0,78795368,132.3,25249641,17.0,132.3,42.9
1028
  2014-06-02,393757,1888,187510,18421,35905,17737,0,5650,30738,13402,43827,29810,1049,2966,4422,0,432,0,126730837,215.2,37545118,30.4,215.2,40.0
1029
- 2014-06-03,414247,1876,200116,26536,40550,18735,0,6520,36347,15385,46266,13126,932,3181,4283,0,394,0,135488017,227.0,40325944,44.9,227.0,0.0
 
1030
  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
1031
  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
 
1026
  2014-05-30,331073,1309,166956,19515,30265,15781,0,4097,29104,11680,37894,7061,863,2753,3486,0,309,0,109652472,185.2,33316937,7.1,185.2,37.0
1027
  2014-06-01,255818,964,137722,11779,18630,9306,0,1864,22578,8431,29378,9829,702,1660,2757,0,218,0,78795368,132.3,25249641,17.0,132.3,42.9
1028
  2014-06-02,393757,1888,187510,18421,35905,17737,0,5650,30738,13402,43827,29810,1049,2966,4422,0,432,0,126730837,215.2,37545118,30.4,215.2,40.0
1029
+ 2014-06-03,414247,1876,200116,26536,40550,18735,0,6520,36347,15385,46266,13126,932,3181,4283,0,394,0,135488017,227.0,40325944,44.9,227.0,41.5
1030
+ 2014-06-04,421183,1929,203102,24099,41803,19016,0,6374,36680,15954,48123,14005,996,4529,4184,0,389,0,137410289,239.9,40352570,38.3,239.9,0.0
1031
  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
1032
  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