tamnd commited on
Commit
4500909
·
verified ·
1 Parent(s): ce07512

Add 2012-10-22 — 156.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 **2012-10-21** (480 days), totaling **40,840,687 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 9.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.9 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
 
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ███████████████░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 26.7M
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
146
- | 2012 | 237 | 26,744,543 | 112,846 | 7.0 GB | 2.5 GB | 1h47m | 2h30m | 2h15m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ███████████████░░░░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 12.6M
154
  ```
155
 
156
 
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 19,285,508 | 47.2% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,189,503 | 5.4% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,162,285 | 7.7% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,653,776 | 4.0% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 175,763 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,995,771 | 9.8% | Repository stars |
567
- | `forks` | ForkEvent | 1,288,107 | 3.2% | Repository forks |
568
- | `creates` | CreateEvent | 6,602,601 | 16.2% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 341,442 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 458,451 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 789,163 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 36,746 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
 
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 **2012-10-22** (481 days), totaling **40,997,099 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 9.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.9 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
 
 
137
 
138
  ```
139
  2011 ███████████████░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 26.9M
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
146
+ | 2012 | 238 | 26,900,955 | 113,029 | 7.1 GB | 2.5 GB | 1h48m | 2h31m | 2h16m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ███████████████░░░░░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 12.7M
154
  ```
155
 
156
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 19,364,978 | 47.2% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,198,241 | 5.4% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,176,836 | 7.7% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,659,490 | 4.0% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 177,433 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 4,010,216 | 9.8% | Repository stars |
567
+ | `forks` | ForkEvent | 1,293,928 | 3.2% | Repository forks |
568
+ | `creates` | CreateEvent | 6,621,262 | 16.2% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 342,390 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 460,025 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 792,672 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 36,905 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c5b2404e1dc713ab8d10d79e6a13d027436b93ff14aa9ad6ed0d87b805ac996
3
+ size 63684
data/creates/2012/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d1a54d3a0aa4b832ff8a53ead2bfc4cee154f5b5e1951fb1e0ac7920f684892
3
+ size 743812
data/deletes/2012/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:394ff791473141bf5f82138cc508900dd70d6e20d28b41b5e8a5a2ef91d48d31
3
+ size 33158
data/forks/2012/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e82626519db17f6a20c8ddc2109b4d7a3a5528be5912f53f3896b7b79a4b6a41
3
+ size 179631
data/issue_comments/2012/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d01a51e25f99d89c4ebf47ba1bf86e0f1f1f6fa27d9e16ea2111572d8757f887
3
+ size 334076
data/issues/2012/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90aaf32b9c3a4acf27ad4f8c905465350c247c8ff42655f4ff08b5536e9fd69d
3
+ size 229089
data/public_events/2012/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6dcd3078554e094fe21714cdd8fd996ddcc4fddee9d95ce47dabb72ee711f70e
3
+ size 7686
data/pull_requests/2012/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25c44fbd7bf845d3c026a0c183b037ca1170ad19942a827ddfb710f887a9e1c0
3
+ size 1038117
data/pushes/2012/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68bd6fd17b83d4770059bb5a0dfa4a9507fc6c307a68e35f01a8f404c175af62
3
+ size 12833829
data/stars/2012/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61db18b932a8259bf058676db392cfb9096435b3e7353be2a566b477a04b0d7e
3
+ size 380074
data/wiki_pages/2012/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42a6ff4c8fd9f9788217f02e7d14304aabe01018bb0e03d4c9e073eaf959277d
3
+ size 260887
stats.csv CHANGED
@@ -478,4 +478,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
478
  2012-10-18,149085,1239,76363,8383,13760,5213,0,1182,12937,5773,18321,1033,0,1448,3289,0,144,0,44938317,36.9,15349606,53.0,36.9,30.8
479
  2012-10-19,144613,1117,68657,10206,18034,4679,0,1322,11682,5043,18629,869,0,1237,3040,0,98,0,40642537,32.4,13722009,22.7,32.5,25.3
480
  2012-10-20,96980,796,52389,5654,6399,2600,0,513,8517,3765,12822,486,0,806,2145,0,88,0,28177714,31.3,9837909,22.7,31.3,34.9
481
- 2012-10-21,113123,819,60130,7726,7395,3066,0,625,10132,3954,14929,616,0,1018,2601,0,112,0,32663853,33.2,11041231,30.0,33.2,0.0
 
 
478
  2012-10-18,149085,1239,76363,8383,13760,5213,0,1182,12937,5773,18321,1033,0,1448,3289,0,144,0,44938317,36.9,15349606,53.0,36.9,30.8
479
  2012-10-19,144613,1117,68657,10206,18034,4679,0,1322,11682,5043,18629,869,0,1237,3040,0,98,0,40642537,32.4,13722009,22.7,32.5,25.3
480
  2012-10-20,96980,796,52389,5654,6399,2600,0,513,8517,3765,12822,486,0,806,2145,0,88,0,28177714,31.3,9837909,22.7,31.3,34.9
481
+ 2012-10-21,113123,819,60130,7726,7395,3066,0,625,10132,3954,14929,616,0,1018,2601,0,112,0,32663853,33.2,11041231,30.0,33.2,26.3
482
+ 2012-10-22,156412,1152,79470,8738,14551,5714,0,1670,14445,5821,18661,948,0,1574,3509,0,159,0,47900706,28.1,16104043,41.7,28.1,0.0