tamnd commited on
Commit
143feac
·
verified ·
1 Parent(s): f88cf13

Add 2011-10-01 — 42.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 **2011-09-30** (172 days), totaling **9,122,013 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 1.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 813.8 MB 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 ██████████████████████████████ 9.1M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 172 | 9,122,013 | 53,034 | 1.6 GB | 813.8 MB | 41m12s | 31m18s | 1h17m |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 467.8K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 235.2K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 952.9K
167
  ```
168
 
169
 
@@ -547,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
- | `pushes` | PushEvent | 4,390,959 | 48.1% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 467,795 | 5.1% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 553,408 | 6.1% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 235,183 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 952,917 | 10.4% | Repository stars |
555
- | `forks` | ForkEvent | 259,626 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,144,242 | 12.5% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 107,119 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 118,383 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 192,588 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 51,823 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 8,364 | 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-10-01** (173 days), totaling **9,164,051 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 1.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 817.9 MB 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 ██████████████████████████████ 9.2M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 173 | 9,164,051 | 52,971 | 1.6 GB | 817.9 MB | 41m26s | 31m24s | 1h17m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 470.0K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 236.3K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 957.8K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 4,412,809 | 48.2% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 470,004 | 5.1% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 556,149 | 6.1% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 236,281 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 957,751 | 10.5% | Repository stars |
555
+ | `forks` | ForkEvent | 260,993 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,149,877 | 12.5% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 107,472 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 118,934 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 193,626 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 52,149 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 8,400 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/10/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a19001433ad1219ff005dd6c60a96a2225dbceb9672975cbb80655debc215278
3
+ size 29357
data/creates/2011/10/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb52fd41508ef1f8f373798e5306e529bd8315da97ed607ee3081da2f95abfd2
3
+ size 303868
data/deletes/2011/10/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2181ddf289c1a691a55e9440809ab5ee8c4a5056f4cf41ba956e100ab4bd2eb0
3
+ size 15400
data/forks/2011/10/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3c2c73d40c67b1184b7ec7a44ae049ca41f7b160fdd856a8e837cd3ea09bece
3
+ size 72412
data/issues/2011/10/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d973936182f13354d9f0e60f4b212748baf7abfe442f5b8d26e14e7e01d2d854
3
+ size 78326
data/members/2011/10/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01d88b77a909f0a7d2e6cb8f8e33f1604a3be3082f988b93f0a776b8e5a57b87
3
+ size 16236
data/public_events/2011/10/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72455fff3cffc91a184b1f9bb6c0e63c8bccf7ee0664c1b47ca37d13b333a0cd
3
+ size 4114
data/pull_requests/2011/10/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4870adf0c8e120b06df3c51d01ac5af8f8ea8b2589638372241fd73b3927601e
3
+ size 71960
data/pushes/2011/10/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e4de9de2233b2f18868ce5a0bc6ffda19bc898546e8e34bd9bbf0953eb4e35e
3
+ size 3497657
data/stars/2011/10/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47f8ab5a051c5bb98f63c1c5f3a8883ad3b2f84852c95a38c0c929994bdfdc90
3
+ size 143188
data/wiki_pages/2011/10/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca6352bef412cf190b3c0fbb5680d56445e398f5bd3d3df81db8e33247a9a6e8
3
+ size 55829
stats.csv CHANGED
@@ -170,4 +170,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
170
  2011-09-27,74861,0,36484,4167,5913,2393,0,0,7518,2253,9654,3461,0,1055,1392,490,81,0,12979043,5.0,7171563,18.6,5.0,26.5
171
  2011-09-28,73365,0,36191,5635,6370,2274,0,0,7628,2198,9272,722,0,972,1591,451,61,0,13053783,5.6,7362768,18.1,5.6,20.6
172
  2011-09-29,70323,0,35425,3835,5395,2216,0,0,7230,2156,10239,694,0,926,1718,425,64,0,12573321,5.7,7069321,20.7,5.7,20.7
173
- 2011-09-30,68805,0,32614,3435,4779,2028,0,0,6732,2164,13041,1419,0,801,1353,376,63,0,11811553,7.1,6690617,21.1,7.1,0.0
 
 
170
  2011-09-27,74861,0,36484,4167,5913,2393,0,0,7518,2253,9654,3461,0,1055,1392,490,81,0,12979043,5.0,7171563,18.6,5.0,26.5
171
  2011-09-28,73365,0,36191,5635,6370,2274,0,0,7628,2198,9272,722,0,972,1591,451,61,0,13053783,5.6,7362768,18.1,5.6,20.6
172
  2011-09-29,70323,0,35425,3835,5395,2216,0,0,7230,2156,10239,694,0,926,1718,425,64,0,12573321,5.7,7069321,20.7,5.7,20.7
173
+ 2011-09-30,68805,0,32614,3435,4779,2028,0,0,6732,2164,13041,1419,0,801,1353,376,63,0,11811553,7.1,6690617,21.1,7.1,22.8
174
+ 2011-10-01,42038,0,21850,2209,2741,1098,0,0,4834,1367,5635,353,0,551,1038,326,36,0,7364176,5.8,4288347,14.8,5.8,0.0