tamnd commited on
Commit
2d376ff
·
1 Parent(s): e5b11b7

Add 2011-05-22 — 32.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-05-21** (64 days), totaling **2,752,824 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 513.8 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 269.0 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
 
@@ -71,24 +71,24 @@ The underlying data comes from [GH Archive](https://www.gharchive.org/), created
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
- **2026-03-27** — 389,261 events in 2230 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 72
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 81
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 51
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 46
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 56
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 44
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 45
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 48
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 52
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 76
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 73
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 73
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 97
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 121
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 230
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 311
94
  17:00 █████████████░░░░░░░░░░░░░░░░░ 120.3K
@@ -136,7 +136,7 @@ duckdb.sql("""
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 64 | 2,752,824 | 43,012 | 513.8 MB | 269.0 MB | 9m07s | 12m28s | 24m22s |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 138.2K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 67.3K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 320.2K
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 | 1,473,175 | 53.5% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 138,183 | 5.0% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 112,889 | 4.1% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 67,285 | 2.4% | PR lifecycle events |
554
- | `stars` | WatchEvent | 320,250 | 11.6% | Repository stars |
555
- | `forks` | ForkEvent | 81,839 | 3.0% | Repository forks |
556
- | `creates` | CreateEvent | 390,874 | 14.2% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 38,072 | 1.4% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 39,630 | 1.4% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 69,408 | 2.5% | Wiki page edits |
560
- | `members` | MemberEvent | 18,673 | 0.7% | Collaborator additions |
561
- | `public_events` | PublicEvent | 2,546 | 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-05-22** (65 days), totaling **2,785,461 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 519.8 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 272.2 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
 
 
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
+ **2026-03-27** — 389,284 events in 2243 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 72
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 81
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 51
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 46
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 57
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 44
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 45
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 49
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 52
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 78
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 73
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 73
89
+ 12:00 █░░░░░░░░��░░░░░░░░░░░░░░░░░░░░ 99
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 122
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 150
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 230
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 311
94
  17:00 █████████████░░░░░░░░░░░░░░░░░ 120.3K
 
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 65 | 2,785,461 | 42,853 | 519.8 MB | 272.2 MB | 9m13s | 12m40s | 24m46s |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 139.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 68.1K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 324.2K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 1,490,991 | 53.5% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 139,745 | 5.0% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 114,860 | 4.1% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 68,108 | 2.4% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 324,218 | 11.6% | Repository stars |
555
+ | `forks` | ForkEvent | 82,710 | 3.0% | Repository forks |
556
+ | `creates` | CreateEvent | 394,733 | 14.2% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 38,484 | 1.4% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 40,055 | 1.4% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 70,147 | 2.5% | Wiki page edits |
560
+ | `members` | MemberEvent | 18,840 | 0.7% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 2,570 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/05/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e097df94438e2632ba073f3c102a6e249df1aa3f98f52c0f2ed04be8c8d8e09e
3
+ size 26710
data/creates/2011/05/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d34d78fb1ce9053675c7686e8cf2c506ffa5b42719695421c4cd8fc953bc55c
3
+ size 103990
data/deletes/2011/05/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0092b3d47454b0c1ff99f4b76796b3139a31dc3c9e9e99b421654e604410cc83
3
+ size 14349
data/forks/2011/05/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:785723b239b2fea866cf15ccd549ef53073c7441ac30caf90f21baa31ae148a8
3
+ size 40168
data/issues/2011/05/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a8b332828ded109a0b2d5b27213249ec6cf7ef801ced79ab77ad5dd3ca5d42b
3
+ size 57575
data/members/2011/05/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84d31ea6411cc8304f9da8086d004a394b948e7ac5f32563a3ed45a670bff1d7
3
+ size 10158
data/public_events/2011/05/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee6c27e593ea17f4b5b8729770f6f8cf34cad6fe92d033f4c0bfb615ee48aaf8
3
+ size 3780
data/pull_requests/2011/05/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bc92984a8533ab1f46eb7961aabbfbc97c4e8334cc0f55306cfb7197b156dfb
3
+ size 57546
data/pushes/2011/05/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:553a50c6ea71080906840fc0f1c1b6eb31279287b4e45c70a6f7b9b1773ab6ac
3
+ size 2917430
data/stars/2011/05/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7451d4bb4d2be4ae898c43e5dfba7043be9224562ada6b94fe579b5bad9b8f16
3
+ size 117431
data/wiki_pages/2011/05/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe8a4b793de67381855cc24c7d8aa85f540822c3923acb0804ae5d1c8507c617
3
+ size 57245
stats.csv CHANGED
@@ -62,4 +62,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
62
  2011-05-18,52309,0,27549,2443,3685,1500,0,0,6581,1529,6231,819,0,665,969,300,38,0,10442039,20.7,5166525,7.1,20.7,22.7
63
  2011-05-19,54736,0,27382,2559,3696,1507,0,0,6679,1649,8236,705,0,826,1150,295,52,0,10571843,20.5,5450408,7.2,20.5,18.9
64
  2011-05-20,43104,0,22640,2127,2838,1217,0,0,5203,1468,5189,442,0,607,1090,241,42,0,8673621,17.5,4442841,6.4,17.5,20.5
65
- 2011-05-21,31976,0,16676,1990,1929,805,0,0,4056,926,3948,250,0,377,759,221,39,0,6199870,12.8,3119186,6.9,12.8,0.0
 
 
62
  2011-05-18,52309,0,27549,2443,3685,1500,0,0,6581,1529,6231,819,0,665,969,300,38,0,10442039,20.7,5166525,7.1,20.7,22.7
63
  2011-05-19,54736,0,27382,2559,3696,1507,0,0,6679,1649,8236,705,0,826,1150,295,52,0,10571843,20.5,5450408,7.2,20.5,18.9
64
  2011-05-20,43104,0,22640,2127,2838,1217,0,0,5203,1468,5189,442,0,607,1090,241,42,0,8673621,17.5,4442841,6.4,17.5,20.5
65
+ 2011-05-21,31976,0,16676,1990,1929,805,0,0,4056,926,3948,250,0,377,759,221,39,0,6199870,12.8,3119186,6.9,12.8,23.4
66
+ 2011-05-22,32637,0,17816,1562,1971,823,0,0,3968,871,3859,412,0,425,739,167,24,0,6222648,12.2,3406382,6.4,12.3,0.0