tamnd commited on
Commit
29bb9c0
·
verified ·
1 Parent(s): bbb9672

Add 2012-03-13 — 120.0K 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-12** (303 days), totaling **19,873,860 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.3 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.8M
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 | 60 | 5,777,716 | 96,295 | 1.6 GB | 693.2 MB | 30m13s | 27m56s | 33m32s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 ██████████░░░░░░░░░░░░░░░░░░░ 2.4M
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 260.2K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████████░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 608.7K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 ███████████░░░░░░░░░░░░░░░░░░░ 531.6K
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 | 9,103,629 | 45.8% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 997,325 | 5.0% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,326,042 | 6.7% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 979,530 | 4.9% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 15,596 | 0.1% | Line-level PR comments |
561
- | `stars` | WatchEvent | 1,949,632 | 9.8% | Repository stars |
562
- | `forks` | ForkEvent | 552,062 | 2.8% | Repository forks |
563
- | `creates` | CreateEvent | 3,345,017 | 16.8% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 218,322 | 1.1% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 232,691 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 393,322 | 2.0% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.5% | Collaborator additions |
568
- | `public_events` | PublicEvent | 17,614 | 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-13** (304 days), totaling **19,993,816 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.1 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.9M
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 | 61 | 5,897,672 | 96,683 | 1.6 GB | 703.0 MB | 30m48s | 28m17s | 34m00s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 ██████████░░░░░░░░░░░░░░░░░░░ 2.5M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 268.2K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████████░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 612.5K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ███████████░░░░░░░░░░░░░░░░░░░ 542.8K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 9,159,358 | 45.8% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,005,310 | 5.0% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,337,788 | 6.7% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 983,350 | 4.9% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 16,310 | 0.1% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 1,960,744 | 9.8% | Repository stars |
562
+ | `forks` | ForkEvent | 556,096 | 2.8% | Repository forks |
563
+ | `creates` | CreateEvent | 3,365,045 | 16.8% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 218,923 | 1.1% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 234,109 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 395,433 | 2.0% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.5% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 17,724 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/03/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:578eaf221c2dec2038996781a22a1e84235f80cc3a666072fc99f4ad8a9a0bbb
3
+ size 43244
data/creates/2012/03/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08a566c70c5ca74cc769d0bc5497798da331d477d494290b4f47353c291bf07a
3
+ size 421362
data/deletes/2012/03/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae5bf908ddfb516bce59bac39ea0d4cd2629518ec5e4ca186daef96ea8a52852
3
+ size 18929
data/forks/2012/03/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca39fb2e5713d3c6961c5ef63cdc7793342e2c82f48b2c50853655ec801b54fc
3
+ size 80420
data/issue_comments/2012/03/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58f9955a0cf74e3eae57f4707ce1987ab0f7b8fe61ccccb7b4b206e0251c1ee2
3
+ size 171062
data/issues/2012/03/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56105ac8febe0d3c0b12300a9fe1d14c9fedaded1d18f53acf70edbd522213e7
3
+ size 122968
data/public_events/2012/03/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b77b67e2bd93e74920b14e8eda947a63dcef047e1379a8599642872d660a46d9
3
+ size 4905
data/pull_requests/2012/03/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbea3eb4449f362dc85d75720d974fcaaddd5d64ae917b6471455ab61aa4e329
3
+ size 626110
data/pushes/2012/03/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db8d9d75d3de9162f6b4703e839cc01a1ee80c87970500eff72ab38ea6594cac
3
+ size 8492196
data/stars/2012/03/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e67ba5904bb074121e03634dd5fae6f2c7ec3b20c955b8198e665941f07421f
3
+ size 182388
data/wiki_pages/2012/03/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5bd13427d4e3b6d81843beac5a36952eb0f86ce7cbaa7e3ec4ccec8a71be7bf
3
+ size 146530
stats.csv CHANGED
@@ -301,4 +301,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,32.3
302
  2012-03-10,32077,3512,10595,920,1279,7782,0,107,2224,741,7317,223,0,252,515,107,15,0,10415548,8.6,3678773,12.4,8.6,23.4
303
  2012-03-11,82907,2486,41670,3736,5346,2210,0,275,7936,2218,16346,407,0,788,1582,0,83,0,21558165,14.1,7072032,22.1,14.1,34.2
304
- 2012-03-12,114006,3709,55342,5807,9308,3798,0,888,11595,3970,18749,605,0,1235,2068,0,116,0,31179652,17.5,10197119,42.2,17.5,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,32.3
302
  2012-03-10,32077,3512,10595,920,1279,7782,0,107,2224,741,7317,223,0,252,515,107,15,0,10415548,8.6,3678773,12.4,8.6,23.4
303
  2012-03-11,82907,2486,41670,3736,5346,2210,0,275,7936,2218,16346,407,0,788,1582,0,83,0,21558165,14.1,7072032,22.1,14.1,34.2
304
+ 2012-03-12,114006,3709,55342,5807,9308,3798,0,888,11595,3970,18749,605,0,1235,2068,0,116,0,31179652,17.5,10197119,42.2,17.5,27.8
305
+ 2012-03-13,119956,3873,55729,7985,11746,3820,0,714,11112,4034,20028,601,0,1418,2111,0,110,0,31517471,20.5,10310114,35.2,20.5,0.0