tamnd commited on
Commit
5f256b9
·
verified ·
1 Parent(s): 228318a

Add 2012-12-27 — 124.8K events, 11 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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-12-26** (529 days), totaling **47,827,692 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 11.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.5 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
 
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 33.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 | 286 | 33,731,548 | 117,942 | 9.1 GB | 3.2 GB | 2h12m | 3h12m | 2h46m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 16.2M
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 | 22,893,763 | 47.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,646,693 | 5.5% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,745,387 | 7.8% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,892,911 | 4.0% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 235,720 | 0.5% | Line-level PR comments |
566
- | `stars` | WatchEvent | 4,616,644 | 9.7% | Repository stars |
567
- | `forks` | ForkEvent | 1,556,188 | 3.3% | Repository forks |
568
- | `creates` | CreateEvent | 7,429,104 | 15.5% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 387,960 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 529,515 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 940,147 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
- | `public_events` | PublicEvent | 43,209 | 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-12-27** (530 days), totaling **47,952,491 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 11.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.5 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
 
 
137
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 33.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 | 287 | 33,856,347 | 117,966 | 9.1 GB | 3.2 GB | 2h13m | 3h13m | 2h47m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 16.3M
154
  ```
155
 
156
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 22,957,569 | 47.9% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,653,238 | 5.5% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,755,443 | 7.8% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,896,983 | 4.0% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 236,529 | 0.5% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 4,630,313 | 9.7% | Repository stars |
567
+ | `forks` | ForkEvent | 1,561,749 | 3.3% | Repository forks |
568
+ | `creates` | CreateEvent | 7,444,191 | 15.5% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 388,840 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 530,650 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 942,556 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 43,308 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8ff02fb5f0d26f62bf246d25e0e9aa91fc19d84e8799c6f4211af28ad359a4f
3
+ size 44059
data/creates/2012/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffebf1fa113cb3447b6c4cffea2d585617b9d54f65bff7d593186b985f547195
3
+ size 550872
data/deletes/2012/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aabb3c7ba926295a9d92b8ffb6b4c527ba49db053c9757c2994a7024eb72a165
3
+ size 31565
data/forks/2012/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdcb0216123ece4cf634c7ec338a1e7a2a3a8f3c343b4b04be524a61eeca8962
3
+ size 151075
data/issue_comments/2012/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7d4f59186903db3be7084435e19e7383ebfacc6ebeb1733a204db95ee20c113
3
+ size 240639
data/issues/2012/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2a50ef9d8be5e2f8d0556b3381a066fa52005adc5984cd2a872816ca8cddb06
3
+ size 169219
data/public_events/2012/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:314f28eef25bdee7c07b65b39ff7d1187e7322f497095a7095c68d2ba3ce1690
3
+ size 5563
data/pull_requests/2012/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b0a555c3cecf9f9d1607a8d052f232a779ede338e08f8abbd1fe32df7e1304c
3
+ size 787555
data/pushes/2012/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c5acc01653f66e1be86ba2304c8b55df57823ddec9f7c76fd4b06cdf4029d98
3
+ size 9902043
data/stars/2012/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28fdeb50fd1093a0de1370ea9d7a7779590e8af1a37c52bbbe3d5ebe98d8ba81
3
+ size 303225
data/wiki_pages/2012/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f7660c0d5b119529c18874d709c35dec08bcf7538655d2ee3f5b3cb3d9c4960
3
+ size 125595
stats.csv CHANGED
@@ -527,4 +527,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
527
  2012-12-23,96236,459,51488,4505,6631,2716,0,505,9834,4445,12085,635,0,908,1936,0,89,0,30297450,48.5,9461227,21.8,48.5,35.2
528
  2012-12-24,90839,471,45998,4934,7781,2555,0,400,9491,5260,11000,566,0,751,1564,0,68,0,27742984,46.9,8492031,23.8,46.9,26.7
529
  2012-12-25,80443,465,41833,4132,6597,2079,0,359,9031,3613,9701,427,0,588,1554,0,64,0,23990518,40.6,7638401,35.0,40.6,33.3
530
- 2012-12-26,110229,611,57145,5611,8439,3271,0,665,11489,4973,13778,749,0,1002,2413,0,83,0,34606925,58.3,10869479,34.9,58.3,0.0
 
 
527
  2012-12-23,96236,459,51488,4505,6631,2716,0,505,9834,4445,12085,635,0,908,1936,0,89,0,30297450,48.5,9461227,21.8,48.5,35.2
528
  2012-12-24,90839,471,45998,4934,7781,2555,0,400,9491,5260,11000,566,0,751,1564,0,68,0,27742984,46.9,8492031,23.8,46.9,26.7
529
  2012-12-25,80443,465,41833,4132,6597,2079,0,359,9031,3613,9701,427,0,588,1554,0,64,0,23990518,40.6,7638401,35.0,40.6,33.3
530
+ 2012-12-26,110229,611,57145,5611,8439,3271,0,665,11489,4973,13778,749,0,1002,2413,0,83,0,34606925,58.3,10869479,34.9,58.3,22.8
531
+ 2012-12-27,124799,671,63806,6545,10056,4072,0,809,13669,5561,15087,880,0,1135,2409,0,99,0,39957512,65.3,12311410,26.7,65.3,0.0