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

Add 2014-05-05 — 385.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,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
 
@@ -71,7 +71,7 @@ The underlying data comes from [GH Archive](https://www.gharchive.org/), created
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
- **2026-03-28** — 1,903,548 events in 3812 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
@@ -82,7 +82,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
82
  05:00 ██████████████████░░░░░░░░░░░░ 169.7K
83
  06:00 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 21.1K
84
  07:00 █████████████████░░░░░░░░░░░░░ 165.7K
85
- 08:00 ██████████████████████░░░░░░░░ 213.8K
86
  09:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
87
  10:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
88
  11:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -134,7 +134,7 @@ duckdb.sql("""
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
- 2014 ███████████████░░░░░░░░░░░░░░░ 38.9M
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 | 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,7 +153,7 @@ duckdb.sql("""
153
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
154
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
155
  2013 ██████████████████████████████ 38.1M
156
- 2014 ███████████████░░░░░░░░░░░░░░░ 19.9M
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,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
 
 
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,005 days), totaling **162,677,947 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.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.3 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
 
 
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
+ **2026-03-28** — 1,927,148 events in 3813 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
 
82
  05:00 ██████████████████░░░░░░░░░░░░ 169.7K
83
  06:00 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 21.1K
84
  07:00 █████████████████░░░░░░░░░░░░░ 165.7K
85
+ 08:00 █████████████████████████░░░░░ 237.4K
86
  09:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
87
  10:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
88
  11:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
+ 2014 ███████████████░░░░░░░░░░░░░░░ 39.3M
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 | 125 | 39,329,801 | 314,638 | 11.9 GB | 3.6 GB | 1h23m | 6h56m | 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 ███████████████░░░░░░░░░░░░░░░ 20.1M
157
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
158
  ```
159
 
 
571
 
572
  | Table | GitHub Event | Events | % | Description |
573
  |-------|-------------|-------:|---:|-------------|
574
+ | `pushes` | PushEvent | 81,596,521 | 50.2% | Git pushes with commits |
575
+ | `issues` | IssuesEvent | 9,082,772 | 5.6% | Issue lifecycle events |
576
+ | `issue_comments` | IssueCommentEvent | 14,150,979 | 8.7% | Comments on issues/PRs |
577
+ | `pull_requests` | PullRequestEvent | 6,544,648 | 4.0% | PR lifecycle events |
578
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,434,898 | 0.9% | Line-level PR comments |
579
+ | `stars` | WatchEvent | 15,301,260 | 9.4% | Repository stars |
580
+ | `forks` | ForkEvent | 5,840,222 | 3.6% | Repository forks |
581
+ | `creates` | CreateEvent | 20,602,673 | 12.7% | Branch/tag/repo creation |
582
+ | `deletes` | DeleteEvent | 1,947,491 | 1.2% | Branch/tag deletion |
583
+ | `releases` | ReleaseEvent | 167,957 | 0.1% | Release publications |
584
+ | `commit_comments` | CommitCommentEvent | 1,536,721 | 0.9% | Comments on commits |
585
+ | `wiki_pages` | GollumEvent | 2,786,246 | 1.7% | Wiki page edits |
586
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
587
+ | `public_events` | PublicEvent | 150,569 | 0.1% | Repo made public |
588
 
589
  ## How it's built
590
 
data/commit_comments/2014/05/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:225aab220fa43bbbe88f799cb550315344a31022c5ad4b048d4081b01a24ac60
3
+ size 105788
data/creates/2014/05/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07932993296869ef9f0e7ccbff5d8316eb55aa7f3b8d06756ea2702243d0c714
3
+ size 1507022
data/deletes/2014/05/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a5f0535e7b6c6a520ba56e1aca685c62906edc4a8fd143269f2c639a60f7b37
3
+ size 185755
data/forks/2014/05/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69f38030a3dce01a943add83d48783ed5394426e94c2e329a6445bf146d4798e
3
+ size 423210
data/issue_comments/2014/05/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e484cc7ee0c0f0f4f7019c2b0d0462ebfb55e31075455bc3e3cd64d6f06e0455
3
+ size 873027
data/issues/2014/05/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e421ec081e2e49b4bdf95e7c280c756f4d8560ae86abedcee323310b688d96d3
3
+ size 514922
data/public_events/2014/05/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5258b5f0f9c144c92012e310cc284c05bf9771b1499048cce39b2a975872d04
3
+ size 15149
data/pull_requests/2014/05/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91222b4b26fe0e2b97eee4b1e199f3f02b6a176c6ac89f33d985d460cd2d7ecb
3
+ size 2951397
data/pushes/2014/05/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a28671db67130d17949c47298696287ae00062ed1bd29bcd8e55e36e161fcd5
3
+ size 31027017
data/stars/2014/05/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc7e83300c176d1f9c7953535a63c4c4c0c49ad7eb4243a5f8984ad1184f090e
3
+ size 767039
data/wiki_pages/2014/05/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:583486e624cc5c04673b314e77da0fe680a8bd3da9a80dfe6ec9df901da127bf
3
+ size 242715
stats.csv CHANGED
@@ -1000,6 +1000,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
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,43.6
1004
+ 2014-05-05,385422,2007,199370,19312,36321,17252,0,5303,35613,14171,40792,6429,920,3163,4385,0,384,0,127987668,231.8,38613041,50.2,231.8,0.0
1005
  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
1006
  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