tamnd commited on
Commit
312c33a
·
1 Parent(s): e8acea2

Add 2011-04-21 — 49.5K 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-20** (45 days), totaling **1,877,797 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 354.7 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 187.4 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,26 +71,26 @@ 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** — 146,196 events in 881 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 25
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 29
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 25
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 21
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 27
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 22
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 23
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 30
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 21
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 32
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 34
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 39
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 33
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 51
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 70
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 122
94
  17:00 ██████████████████████████████ 119.9K
95
  18:00 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 25.5K
96
  19:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -136,34 +136,34 @@ duckdb.sql("""
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 45 | 1,877,797 | 41,728 | 354.7 MB | 187.4 MB | 6m36s | 8m11s | 17m08s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 1.0M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 86.0K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 45.2K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 221.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,028,351 | 54.8% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 85,989 | 4.6% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 41,399 | 2.2% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 45,219 | 2.4% | PR lifecycle events |
554
- | `stars` | WatchEvent | 221,217 | 11.8% | Repository stars |
555
- | `forks` | ForkEvent | 56,254 | 3.0% | Repository forks |
556
- | `creates` | CreateEvent | 280,174 | 14.9% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 26,352 | 1.4% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 27,494 | 1.5% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 50,151 | 2.7% | Wiki page edits |
560
- | `members` | MemberEvent | 13,401 | 0.7% | Collaborator additions |
561
- | `public_events` | PublicEvent | 1,796 | 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-21** (46 days), totaling **1,927,317 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 363.9 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 192.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
 
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** — 146,210 events in 893 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 25
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 29
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 25
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 22
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 27
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 22
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 23
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 31
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 21
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 33
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 35
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 40
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 33
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 51
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 72
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 125
94
  17:00 ██████████████████████████████ 119.9K
95
  18:00 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 25.5K
96
  19:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 46 | 1,927,317 | 41,898 | 363.9 MB | 192.0 MB | 6m41s | 8m18s | 17m31s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 1.1M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 88.5K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 46.4K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 227.4K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 1,053,935 | 54.7% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 88,475 | 4.6% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 44,673 | 2.3% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 46,372 | 2.4% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 227,431 | 11.8% | Repository stars |
555
+ | `forks` | ForkEvent | 57,720 | 3.0% | Repository forks |
556
+ | `creates` | CreateEvent | 286,393 | 14.9% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 27,230 | 1.4% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 28,243 | 1.5% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 51,323 | 2.7% | Wiki page edits |
560
+ | `members` | MemberEvent | 13,688 | 0.7% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 1,834 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/04/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e8293a2b02fc113b16fb411d2e2d12ea1f51109b0d8048b51c9261e0e1db8c4
3
+ size 37429
data/creates/2011/04/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3908ea0d5ede2079162ea2d73e86659780ec4f1517bccfa6568fc115c482b83
3
+ size 157357
data/deletes/2011/04/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e8afda56a7ea1d23cde24a8153406a3123a8696541ebbd902cd7ca01bc2f0d5
3
+ size 25881
data/forks/2011/04/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d39c9724330cf748981dd79f40fc1e224c67d22d42a6f52486ea433f97cdea0
3
+ size 58289
data/issues/2011/04/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03d7621e020f885bd9704c4e217eaa872b51a2bb1ebcc7cf7ded5df2e3dd9260
3
+ size 85889
data/members/2011/04/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad606a2847a7e1e1d593016dc7ebda50a60f646f1a9e45e06d521e5a4d3642c0
3
+ size 14575
data/public_events/2011/04/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84be0d44f43ed42f8ce3b0df02849f9392fcbc2f767ae9657af4113b8b0d23bd
3
+ size 3989
data/pull_requests/2011/04/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c565b19e62f4fcbd505192c4d1204b2ce22f3d630d95f6ca8bce8d3c83e31c1e
3
+ size 80120
data/pushes/2011/04/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80ccbe3cdcb43370913a563da54d9c2cd3041ad5745f7049338985febaa835ec
3
+ size 4163214
data/stars/2011/04/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0532d64b40c1b653e6cca05a13265cd57ea109c52c60946fa21e82b4b30b234
3
+ size 179034
data/wiki_pages/2011/04/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da0300f82740d8c8f977ed1438bcbe11c0433ba7081c670b95f2387cb126b708
3
+ size 92667
stats.csv CHANGED
@@ -43,4 +43,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,20.5
45
  2011-04-19,53531,0,27114,2577,3496,1204,0,0,6151,1428,8293,586,0,711,1566,336,69,0,10266549,9.7,5125619,6.2,9.7,24.2
46
- 2011-04-20,50137,0,25412,3213,4257,1098,0,0,5779,1412,6087,470,0,655,1302,407,45,0,9656219,7.0,5166490,6.6,7.0,0.0
 
 
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,20.5
45
  2011-04-19,53531,0,27114,2577,3496,1204,0,0,6151,1428,8293,586,0,711,1566,336,69,0,10266549,9.7,5125619,6.2,9.7,24.2
46
+ 2011-04-20,50137,0,25412,3213,4257,1098,0,0,5779,1412,6087,470,0,655,1302,407,45,0,9656219,7.0,5166490,6.6,7.0,22.6
47
+ 2011-04-21,49520,0,25584,2486,3274,1153,0,0,6214,1466,6219,878,0,749,1172,287,38,0,9646534,7.2,4898444,5.2,7.2,0.0