tamnd commited on
Commit
3e1cb41
·
verified ·
1 Parent(s): b6d7393

Add 2014-06-23 — 387.4K 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,049 days), totaling **178,013,840 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 51.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
@@ -134,7 +134,7 @@ duckdb.sql("""
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
- 2014 ██████████████████████░░░░░░░░ 54.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 | 169 | 54,665,694 | 323,465 | 16.7 GB | 5.0 GB | 1h49m | 9h30m | 2h33m |
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 █████████████████████░░░░░░░░ 27.9M
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 | 89,408,068 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 9,891,182 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 15,534,130 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 7,223,526 | 4.1% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,642,205 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 16,667,678 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,407,314 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 22,386,068 | 12.6% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,256,718 | 1.3% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 206,176 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,662,751 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,958,027 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 164,784 | 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,050 days), totaling **178,401,266 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 51.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
 
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
+ 2014 ██████████████████████░░░░░░░░ 55.1M
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 | 170 | 55,053,120 | 323,841 | 16.8 GB | 5.1 GB | 1h50m | 9h35m | 2h34m |
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 █████████████████████░░░░░░░░ 28.1M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 89,600,611 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 9,910,450 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,571,024 | 8.7% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 7,241,878 | 4.1% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,648,084 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 16,705,571 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,422,040 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 22,429,846 | 12.6% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,264,116 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 207,246 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,665,926 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,962,413 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 165,161 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/06/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0f28c6c2a58d74365d5bce71990fbed7b7c85f2eaad71c6dc1169acfa7fee08
3
+ size 110916
data/creates/2014/06/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62df8d5c8a52ee29cd0cc20afdaf2c420cf8ff3d1f3ce81e15ee4164ee6c30f3
3
+ size 1550608
data/deletes/2014/06/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:144e31765a75acb2aa86aecd5edeea5325b80797901bbd70f0f183853dca0ec0
3
+ size 207585
data/forks/2014/06/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3eff2128a0f17b11f6bb529f7ee08662635dbf3aff3427b0bf104112f947ad4b
3
+ size 393524
data/issue_comments/2014/06/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:303d1122ff52807aa14125e9ec2272a31adb946abd5175c52e2e3553b05d6c70
3
+ size 879937
data/issues/2014/06/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:041d784cd90de8505d5ffd7d6d69aa150579ea2f219b3e611db3580f422ff9b4
3
+ size 496038
data/public_events/2014/06/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95261701560c8c6a2800def3ff29905b3bc0d13900bfe377061b6ee81caaab92
3
+ size 14658
data/pull_requests/2014/06/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f05f8a4424ace1d207590fc7bf57176e93018aaab38bd8eab85b388a102f649
3
+ size 3280423
data/pushes/2014/06/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d554226519c5bf17eca011aa2fb521fead994dab58510f56f422f6fd5c6cc550
3
+ size 31302823
data/stars/2014/06/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24038b58477810120c8b3411fb97a83f087b86a5febac7cb7f26a206480fcc80
3
+ size 808397
data/wiki_pages/2014/06/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb8cf2b6a20f60e3be61b3d212c43b9e7cca785fdddcb916d23e8a5edd2839cb
3
+ size 234375
stats.csv CHANGED
@@ -1045,6 +1045,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1045
  2014-06-19,381455,1435,192403,19393,35171,18377,0,5650,35034,14278,44940,6740,1034,2929,3746,0,325,0,134349068,257.4,38286658,34.7,257.4,47.8
1046
  2014-06-20,298206,1179,151406,14256,26384,14434,0,4241,27174,11752,34570,6042,812,2566,3126,0,264,0,105692313,195.4,30715112,39.2,195.4,45.6
1047
  2014-06-21,202319,920,110092,8322,14263,7193,0,1412,18601,8503,25825,2932,550,1370,2172,0,164,0,63875580,129.4,19903230,32.2,129.4,44.1
1048
- 2014-06-22,252110,823,137275,10392,17856,8467,0,2075,24277,10552,31577,3331,661,1743,2872,0,209,0,79531119,153.0,24512284,36.7,153.0,0.0
 
1049
  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
1050
  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
 
1045
  2014-06-19,381455,1435,192403,19393,35171,18377,0,5650,35034,14278,44940,6740,1034,2929,3746,0,325,0,134349068,257.4,38286658,34.7,257.4,47.8
1046
  2014-06-20,298206,1179,151406,14256,26384,14434,0,4241,27174,11752,34570,6042,812,2566,3126,0,264,0,105692313,195.4,30715112,39.2,195.4,45.6
1047
  2014-06-21,202319,920,110092,8322,14263,7193,0,1412,18601,8503,25825,2932,550,1370,2172,0,164,0,63875580,129.4,19903230,32.2,129.4,44.1
1048
+ 2014-06-22,252110,823,137275,10392,17856,8467,0,2075,24277,10552,31577,3331,661,1743,2872,0,209,0,79531119,153.0,24512284,36.7,153.0,42.9
1049
+ 2014-06-23,387426,1687,192543,19268,36894,18352,0,5879,37893,14726,43778,7398,1070,3175,4386,0,377,0,138337873,253.3,39279284,44.0,253.3,0.0
1050
  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
1051
  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