tamnd commited on
Commit
7f9947c
·
verified ·
1 Parent(s): bd61881

Add 2012-08-13 — 133.0K 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-08-12** (422 days), totaling **33,473,007 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 7.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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
 
@@ -132,13 +132,13 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 █████████████████████░░░░░░░░░ 14.1M
135
- 2012 ██████████████████████████████ 19.4M
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 | 179 | 19,376,863 | 108,250 | 5.0 GB | 1.8 GB | 1h19m | 1h49m | 1h41m |
142
 
143
 
144
  ### Pushes per year
@@ -152,8 +152,8 @@ duckdb.sql("""
152
  ### Issues per year
153
 
154
  ```
155
- 2011 █████████████████████░░░░░░░░ 737.1K
156
- 2012 ██████████████████████████████ 999.6K
157
  ```
158
 
159
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 15,552,242 | 46.5% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,736,635 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 2,471,232 | 7.4% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,403,150 | 4.2% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 113,690 | 0.3% | Line-level PR comments |
561
- | `stars` | WatchEvent | 3,337,048 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 1,020,084 | 3.0% | Repository forks |
563
- | `creates` | CreateEvent | 5,678,673 | 17.0% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 295,631 | 0.9% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 381,685 | 1.1% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 639,797 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
- | `public_events` | PublicEvent | 29,870 | 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-08-13** (423 days), totaling **33,606,005 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 7.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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
 
 
132
 
133
  ```
134
  2011 █████████████████████░░░░░░░░░ 14.1M
135
+ 2012 ██████████████████████████████ 19.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 | 180 | 19,509,861 | 108,388 | 5.0 GB | 1.8 GB | 1h20m | 1h49m | 1h42m |
142
 
143
 
144
  ### Pushes per year
 
152
  ### Issues per year
153
 
154
  ```
155
+ 2011 █████████████████████░░░░░░░░ 737.1K
156
+ 2012 ██████████████████████████████ 1.0M
157
  ```
158
 
159
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 15,620,452 | 46.5% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,744,758 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 2,485,036 | 7.4% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,407,822 | 4.2% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 114,771 | 0.3% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 3,349,236 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 1,024,982 | 3.0% | Repository forks |
563
+ | `creates` | CreateEvent | 5,692,707 | 16.9% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 296,455 | 0.9% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 383,450 | 1.1% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 642,335 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 29,971 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d052a6af0c45667b865ae0b5119895085d082629b9e5fb35475572bebd8c406b
3
+ size 56652
data/creates/2012/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ae0e6125cdadff778ca998873443747aa853e73e263fa83944689ee7a81b2c0
3
+ size 493360
data/deletes/2012/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60b27aa69de65fccb4055e77054d1bde73d8809be285c19234a85c74297ab7ef
3
+ size 25961
data/forks/2012/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50ed9f022903189a271fe45721824a048401b1ce75ffda61208ed1145604ae05
3
+ size 119717
data/issue_comments/2012/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:341e28663940a854664f4ef10a20eb35c53201809f71889d4332dddddbd23dcf
3
+ size 273557
data/issues/2012/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:664812cd6c030b85b351bacccb79b3d299eabc24d60264963ae137526c8a9c01
3
+ size 175449
data/public_events/2012/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f82d7b73b84a890c6181bbaef2aac8dc0d70849e9e8aaec050aa3f275b23858e
3
+ size 5418
data/pull_requests/2012/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:edb455cb1f43fa47d010a347fdb68699dbb0017f634f546b325425d2255a769e
3
+ size 846790
data/pushes/2012/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88af62ab5ccd5ee75ce65511f1b1162b0eed327d6d328fb635c3c7b539fa3233
3
+ size 10504553
data/stars/2012/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1160e29ed30a374a0f37f6f78a00eb29d6b9de75d9a306f17fbe933346a2d1ca
3
+ size 280543
data/wiki_pages/2012/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d16a7b662fb58b25dc651d8b0e7226afc698e8daac7f0bfcc1c7803853cd82e4
3
+ size 179374
stats.csv CHANGED
@@ -420,4 +420,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
420
  2012-08-09,130001,739,68446,6512,10996,4449,0,1067,13419,5257,14118,816,0,1315,2772,0,95,0,39164550,23.6,13173076,36.0,23.6,31.4
421
  2012-08-10,116492,645,61954,5950,9833,3946,0,811,11635,4535,12860,707,0,1347,2138,0,131,0,35120011,21.1,11924862,24.7,21.1,25.8
422
  2012-08-11,79688,431,44295,3927,5588,1955,0,378,7334,3099,9746,514,0,687,1681,0,53,0,22228492,8.4,7874105,22.1,8.4,43.5
423
- 2012-08-12,88621,397,49055,4344,6544,2264,0,451,8866,3164,10585,460,0,725,1704,0,62,0,24782511,15.8,8596636,27.2,15.8,0.0
 
 
420
  2012-08-09,130001,739,68446,6512,10996,4449,0,1067,13419,5257,14118,816,0,1315,2772,0,95,0,39164550,23.6,13173076,36.0,23.6,31.4
421
  2012-08-10,116492,645,61954,5950,9833,3946,0,811,11635,4535,12860,707,0,1347,2138,0,131,0,35120011,21.1,11924862,24.7,21.1,25.8
422
  2012-08-11,79688,431,44295,3927,5588,1955,0,378,7334,3099,9746,514,0,687,1681,0,53,0,22228492,8.4,7874105,22.1,8.4,43.5
423
+ 2012-08-12,88621,397,49055,4344,6544,2264,0,451,8866,3164,10585,460,0,725,1704,0,62,0,24782511,15.8,8596636,27.2,15.8,52.3
424
+ 2012-08-13,132998,760,68210,8123,13804,4672,0,1081,12188,4898,14034,824,0,1765,2538,0,101,0,38990005,22.2,12961374,46.6,22.2,0.0