tamnd commited on
Commit
12bb611
·
1 Parent(s): 86a9231

Add 2011-04-18 — 48.6K 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-04-17** (42 days), totaling **1,725,550 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 326.8 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 173.1 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,39 +131,39 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 1.7M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 42 | 1,725,550 | 41,084 | 326.8 MB | 173.1 MB | 6m18s | 7m48s | 16m03s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 950.8K
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 77.4K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 41.8K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 203.5K
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 | 950,786 | 55.1% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 77,398 | 4.5% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 29,885 | 1.7% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 41,757 | 2.4% | PR lifecycle events |
554
- | `stars` | WatchEvent | 203,472 | 11.8% | Repository stars |
555
- | `forks` | ForkEvent | 52,092 | 3.0% | Repository forks |
556
- | `creates` | CreateEvent | 259,881 | 15.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 24,833 | 1.4% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 25,404 | 1.5% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 46,063 | 2.7% | Wiki page edits |
560
- | `members` | MemberEvent | 12,342 | 0.7% | Collaborator additions |
561
- | `public_events` | PublicEvent | 1,637 | 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-04-18** (43 days), totaling **1,774,129 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 335.7 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 177.6 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 ██████████████████████████████ 1.8M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 43 | 1,774,129 | 41,258 | 335.7 MB | 177.6 MB | 6m23s | 7m54s | 16m23s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 975.8K
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 80.2K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 42.9K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 209.3K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 975,825 | 55.0% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 80,199 | 4.5% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 33,646 | 1.9% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 42,917 | 2.4% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 209,287 | 11.8% | Repository stars |
555
+ | `forks` | ForkEvent | 53,414 | 3.0% | Repository forks |
556
+ | `creates` | CreateEvent | 265,794 | 15.0% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 25,296 | 1.4% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 26,128 | 1.5% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 47,283 | 2.7% | Wiki page edits |
560
+ | `members` | MemberEvent | 12,658 | 0.7% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 1,682 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/04/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07e349f3a3f690f5bc310000691bd900ce0a6a4162231663f5b47f055d8465ac
3
+ size 37247
data/creates/2011/04/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb31d23b7018b034ce9959d947b8c0f330955bcfe0c9e9f3bae0208071286b2c
3
+ size 150864
data/deletes/2011/04/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0ab7f39343ed66774ffbba18827ec061dc9e79f4a0120b44b3e11c1352e9c09
3
+ size 18889
data/forks/2011/04/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a68b2cedb298362bb30c6361d758681d25e803cc66ff634e299a71633bfaeb1
3
+ size 54760
data/issues/2011/04/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c6de690ef73a2bae768a127fd8b4a051b8840a777f6a3107c9577a36f026c0d
3
+ size 87350
data/members/2011/04/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d74170d648a4a0d0eba0d926407a9132eefa7f3ac138b50a4c3a163048b58f2f
3
+ size 15315
data/public_events/2011/04/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d6be94db8c5b7c47ca27e4d997661f57b31a56b6dd3be675716b775054c0417
3
+ size 4357
data/pull_requests/2011/04/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b3362558299f32d42ec8a1305488817aa0a7286c63ae7f444878e093632a36a
3
+ size 76013
data/pushes/2011/04/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9a204c569bb343f89972822f88c5f4952bb11ced71542d10e63c0ee688964a2
3
+ size 3913334
data/stars/2011/04/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd7f3448ad0c7996f1e06f874bae28d458cf854e30468e044e68ac14f99a9eee
3
+ size 171560
data/wiki_pages/2011/04/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:996f557a74c0cf43460107c4462db58343c7132ef20426ecd25448bb986aa33e
3
+ size 90594
stats.csv CHANGED
@@ -40,4 +40,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
40
  2011-04-14,51523,0,26863,2783,3705,1247,0,0,6059,1513,6180,558,0,877,1341,363,34,0,10191848,6.5,5239255,5.7,6.5,22.7
41
  2011-04-15,52603,0,25612,3744,5245,1175,0,0,5801,1402,6090,1365,0,781,1038,305,45,0,9663151,6.6,4825796,6.0,6.7,20.2
42
  2011-04-16,35717,0,18091,2096,3165,754,0,0,3905,928,4738,464,0,512,820,215,29,0,6615671,5.3,3674608,15.5,5.3,22.9
43
- 2011-04-17,35760,0,19319,1658,2262,767,0,0,3868,891,5129,361,0,482,809,189,25,0,6811065,3.8,3484097,9.4,3.8,0.0
 
 
40
  2011-04-14,51523,0,26863,2783,3705,1247,0,0,6059,1513,6180,558,0,877,1341,363,34,0,10191848,6.5,5239255,5.7,6.5,22.7
41
  2011-04-15,52603,0,25612,3744,5245,1175,0,0,5801,1402,6090,1365,0,781,1038,305,45,0,9663151,6.6,4825796,6.0,6.7,20.2
42
  2011-04-16,35717,0,18091,2096,3165,754,0,0,3905,928,4738,464,0,512,820,215,29,0,6615671,5.3,3674608,15.5,5.3,22.9
43
+ 2011-04-17,35760,0,19319,1658,2262,767,0,0,3868,891,5129,361,0,482,809,189,25,0,6811065,3.8,3484097,9.4,3.8,20.6
44
+ 2011-04-18,48579,0,25039,2801,3761,1160,0,0,5815,1322,5913,463,0,724,1220,316,45,0,9347197,6.5,4620283,5.0,6.5,0.0