tamnd commited on
Commit
31cfff0
·
verified ·
1 Parent(s): 7607c53

Add 2011-12-26 — 43.2K 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 **2011-12-25** (237 days), totaling **13,734,613 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 2.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.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
 
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 13.7M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 237 | 13,734,613 | 57,951 | 2.6 GB | 1.3 GB | 1h04m | 49m33s | 1h51m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 717.6K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 362.2K
160
  ```
161
 
162
 
@@ -547,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
- | `pushes` | PushEvent | 6,517,481 | 47.5% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 717,607 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 905,481 | 6.6% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 362,153 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,379,978 | 10.0% | Repository stars |
555
- | `forks` | ForkEvent | 387,302 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 2,124,573 | 15.5% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 162,659 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 169,140 | 1.2% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 279,401 | 2.0% | Wiki page edits |
560
- | `members` | MemberEvent | 76,850 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 12,382 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
 
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 **2011-12-26** (238 days), totaling **13,777,774 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 2.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.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
 
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 13.8M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 238 | 13,777,774 | 57,889 | 2.7 GB | 1.3 GB | 1h04m | 49m40s | 1h52m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 719.5K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 363.2K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 6,537,316 | 47.4% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 719,484 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 908,108 | 6.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 363,223 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,384,981 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 388,561 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 2,134,285 | 15.5% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 163,030 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 169,538 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 280,237 | 2.0% | Wiki page edits |
560
+ | `members` | MemberEvent | 76,997 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 12,408 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fa393c41109200fce6e033ffd4ec676cd7bded258a0b376951f1292c18d9915
3
+ size 75431
data/creates/2011/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26c0746279539eb3557bb04f64cdd07ed90d6e7cacb3501bb600c3ae99b3ce33
3
+ size 237440
data/deletes/2011/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa197a64c71f1b40014100fd0a2e63990424a4b6782b57f938213f51cf5a254d
3
+ size 14574
data/forks/2011/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b155ec7859a59b0cfac64b9a0c5787cd3179cc54a6bd644da1362eca201975de
3
+ size 123002
data/issues/2011/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6b31139e6e87b983735154a61f3585f058d849bd21d850152adef7be3047a59
3
+ size 471579
data/members/2011/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2c637f4f57a8c3385a669ba809b42ce5d3aeb1349f8a69bd37914e607ec6e10
3
+ size 10189
data/public_events/2011/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:214f90cdab1777f2adf2ec2e4bbcab12cab0f3de89900bede2a52701abbe530a
3
+ size 3749
data/pull_requests/2011/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:584723ad1ff4e15ca833660d1d115f402df7bfd080aca2d807cc0aab08c053f1
3
+ size 205078
data/pushes/2011/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0de2f2360843a8dbe0ef4e5d91e489bcaba60ad578e17df8813f3626d9e5eb8e
3
+ size 4248300
data/stars/2011/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:762e3902976620ec0cb5008ef6db1c398d6f4ddfafb8e6e66eeb89660c688a23
3
+ size 148868
data/wiki_pages/2011/12/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3eb053734d57b17de5c8c4c1cd397aa0fad1a3685a57efdb7a86d07d1c2df718
3
+ size 69481
stats.csv CHANGED
@@ -235,4 +235,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
235
  2011-12-22,79137,0,33179,5712,7410,2254,0,0,8273,2105,17047,795,0,754,1275,273,60,0,20210094,15.8,9661982,21.3,15.8,74.7
236
  2011-12-23,65938,0,29274,3020,4152,1836,0,0,7068,1777,15976,775,0,668,1109,225,58,0,16527427,11.2,8339256,24.2,11.2,27.8
237
  2011-12-24,51946,0,17826,1690,2324,942,0,0,4040,1080,22290,455,0,421,740,113,25,0,9635826,7.5,5053827,22.4,7.5,21.9
238
- 2011-12-25,38010,0,15500,1387,1588,738,0,0,3586,944,12968,254,0,404,498,114,29,0,7795657,5.8,4314914,19.4,5.8,0.0
 
 
235
  2011-12-22,79137,0,33179,5712,7410,2254,0,0,8273,2105,17047,795,0,754,1275,273,60,0,20210094,15.8,9661982,21.3,15.8,74.7
236
  2011-12-23,65938,0,29274,3020,4152,1836,0,0,7068,1777,15976,775,0,668,1109,225,58,0,16527427,11.2,8339256,24.2,11.2,27.8
237
  2011-12-24,51946,0,17826,1690,2324,942,0,0,4040,1080,22290,455,0,421,740,113,25,0,9635826,7.5,5053827,22.4,7.5,21.9
238
+ 2011-12-25,38010,0,15500,1387,1588,738,0,0,3586,944,12968,254,0,404,498,114,29,0,7795657,5.8,4314914,19.4,5.8,25.3
239
+ 2011-12-26,43161,0,19835,1877,2627,1070,0,0,5003,1259,9712,371,0,398,836,147,26,0,10618201,6.8,5607691,17.2,6.8,0.0