tamnd commited on
Commit
f8f9367
·
verified ·
1 Parent(s): bc051cd

Add 2014-06-08 — 264.5K 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,034 days), totaling **173,042,555 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.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
@@ -134,7 +134,7 @@ duckdb.sql("""
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
- 2014 ████████████████████░░░░░░░░░░ 49.7M
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 | 154 | 49,694,409 | 322,690 | 15.1 GB | 4.5 GB | 1h39m | 8h35m | 2h20m |
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 ███████████████████░░░░░░░░░░ 25.3M
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 ███████████████████░░░░░░░░���░░ 4.5M
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 | 86,871,883 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 9,651,719 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 15,098,451 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 6,999,860 | 4.0% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,574,405 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 16,211,922 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,218,158 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 21,783,002 | 12.6% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,170,131 | 1.3% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 193,571 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,619,543 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,904,956 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 160,287 | 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,035 days), totaling **173,307,008 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.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
 
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
+ 2014 ████████████████████░░░░░░░░░░ 50.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 | 155 | 49,958,862 | 322,315 | 15.1 GB | 4.6 GB | 1h39m | 8h38m | 2h21m |
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 ███████████████████░░░░░░░░░░ 25.5M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
218
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
219
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
220
  2013 ██████████████████████████████ 7.0M
221
+ 2014 ███████████████████░░░░░░░░░░ 4.6M
222
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
223
  ```
224
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 87,015,922 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 9,664,612 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,117,757 | 8.7% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 7,009,575 | 4.0% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,576,504 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 16,237,586 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,228,088 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 21,813,130 | 12.6% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,174,346 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 194,222 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,621,435 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,907,743 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 160,480 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/06/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35823b269ac00b23ef51e3471c462e1f8a058381a475e50d2142b6cd0eb23344
3
+ size 67038
data/creates/2014/06/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b4945845d8ac599331563cc2e7131bfac629c84c289b3d9efbfcf444f71f97b
3
+ size 1052478
data/deletes/2014/06/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd1e0d4286c512f139c4490f13f217932994e07b68759e1ae3a7a20a1e14895a
3
+ size 109054
data/forks/2014/06/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8efbf45ab956c53a536f9570de7edef6fe380332b6a8e8da116fa2deebf2614
3
+ size 271409
data/issue_comments/2014/06/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5b292619075b582af0a5d0011519a8776a4dd25839a0e331c3f56c441e8c9e1
3
+ size 495792
data/issues/2014/06/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b52bded4e3e26e6215bfedf6438927e39366b6ef85971aa07228bb5eba5c2b54
3
+ size 311644
data/public_events/2014/06/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da6a64c0ff24689f79be5b2888d179b78de45ffda08b52a4f1bea06ce48e6996
3
+ size 8823
data/pull_requests/2014/06/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:815ef3d2adf83070fc0c319d86ef1157dc287f3f227bda76482b16795808bb77
3
+ size 1676550
data/pushes/2014/06/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:114e0d193350f3789f2cc2b7e6ab0ab4ff86bfe918152f4b192bf954b5b3396a
3
+ size 24285422
data/stars/2014/06/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61c5415661fece7c7d6086e0b6f4f3a5962fdb0c35bd1dedbc19184e91bef6d8
3
+ size 575987
data/wiki_pages/2014/06/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:492c3e0012132510e706f07d62568d38835da89017900c8cda38b0a65db1af85
3
+ size 213811
stats.csv CHANGED
@@ -1030,6 +1030,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,78.9
1031
  2014-06-05,396877,1920,198204,19562,36707,18459,0,6463,34734,14752,49866,7392,927,3248,4247,0,396,0,133996335,230.3,39689231,43.1,230.4,48.1
1032
  2014-06-06,343842,1750,176246,16884,30737,16941,0,5309,29762,12811,39159,6591,855,2867,3562,0,368,0,122759819,213.0,34860915,42.2,213.0,40.1
1033
- 2014-06-07,228855,1329,124445,10539,15797,8473,0,1789,21638,9124,27776,3314,518,1722,2178,0,213,0,72638845,127.2,22443441,43.5,127.2,0.0
 
1034
  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
1035
  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
 
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,78.9
1031
  2014-06-05,396877,1920,198204,19562,36707,18459,0,6463,34734,14752,49866,7392,927,3248,4247,0,396,0,133996335,230.3,39689231,43.1,230.4,48.1
1032
  2014-06-06,343842,1750,176246,16884,30737,16941,0,5309,29762,12811,39159,6591,855,2867,3562,0,368,0,122759819,213.0,34860915,42.2,213.0,40.1
1033
+ 2014-06-07,228855,1329,124445,10539,15797,8473,0,1789,21638,9124,27776,3314,518,1722,2178,0,213,0,72638845,127.2,22443441,43.5,127.2,47.4
1034
+ 2014-06-08,264453,941,144039,12893,19306,9715,0,2099,25664,9930,30128,4215,651,1892,2787,0,193,0,87430736,159.4,29068008,36.2,159.4,0.0
1035
  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
1036
  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