tamnd commited on
Commit
363b13d
·
verified ·
1 Parent(s): 11b974a

Add 2014-12-06 — 336.7K 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,366 days), totaling **251,774,747 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 84.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.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
 
@@ -138,7 +138,7 @@ duckdb.sql("""
138
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ███████████████████░░░░░░░░░░░ 76.2M
141
- 2014 ██████████████████████████████ 114.5M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
@@ -147,7 +147,7 @@ duckdb.sql("""
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
- | 2014 | 322 | 114,538,634 | 355,710 | 46.5 GB | 10.7 GB | 3h50m | 19h55m | 4h43m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
@@ -159,7 +159,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
159
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ████████████████████░░░░░░░░░░ 38.9M
162
- 2014 ██████████████████████████████ 58.0M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 126,444,493 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 14,494,667 | 5.8% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 22,015,743 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 10,345,643 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,567,128 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 23,314,364 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,850,442 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 31,601,015 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,407,833 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 366,107 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,252,319 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,888,474 | 1.5% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 233,018 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
 
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,367 days), totaling **252,111,454 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 85.0 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
 
 
138
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ███████████████████░░░░░░░░░░░ 76.2M
141
+ 2014 ██████████████████████████████ 114.9M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
 
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
+ | 2014 | 323 | 114,875,341 | 355,651 | 46.7 GB | 10.8 GB | 3h51m | 19h57m | 4h44m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
 
159
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ████████████████████░░░░░░░░░░ 38.9M
162
+ 2014 ██████████████████████████████ 58.2M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 126,627,412 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 14,516,008 | 5.8% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 22,038,738 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 10,358,714 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,570,106 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 23,341,074 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,861,111 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 31,644,064 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,412,990 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 366,946 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,254,068 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,891,554 | 1.5% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 233,347 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/12/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2520436a4f04abd20ba27e1661ed8e0f8a3cb4d2e1f38ebab5326d670ea37910
3
+ size 66729
data/creates/2014/12/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc3d194ebf98f4ed6736ce4ac65ee076a60601360bd44450ec58a04e037a7f56
3
+ size 8533778
data/deletes/2014/12/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4590f21155424ce6582a616e216edef8b4269dfdeb1bac820f383947a6e8e839
3
+ size 135484
data/forks/2014/12/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5acb60de29b78e22c675688c50f223d7836b65d3f62c12b1984ba803ebcaa61
3
+ size 284603
data/issue_comments/2014/12/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0b83d382322b76a3e3ba21f2cad821624d758d485767d3ef3f238185e57b490
3
+ size 539653
data/issues/2014/12/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3a2adcc0aacb087e980145768f32babcea75474396bb7d00d079e9a5484c5a1
3
+ size 507566
data/public_events/2014/12/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a77d11b0bfd4a2e1988e31d8b866c3c1968c466bf082f11dbea3293e693a3f5
3
+ size 13410
data/pull_requests/2014/12/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35e3c127b70a3e2868edf07e9541c9a43f318af1478d2ab70bfd86dfe0eeba6c
3
+ size 2167948
data/pushes/2014/12/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f1f9fe72241459e4d6c4b876428c25206d94a1a8719c02d05ab93dac888f324
3
+ size 26454098
data/stars/2014/12/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30c6fa24352952802194ab8c3d39286374999b92ef11ca8f07af56b7e5dd5afe
3
+ size 1223375
data/wiki_pages/2014/12/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfc3186ff1cbedb2941cc0c433f48e7760b02b1f76758ca64e0f9af7eac52af7
3
+ size 217660
stats.csv CHANGED
@@ -1362,6 +1362,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1362
  2014-12-02,539600,2646,264820,45512,52196,25847,0,7498,43611,17008,60895,9227,1414,3826,4535,0,565,0,307663570,147.6,59264161,47.8,147.6,37.1
1363
  2014-12-03,530101,2611,264651,35063,56447,26081,0,8254,39545,16710,62206,8684,1283,3540,4511,0,515,0,303590460,150.6,58558150,54.1,150.6,32.4
1364
  2014-12-04,515006,2697,262563,29988,44963,24868,0,8176,43712,16145,58788,11019,1365,3267,6997,0,458,0,301229998,143.5,60094258,53.5,143.5,40.5
1365
- 2014-12-05,453663,2271,232644,26332,39633,21763,0,7682,37384,13822,54489,8686,1232,3043,4223,0,459,0,271317690,130.0,54402335,50.6,130.0,0.0
 
1366
  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
1367
  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
 
1362
  2014-12-02,539600,2646,264820,45512,52196,25847,0,7498,43611,17008,60895,9227,1414,3826,4535,0,565,0,307663570,147.6,59264161,47.8,147.6,37.1
1363
  2014-12-03,530101,2611,264651,35063,56447,26081,0,8254,39545,16710,62206,8684,1283,3540,4511,0,515,0,303590460,150.6,58558150,54.1,150.6,32.4
1364
  2014-12-04,515006,2697,262563,29988,44963,24868,0,8176,43712,16145,58788,11019,1365,3267,6997,0,458,0,301229998,143.5,60094258,53.5,143.5,40.5
1365
+ 2014-12-05,453663,2271,232644,26332,39633,21763,0,7682,37384,13822,54489,8686,1232,3043,4223,0,459,0,271317690,130.0,54402335,50.6,130.0,40.4
1366
+ 2014-12-06,336707,1821,182919,21341,22995,13071,0,2978,26710,10669,43049,5157,839,1749,3080,0,329,0,190896168,89.3,40144304,44.3,89.3,0.0
1367
  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
1368
  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