tamnd commited on
Commit
1ae5313
·
verified ·
1 Parent(s): a51fe33

Add 2014-07-03 — 384.1K 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,059 days), totaling **181,590,070 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 52.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.0 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 ███████████████████████░░░░░░░ 58.2M
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 | 179 | 58,241,924 | 325,373 | 17.8 GB | 5.3 GB | 1h57m | 10h12m | 2h40m |
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 ███████████████████████░░░░░░░ 29.7M
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 ███████████████████████░░░��░░░ 5.3M
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 | 91,187,262 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 10,083,864 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 15,889,608 | 8.8% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 7,389,561 | 4.1% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,694,717 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 17,011,016 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,536,983 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 22,785,547 | 12.5% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,319,943 | 1.3% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 215,953 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,691,292 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,996,214 | 1.6% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 168,183 | 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,061 days), totaling **182,188,963 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 52.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 17.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 ███████████████████████░░░░░░░ 58.8M
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 | 181 | 58,840,817 | 325,087 | 18.0 GB | 5.4 GB | 1h58m | 10h19m | 2h41m |
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 ███████████████████████░░░░░░░ 30.0M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
218
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
219
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
220
  2013 ██████████████████████████████ 7.0M
221
+ 2014 ███████████████████████░░░░░░ 5.4M
222
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
223
  ```
224
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 91,487,465 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 10,116,317 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,942,693 | 8.8% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 7,415,891 | 4.1% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,702,942 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 17,074,383 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,558,590 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 22,853,969 | 12.5% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,330,063 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 217,524 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,695,651 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 3,002,540 | 1.6% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 168,690 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:812a6e4b29f2bcaf8e97100b9608c38283bd20b7daa4052afde1cf41db2d4029
3
+ size 103618
data/creates/2014/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aab8992aaeb8b874da0a54cfd746d751dbf0d32d4637bb8dec2bb0769c2eb426
3
+ size 1499403
data/deletes/2014/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5e4d36bab32d073336d37d86647ff6de90d600d1fb414924d024e4edc5437b3
3
+ size 194348
data/forks/2014/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:315a3f1c28c1a4bf55e983b8ca8a1beaac718d1b696806a0922d903a9e970347
3
+ size 372761
data/issue_comments/2014/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70307436464ab8c550b0e23ae92394697ddb64aba506ea292a8052404897932a
3
+ size 863943
data/issues/2014/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65bfe50dedcaf806c5296dd1d3239ff931a0ebfb88fa6cb985799334bf4ce6fc
3
+ size 554468
data/public_events/2014/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6786c14ef70f99c5b3dc4321a5bba17cdb038aeffe062d00a4d1bc027f3c801
3
+ size 12515
data/pull_requests/2014/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b81618a01a288c658e22a599a8cec936df29976764028cf1f07a6c023ed4cfe7
3
+ size 3162609
data/pushes/2014/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f03c42c64bfe0d56054704b551eccd82508e53f349ecbbbb3e44981e0c2882d
3
+ size 29715411
data/stars/2014/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:155b9d5163fc386a19fba97b8d8aaf6b8d743da556190e8b5fd6d97e304c5a42
3
+ size 817106
data/wiki_pages/2014/07/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e131c604736791a1b09013675c05b7f203dc490b32de1f54f6324a567efb3832
3
+ size 303492
stats.csv CHANGED
@@ -1055,6 +1055,8 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1055
  2014-06-29,279603,849,137177,19950,34465,9578,0,2131,26270,9173,30338,3918,796,1720,2961,0,277,0,83832865,186.4,25128734,42.8,186.4,47.6
1056
  2014-06-30,381299,1643,189093,19915,37372,19129,0,6093,35202,13315,43136,7300,986,3316,4415,0,384,0,137976943,286.1,38761789,50.6,286.1,35.5
1057
  2014-07-01,379868,1648,189541,19063,36490,18467,0,5505,35248,13747,44462,7005,1198,3031,4116,0,347,0,136549099,289.6,38646203,39.2,289.6,47.1
1058
- 2014-07-02,396669,1612,194481,21293,39623,19122,0,5656,38848,14545,45075,6766,1123,3802,4378,0,345,0,139724749,290.0,38909083,57.6,290.1,0.0
 
 
1059
  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
1060
  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
 
1055
  2014-06-29,279603,849,137177,19950,34465,9578,0,2131,26270,9173,30338,3918,796,1720,2961,0,277,0,83832865,186.4,25128734,42.8,186.4,47.6
1056
  2014-06-30,381299,1643,189093,19915,37372,19129,0,6093,35202,13315,43136,7300,986,3316,4415,0,384,0,137976943,286.1,38761789,50.6,286.1,35.5
1057
  2014-07-01,379868,1648,189541,19063,36490,18467,0,5505,35248,13747,44462,7005,1198,3031,4116,0,347,0,136549099,289.6,38646203,39.2,289.6,47.1
1058
+ 2014-07-02,396669,1612,194481,21293,39623,19122,0,5656,38848,14545,45075,6766,1123,3802,4378,0,345,0,139724749,290.0,38909083,57.6,290.1,42.8
1059
+ 2014-07-03,384108,1529,187822,22003,37389,18211,0,6606,39055,13800,42373,6737,1019,3033,4195,0,336,0,136822670,285.6,37599674,54.1,285.7,0.0
1060
+ 2014-07-05,214785,789,112381,10450,15696,8119,0,1619,24312,7807,26049,3383,552,1326,2131,0,171,0,67845437,146.4,20385555,27.2,146.4,0.0
1061
  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
1062
  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