tamnd commited on
Commit
1d998e8
·
verified ·
1 Parent(s): 1aa5973

Add 2012-08-25 to 2012-08-31 — 7 days, 803.6K events, 7 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,228 days), totaling **204,158,964 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 61.0 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
 
@@ -134,18 +134,18 @@ duckdb.sql("""
134
 
135
  ```
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
- 2012 ███████████████░░░░░░░░░░░░░░ 39.0M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 █████████████████████████████░ 72.1M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
- | 2012 | 339 | 39,025,542 | 115,119 | 10.4 GB | 1.4 GB | 1h41m | 2h51m | 1h24m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 220 | 72,105,678 | 327,753 | 24.3 GB | 6.6 GB | 2h25m | 13h49m | 3h22m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -155,9 +155,9 @@ Pushes are the most common event type, representing roughly half of all GitHub a
155
 
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
- 2012 ██████████████░░░░░░░░░░░░░░░ 18.8M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ████████████████████████████░░ 36.6M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -199,7 +199,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
199
 
200
  ```
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
- 2012 ███████████████░░░░░░░░░░░░░░ 1.7M
203
  2013 ███████████████████████████░░░ 2.9M
204
  2014 ██████████████████████████████ 3.2M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
@@ -221,7 +221,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
221
 
222
  ```
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
- 2012 ████████████████░░░░░░░░░░░░░░ 3.7M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 ████████████████████████████░░ 6.7M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 102,401,025 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,273,805 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 17,746,282 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,267,689 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,913,987 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,220,189 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,287,428 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 26,004,509 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,644,760 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 253,851 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,900,596 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,318,475 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 188,185 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
 
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,236 days), totaling **205,356,835 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 61.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
 
135
  ```
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
+ 2012 ███████████████░░░░░░░░░░░░░░ 39.8M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 █████████████████████████████░ 72.5M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
+ | 2012 | 346 | 39,829,133 | 115,113 | 10.6 GB | 1.4 GB | 1h43m | 2h54m | 1h24m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 221 | 72,499,958 | 328,054 | 24.5 GB | 6.6 GB | 2h26m | 13h56m | 3h23m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
155
 
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
+ 2012 ██████████████░░░░░░░░░░░░░░░ 19.2M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ████████████████████████████░░ 36.8M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
199
 
200
  ```
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
+ 2012 ███████████████░░░░░░░░░░░░░░ 1.7M
203
  2013 ███████████████████████████░░░ 2.9M
204
  2014 ██████████████████████████████ 3.2M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
 
221
 
222
  ```
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
+ 2012 ████████████████░░░░░░░░░░░░░░ 3.8M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 ████████████████████████████░░ 6.7M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 103,005,388 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,339,125 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 17,863,478 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,314,191 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,928,668 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 19,328,914 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,332,203 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 26,145,219 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,659,230 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 254,967 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,913,641 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,338,262 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 189,360 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/08/25.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ab81e571de8806de676109dd3aac220e8b8ff675133a094f22c546a878a54a30
3
- size 145858
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:376e44966bdf999a2a259f9a983e2a4fd49a2a0ca14519a1848aa5ad96a1bcfa
3
+ size 319998
data/stars/2012/08/26.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b03165e4b28b4174b32b2c41a011298278e05badf899d2d70795a8c8440750e3
3
- size 157197
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:582e5d4d8cdc27d6b5390f35805eaa7526b08e216455477d3aae8e252b169647
3
+ size 344076
data/stars/2012/08/27.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:05b1008f287ad1032a4dc6a4a277658682906d34cc96e50bb4792d6d90521890
3
- size 231323
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ead1c717754e0e628075c175ff9647d4b9879b9c38d625aaab6fdbce7f23ed7
3
+ size 501968
data/stars/2012/08/28.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:dbb320b0a36f2c417011926c82591f2314b5375ea04d4deb635d7b1e8025e5b8
3
- size 240647
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69eb819809b30784302a775d189294d58412bc9b3d6049d7fd015f4421245fdc
3
+ size 520658
data/stars/2012/08/29.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:70a0efd98ed475850a54b7125f589797355fd95851a9d8b250c2a666abd3909b
3
- size 229266
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc9903e4a7bb01c97394f32a868d2385054c0117f6fa3c4f19875614f6e03364
3
+ size 490247
data/stars/2012/08/30.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6383b9aa524ad5adda95e534ebbe745775237de968934bdf290ce22433348d8e
3
- size 229072
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7dedec9e0d7f253d3d64566b5bdc054d89f8943ae0f8c190f193329bb00aa88f
3
+ size 486896
data/stars/2012/08/31.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:389e0768fbf78137c8204489a70de73fa6163033c069da6381a6484db0363d76
3
- size 204205
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91751d4ff1c88a2e4a86719e1b7ee2d23c619cc77234b4808a1f3fe15209411c
3
+ size 439925
stats.csv CHANGED
@@ -562,7 +562,10 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
562
  2012-08-25,78615,457,42552,4019,6166,2067,0,415,7302,3145,9659,441,0,764,1535,0,93,0,23531685,17.1,319998,20.0,17.1,0.0
563
  2012-08-26,94909,507,47558,6416,12168,2383,0,476,7843,3301,10828,552,0,1083,1714,0,80,0,26344286,18.7,344076,5.2,18.7,0.0
564
  2012-08-27,127135,678,64873,6587,11852,4674,0,1129,11854,5025,15415,818,0,1621,2484,0,125,0,38955960,29.9,501968,9.2,29.9,0.0
 
565
  2012-08-29,128671,794,64683,7105,12167,4946,0,1354,11939,5172,15048,943,0,1844,2557,0,119,0,40080995,28.8,490247,10.2,28.8,0.0
 
 
566
  2012-09-04,135329,832,67557,7323,12947,5024,0,1270,13169,5213,15899,976,0,1646,3374,0,99,0,41644811,78.3,13625107,27.8,78.3,39.9
567
  2012-09-05,134956,750,67754,7973,13372,4710,0,1225,13498,5119,15271,873,0,1470,2815,0,126,0,41427000,76.8,13299017,32.5,76.8,34.8
568
  2012-09-06,131427,816,65475,6595,11960,4779,0,1329,12774,5181,16558,916,0,1475,3446,0,123,0,40242156,76.5,12683112,21.7,76.5,41.2
@@ -1228,6 +1231,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1228
  2014-08-17,283711,1022,149934,13812,23055,10458,0,2571,27395,9696,35696,4419,821,1815,2780,0,237,0,154592166,290.3,28121162,35.4,290.3,50.6
1229
  2014-08-18,414329,1638,203421,23165,42902,20382,0,7035,39432,13739,46949,7235,1101,3227,3749,0,354,0,240741995,464.9,41845792,48.1,464.9,44.0
1230
  2014-08-19,431557,1704,211334,24267,44738,21171,0,7179,42617,14546,48180,7089,1014,3177,4240,0,301,0,249969144,464.2,43202458,48.8,464.2,134.6
1231
- 2014-08-20,408477,1583,197591,28553,44439,19783,0,7068,35808,12832,44405,8123,1181,3036,3770,0,305,0,233883427,460.8,40536664,42.0,460.8,0.0
 
1232
  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
1233
  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
 
562
  2012-08-25,78615,457,42552,4019,6166,2067,0,415,7302,3145,9659,441,0,764,1535,0,93,0,23531685,17.1,319998,20.0,17.1,0.0
563
  2012-08-26,94909,507,47558,6416,12168,2383,0,476,7843,3301,10828,552,0,1083,1714,0,80,0,26344286,18.7,344076,5.2,18.7,0.0
564
  2012-08-27,127135,678,64873,6587,11852,4674,0,1129,11854,5025,15415,818,0,1621,2484,0,125,0,38955960,29.9,501968,9.2,29.9,0.0
565
+ 2012-08-28,133942,803,65682,7159,13885,4875,0,1375,12216,5285,16944,892,0,1732,2967,0,127,0,40609498,28.5,520658,25.5,28.5,0.0
566
  2012-08-29,128671,794,64683,7105,12167,4946,0,1354,11939,5172,15048,943,0,1844,2557,0,119,0,40080995,28.8,490247,10.2,28.8,0.0
567
+ 2012-08-30,128687,690,65766,6690,11896,4737,0,1546,11863,4852,15230,939,0,1586,2732,0,160,0,41379623,29.9,486896,11.5,29.9,0.0
568
+ 2012-08-31,111632,578,57173,6087,10174,4066,0,943,10544,4655,13006,706,0,1350,2204,0,146,0,35217630,23.3,439925,0.0,23.3,0.0
569
  2012-09-04,135329,832,67557,7323,12947,5024,0,1270,13169,5213,15899,976,0,1646,3374,0,99,0,41644811,78.3,13625107,27.8,78.3,39.9
570
  2012-09-05,134956,750,67754,7973,13372,4710,0,1225,13498,5119,15271,873,0,1470,2815,0,126,0,41427000,76.8,13299017,32.5,76.8,34.8
571
  2012-09-06,131427,816,65475,6595,11960,4779,0,1329,12774,5181,16558,916,0,1475,3446,0,123,0,40242156,76.5,12683112,21.7,76.5,41.2
 
1231
  2014-08-17,283711,1022,149934,13812,23055,10458,0,2571,27395,9696,35696,4419,821,1815,2780,0,237,0,154592166,290.3,28121162,35.4,290.3,50.6
1232
  2014-08-18,414329,1638,203421,23165,42902,20382,0,7035,39432,13739,46949,7235,1101,3227,3749,0,354,0,240741995,464.9,41845792,48.1,464.9,44.0
1233
  2014-08-19,431557,1704,211334,24267,44738,21171,0,7179,42617,14546,48180,7089,1014,3177,4240,0,301,0,249969144,464.2,43202458,48.8,464.2,134.6
1234
+ 2014-08-20,408477,1583,197591,28553,44439,19783,0,7068,35808,12832,44405,8123,1181,3036,3770,0,305,0,233883427,460.8,40536664,42.0,460.8,60.5
1235
+ 2014-08-21,394280,1499,196076,21257,38888,18754,0,7443,35164,13340,44580,9179,1116,3065,3594,0,325,0,233419185,443.6,39246587,44.6,443.6,0.0
1236
  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
1237
  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