tamnd commited on
Commit
8c09aad
·
verified ·
1 Parent(s): 288a2cf

Add 2012-03-08 — 136.3K 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-03-07** (298 days), totaling **19,369,856 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 4.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.0 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
 
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ███████████░░░░░░░░░░░░░░░░░░░ 5.3M
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
- | 2012 | 55 | 5,273,712 | 95,885 | 1.4 GB | 640.5 MB | 27m37s | 25m22s | 31m06s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 █████████░░░░░░░░░░░░░░░░░░░░ 2.2M
149
  ```
150
 
151
 
@@ -153,15 +153,15 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 █████████░░░░░░░░░░░░░░░░░░░░ 239.4K
157
  ```
158
 
159
 
160
  ### Pull requests per year
161
 
162
  ```
163
- 2011 ████████████████████░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 539.2K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 486.5K
173
  ```
174
 
175
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 8,891,649 | 45.9% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 976,494 | 5.0% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,292,934 | 6.7% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 910,022 | 4.7% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 12,593 | 0.1% | Line-level PR comments |
561
- | `stars` | WatchEvent | 1,904,481 | 9.8% | Repository stars |
562
- | `forks` | ForkEvent | 537,802 | 2.8% | Repository forks |
563
- | `creates` | CreateEvent | 3,258,406 | 16.8% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 214,903 | 1.1% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 227,737 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 384,704 | 2.0% | Wiki page edits |
567
- | `members` | MemberEvent | 101,337 | 0.5% | Collaborator additions |
568
- | `public_events` | PublicEvent | 17,188 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
 
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-03-09** (300 days), totaling **19,644,870 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 4.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.0 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
 
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ███████████░░░░░░░░░░░░░░░░░░░ 5.5M
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
+ | 2012 | 57 | 5,548,726 | 97,346 | 1.5 GB | 673.2 MB | 28m57s | 27m16s | 31m31s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 █████████░░░░░░░░░░░░░░░░░░░░ 2.3M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 █████████░░░░░░░░░░░░░░░░░░░░ 249.8K
157
  ```
158
 
159
 
160
  ### Pull requests per year
161
 
162
  ```
163
+ 2011 ██████████████████░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 594.9K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 509.9K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 8,996,022 | 45.8% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 986,862 | 5.0% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,310,109 | 6.7% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 965,740 | 4.9% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 14,326 | 0.1% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 1,927,877 | 9.8% | Repository stars |
562
+ | `forks` | ForkEvent | 545,133 | 2.8% | Repository forks |
563
+ | `creates` | CreateEvent | 3,302,605 | 16.8% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 217,087 | 1.1% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 230,416 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 389,157 | 2.0% | Wiki page edits |
567
+ | `members` | MemberEvent | 102,530 | 0.5% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 17,400 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/03/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8744837dd5b48f17da9317010b6e5bb39a11953398a78790f30e2673c02fa0c7
3
+ size 184901
data/creates/2012/03/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07b6e2b382fab5cfe481735c9d83fdf386a73c7ebe65a85a608b99e6ae287b41
3
+ size 601692
data/deletes/2012/03/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87739ac710c7110a40f54918ff7391f29eab174cb7ae88255d7046883575c0e6
3
+ size 40304
data/forks/2012/03/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:832a35145c9fe4a4008f303f1db0f6ab990e290ff6788337fc7ae73f7e94f87d
3
+ size 329876
data/issues/2012/03/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:313455a28b08ef253bfcc68c27349c450f2e921b5a64482832d6156a9efdb5c3
3
+ size 1103769
data/members/2012/03/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90010e54ad1f30064bb8f27518b1ac8382d68e67c7e19c4262567cb58a2dd3a2
3
+ size 28891
data/public_events/2012/03/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a61d0441406612a2c124b92eebc8a684b2561e0b1a00336bd36cbc6da4e77c7
3
+ size 7810
data/pull_requests/2012/03/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69ea438d9f7cc5b10bf7098dd269d1b3da5d6bf1b7792bd79b2ae9a6ea9d0d5e
3
+ size 2990005
data/pushes/2012/03/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:030ecd030879f722088835235040ee618d30c03c3d22d31c1275804f453d401d
3
+ size 11386840
data/stars/2012/03/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1af3f8529aba155cb57de21eacdf233969e059fde5d7e350317f7a246d195c08
3
+ size 402245
data/wiki_pages/2012/03/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bb1f561e42938dbd8e35f5be473b228760c4ccb8df871b9bfce2a19866f12db
3
+ size 186859
stats.csv CHANGED
@@ -296,4 +296,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
296
  2012-03-04,79954,0,30820,2916,4154,13206,0,326,6327,1774,16563,1187,0,817,1504,312,48,0,23218953,16.7,9828549,29.7,16.7,36.1
297
  2012-03-05,117772,0,46899,5245,8053,22635,0,719,10419,2868,15867,1102,0,1388,1926,568,83,0,39269934,27.2,15781870,24.3,27.2,28.4
298
  2012-03-06,147820,0,56208,5812,9792,30079,0,750,12719,3797,22905,1076,0,1454,2418,703,107,0,48115290,49.6,18967539,61.8,49.6,25.3
299
- 2012-03-07,141627,0,54265,6227,9068,25996,0,698,12993,3767,22726,1011,0,1480,2574,695,127,0,45514169,49.2,17775768,52.4,49.2,0.0
 
 
 
296
  2012-03-04,79954,0,30820,2916,4154,13206,0,326,6327,1774,16563,1187,0,817,1504,312,48,0,23218953,16.7,9828549,29.7,16.7,36.1
297
  2012-03-05,117772,0,46899,5245,8053,22635,0,719,10419,2868,15867,1102,0,1388,1926,568,83,0,39269934,27.2,15781870,24.3,27.2,28.4
298
  2012-03-06,147820,0,56208,5812,9792,30079,0,750,12719,3797,22905,1076,0,1454,2418,703,107,0,48115290,49.6,18967539,61.8,49.6,25.3
299
+ 2012-03-07,141627,0,54265,6227,9068,25996,0,698,12993,3767,22726,1011,0,1480,2574,695,127,0,45514169,49.2,17775768,52.4,49.2,25.2
300
+ 2012-03-08,136260,0,53048,5293,8907,24478,0,906,12322,3764,22031,1121,0,1290,2355,622,123,0,43579009,54.8,17263192,51.1,54.8,0.0
301
+ 2012-03-09,138754,0,51325,5075,8268,31240,0,827,11074,3567,22168,1063,0,1389,2098,571,89,0,45290060,59.0,17071131,28.8,59.0,0.0