tamnd commited on
Commit
338141f
·
verified ·
1 Parent(s): db13c40

Add 2014-05-04 — 283.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,003 days), totaling **162,009,316 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 46.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.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 ███████████████░░░░░░░░░░░░░░░ 38.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 | 123 | 38,661,170 | 314,318 | 11.7 GB | 3.6 GB | 1h21m | 6h49m | 1h56m |
147
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
148
 
149
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
154
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
155
  2013 ██████████████████████████████ 38.1M
156
- 2014 ███████████████░░░░░░░░░░░░░░░ 19.7M
157
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
158
  ```
159
 
@@ -571,20 +571,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
571
 
572
  | Table | GitHub Event | Events | % | Description |
573
  |-------|-------------|-------:|---:|-------------|
574
- | `pushes` | PushEvent | 81,243,067 | 50.1% | Git pushes with commits |
575
- | `issues` | IssuesEvent | 9,050,140 | 5.6% | Issue lifecycle events |
576
- | `issue_comments` | IssueCommentEvent | 14,092,716 | 8.7% | Comments on issues/PRs |
577
- | `pull_requests` | PullRequestEvent | 6,516,887 | 4.0% | PR lifecycle events |
578
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,426,706 | 0.9% | Line-level PR comments |
579
- | `stars` | WatchEvent | 15,237,868 | 9.4% | Repository stars |
580
- | `forks` | ForkEvent | 5,816,138 | 3.6% | Repository forks |
581
- | `creates` | CreateEvent | 20,530,715 | 12.7% | Branch/tag/repo creation |
582
- | `deletes` | DeleteEvent | 1,937,041 | 1.2% | Branch/tag deletion |
583
- | `releases` | ReleaseEvent | 166,225 | 0.1% | Release publications |
584
- | `commit_comments` | CommitCommentEvent | 1,531,530 | 0.9% | Comments on commits |
585
- | `wiki_pages` | GollumEvent | 2,778,541 | 1.7% | Wiki page edits |
586
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
587
- | `public_events` | PublicEvent | 149,940 | 0.1% | Repo made public |
588
 
589
  ## How it's built
590
 
 
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,004 days), totaling **162,292,525 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 46.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.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 ███████████████░░░░░░░░░░░░░░░ 38.9M
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 | 124 | 38,944,379 | 314,067 | 11.8 GB | 3.6 GB | 1h22m | 6h52m | 1h57m |
147
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
148
 
149
 
 
153
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
154
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
155
  2013 ██████████████████████████████ 38.1M
156
+ 2014 ███████████████░░░░░░░░░░░░░░░ 19.9M
157
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
158
  ```
159
 
 
571
 
572
  | Table | GitHub Event | Events | % | Description |
573
  |-------|-------------|-------:|---:|-------------|
574
+ | `pushes` | PushEvent | 81,397,151 | 50.2% | Git pushes with commits |
575
+ | `issues` | IssuesEvent | 9,063,460 | 5.6% | Issue lifecycle events |
576
+ | `issue_comments` | IssueCommentEvent | 14,114,658 | 8.7% | Comments on issues/PRs |
577
+ | `pull_requests` | PullRequestEvent | 6,527,396 | 4.0% | PR lifecycle events |
578
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,429,595 | 0.9% | Line-level PR comments |
579
+ | `stars` | WatchEvent | 15,265,647 | 9.4% | Repository stars |
580
+ | `forks` | ForkEvent | 5,826,051 | 3.6% | Repository forks |
581
+ | `creates` | CreateEvent | 20,561,881 | 12.7% | Branch/tag/repo creation |
582
+ | `deletes` | DeleteEvent | 1,941,062 | 1.2% | Branch/tag deletion |
583
+ | `releases` | ReleaseEvent | 167,037 | 0.1% | Release publications |
584
+ | `commit_comments` | CommitCommentEvent | 1,533,558 | 0.9% | Comments on commits |
585
+ | `wiki_pages` | GollumEvent | 2,781,861 | 1.7% | Wiki page edits |
586
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
587
+ | `public_events` | PublicEvent | 150,185 | 0.1% | Repo made public |
588
 
589
  ## How it's built
590
 
data/commit_comments/2014/05/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e8c52b9c2e56c37f9f1007a8de8b71e38be1e1843a510aa401e7b27d563761d
3
+ size 69701
data/creates/2014/05/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cf8ba751aa72de827262f5e528e1238e7be35824c94b0ee0705c863397bbae6
3
+ size 1108558
data/deletes/2014/05/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c7af4f67487a4ae44e2c27b78fd9e96b2756e703d83341621ab9ed3faaeea41
3
+ size 113854
data/forks/2014/05/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad9a3947b431a089b4d51582a4011f5d72a722a84ad5c46ea781daeb625e5fd0
3
+ size 333353
data/issue_comments/2014/05/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:709684737699a631df9e3867a494d2c501f23a89f61ea9a0b5861b74682c4fc1
3
+ size 493227
data/issues/2014/05/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:954479462858e22ec6b219218c5b03797c9a32f9511666cf1a0c9bb47351b02c
3
+ size 345169
data/public_events/2014/05/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13427b19be9cf0339f6da28ff0be8c6aaa98ebc363cc09088f450af4a5cb8b17
3
+ size 10389
data/pull_requests/2014/05/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d37bf548119a2264dc1c473e76efc8c0785de20e4bb3cacb27c14e71f92d7ca
3
+ size 1855324
data/pushes/2014/05/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9a3eaec9089f76cc3a20dc4f5ee3fe9e40685b3f5d599de14c51802133c955c
3
+ size 22578019
data/stars/2014/05/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15472411d1f226556e698a760bebd8d47d50e31870de4caf2421603f4ffe2a98
3
+ size 611072
data/wiki_pages/2014/05/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b7d6c6e9c509d60a6e9f4c62e51171318dcc092a5e9fcd78d284b7af507000b
3
+ size 263403
stats.csv CHANGED
@@ -999,6 +999,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
999
  2014-04-30,343948,1650,174663,20120,36267,15936,0,4836,27910,10520,37631,6080,996,2833,4019,0,487,0,113846508,241.1,34123995,34.1,241.1,44.1
1000
  2014-05-01,358826,1493,174968,24702,46057,15867,0,4390,29692,10622,36889,6386,843,2353,4253,0,311,0,112573772,238.7,34293262,38.0,238.7,42.2
1001
  2014-05-02,337364,1653,167760,22435,41286,14775,0,4087,26916,10113,35472,5308,848,2562,3855,0,294,0,108320223,231.5,33495744,31.1,231.5,37.9
1002
- 2014-05-03,242207,1320,132595,11413,16984,8934,0,2055,23562,8508,28084,3366,660,1764,2743,0,219,0,75122751,154.9,24146332,29.6,154.9,0.0
 
1003
  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
1004
  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
 
999
  2014-04-30,343948,1650,174663,20120,36267,15936,0,4836,27910,10520,37631,6080,996,2833,4019,0,487,0,113846508,241.1,34123995,34.1,241.1,44.1
1000
  2014-05-01,358826,1493,174968,24702,46057,15867,0,4390,29692,10622,36889,6386,843,2353,4253,0,311,0,112573772,238.7,34293262,38.0,238.7,42.2
1001
  2014-05-02,337364,1653,167760,22435,41286,14775,0,4087,26916,10113,35472,5308,848,2562,3855,0,294,0,108320223,231.5,33495744,31.1,231.5,37.9
1002
+ 2014-05-03,242207,1320,132595,11413,16984,8934,0,2055,23562,8508,28084,3366,660,1764,2743,0,219,0,75122751,154.9,24146332,29.6,154.9,38.9
1003
+ 2014-05-04,283209,1181,154084,13320,21942,10509,0,2889,27779,9913,31166,4021,812,2028,3320,0,245,0,88928411,187.5,27782069,43.1,187.5,0.0
1004
  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
1005
  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