tamnd commited on
Commit
c3b5e08
·
1 Parent(s): ecd9208

Add 2011-05-11 — 58.4K 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-10** (53 days), totaling **2,216,710 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 417.1 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 219.7 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,7 +71,7 @@ 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** — 361,653 events in 2080 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 68
@@ -84,13 +84,13 @@ Events from today are captured in near-real-time from the GitHub Events API and
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 47
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 52
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 66
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 66
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 68
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 90
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 116
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 143
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 212
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 282
94
  17:00 ██████████���████░░░░░░░░░░░░░░░ 120.3K
95
  18:00 ██████████████████████████████ 239.9K
96
  19:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -131,39 +131,39 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 2.2M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 53 | 2,216,710 | 41,824 | 417.1 MB | 219.7 MB | 7m28s | 9m08s | 19m57s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 1.2M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 103.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 53.5K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 260.3K
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,206,052 | 54.4% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 103,684 | 4.7% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 63,308 | 2.9% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 53,458 | 2.4% | PR lifecycle events |
554
- | `stars` | WatchEvent | 260,256 | 11.7% | Repository stars |
555
- | `forks` | ForkEvent | 66,616 | 3.0% | Repository forks |
556
- | `creates` | CreateEvent | 324,917 | 14.7% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 30,822 | 1.4% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 32,416 | 1.5% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 57,527 | 2.6% | Wiki page edits |
560
- | `members` | MemberEvent | 15,545 | 0.7% | Collaborator additions |
561
- | `public_events` | PublicEvent | 2,109 | 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-13** (55 days), totaling **2,326,490 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 436.7 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 229.5 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** — 361,666 events in 2089 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 68
 
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 47
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 52
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 66
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 68
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 69
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 92
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 117
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 144
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 212
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 283
94
  17:00 ██████████���████░░░░░░░░░░░░░░░ 120.3K
95
  18:00 ██████████████████████████████ 239.9K
96
  19:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 2.3M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 55 | 2,326,490 | 42,299 | 436.7 MB | 229.5 MB | 7m43s | 9m47s | 20m32s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 1.3M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 111.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 56.4K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 272.2K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 1,259,551 | 54.1% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 111,072 | 4.8% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 73,374 | 3.2% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 56,403 | 2.4% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 272,229 | 11.7% | Repository stars |
555
+ | `forks` | ForkEvent | 69,724 | 3.0% | Repository forks |
556
+ | `creates` | CreateEvent | 338,917 | 14.6% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 33,129 | 1.4% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 33,900 | 1.5% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 59,839 | 2.6% | Wiki page edits |
560
+ | `members` | MemberEvent | 16,176 | 0.7% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 2,176 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0c917902d86076f15e17113ea4bdc48a447ed439082264bc25eba2cdeb94f27
3
+ size 39006
data/creates/2011/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29cce5f176d979145186ccfc43a24456fd47c3ec6c5b80f0284a16b2798fe013
3
+ size 175443
data/deletes/2011/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f56e5a9d731b352ada62c1dbe772c679fd5084c2677b0c300b1a4340dcf1f36
3
+ size 26807
data/forks/2011/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89915a21d6dfdbcdd36ddd1489ee0a97624d41f48f48490d7d0cb7edcbed5119
3
+ size 63633
data/issues/2011/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43cb73647be95f6af325318a9e70b9e52c5250605766e9fd1c39c202c1686cce
3
+ size 107715
data/members/2011/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e480747fabc0f42f87762ecf67a713c50c31b3d7f8a5a612de819a039a1d91db
3
+ size 15383
data/public_events/2011/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1584d47ad3e93f61e1b6c1716cf2324f459982d1ae1c84ff4fa5e03164a5706d
3
+ size 3919
data/pull_requests/2011/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d194564e7705d8a19886d5f31414cb6bcafb6c5e42122655c425aa7737202d1b
3
+ size 92978
data/pushes/2011/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5b942891aa79b9fc815144953d1b7386bc91cb2d55812a8ae615285915f77d0
3
+ size 4520889
data/stars/2011/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b0d4385fb6ce234f480d98a4ee9643896039c1d4dfafee8322c649b371e1ffe
3
+ size 180561
data/wiki_pages/2011/05/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c53526a211b499160854c26f57e7ae3a11ebd0aec7d42122d833182583189508
3
+ size 68742
stats.csv CHANGED
@@ -51,4 +51,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
51
  2011-04-25,39853,0,21398,1793,2464,961,0,0,4642,1151,4807,827,0,590,795,386,39,0,7764517,5.1,3967767,7.2,5.1,20.8
52
  2011-04-26,48797,0,25623,2202,3003,1375,0,0,5939,2115,5810,653,0,596,1083,356,42,0,9643112,6.9,5003120,5.7,6.9,21.4
53
  2011-04-27,43925,0,23493,2170,2867,1278,0,0,4914,1395,5252,429,0,706,1047,322,52,0,8761524,6.0,4699389,13.8,6.0,20.0
54
- 2011-05-10,51454,0,24086,4081,4177,1280,0,0,5028,1381,8982,397,0,810,875,302,55,0,9085660,18.1,4544296,6.9,18.1,0.0
 
 
 
51
  2011-04-25,39853,0,21398,1793,2464,961,0,0,4642,1151,4807,827,0,590,795,386,39,0,7764517,5.1,3967767,7.2,5.1,20.8
52
  2011-04-26,48797,0,25623,2202,3003,1375,0,0,5939,2115,5810,653,0,596,1083,356,42,0,9643112,6.9,5003120,5.7,6.9,21.4
53
  2011-04-27,43925,0,23493,2170,2867,1278,0,0,4914,1395,5252,429,0,706,1047,322,52,0,8761524,6.0,4699389,13.8,6.0,20.0
54
+ 2011-05-10,51454,0,24086,4081,4177,1280,0,0,5028,1381,8982,397,0,810,875,302,55,0,9085660,18.1,4544296,6.9,18.1,34.5
55
+ 2011-05-11,58354,0,28529,3906,4774,1540,0,0,6173,1584,7901,1467,0,839,1280,327,34,0,10903560,21.4,5295076,6.2,21.4,0.0
56
+ 2011-05-13,51426,0,24970,3482,5292,1405,0,0,5800,1524,6099,840,0,645,1032,304,33,0,9612566,18.3,5023250,8.6,18.3,0.0