tamnd commited on
Commit
34a242c
·
1 Parent(s): aa63826

Add 2011-07-12 — 57.1K 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-07-11** (103 days), totaling **5,243,986 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 949.2 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 449.3 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,10 +71,10 @@ 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** — 515,820 events in 3061 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 87
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 97
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 71
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 60
@@ -83,14 +83,14 @@ Events from today are captured in near-real-time from the GitHub Events API and
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 58
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 68
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 74
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 111
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 101
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 98
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 157
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 279
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 392
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.4K
95
  18:00 ██████████████████████████████ 323.0K
96
  19:00 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 70.3K
@@ -131,39 +131,39 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 5.2M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 103 | 5,243,986 | 50,912 | 949.2 MB | 449.3 MB | 18m33s | 20m30s | 42m42s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 2.4M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 247.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 118.9K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 522.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 | 2,426,363 | 46.3% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 247,699 | 4.7% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 255,114 | 4.9% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 118,947 | 2.3% | PR lifecycle events |
554
- | `stars` | WatchEvent | 522,477 | 10.0% | Repository stars |
555
- | `forks` | ForkEvent | 138,457 | 2.6% | Repository forks |
556
- | `creates` | CreateEvent | 625,401 | 11.9% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 59,202 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 66,963 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 109,659 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 29,757 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 4,341 | 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-07-12** (104 days), totaling **5,301,094 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 959.4 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 454.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
 
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** — 515,851 events in 3077 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 88
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 97
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 71
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 60
 
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 58
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 68
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 74
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 112
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 102
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 98
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 160
91
+ 14:00 █░░░░░░░��░░░░░░░░░░░░░░░░░░░░░ 220
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 279
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 394
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.4K
95
  18:00 ██████████████████████████████ 323.0K
96
  19:00 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 70.3K
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 5.3M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 104 | 5,301,094 | 50,972 | 959.4 MB | 454.7 MB | 18m56s | 20m37s | 43m12s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 2.5M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 250.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 120.7K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 528.6K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 2,456,178 | 46.3% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 250,720 | 4.7% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 259,215 | 4.9% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 120,727 | 2.3% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 528,643 | 10.0% | Repository stars |
555
+ | `forks` | ForkEvent | 140,122 | 2.6% | Repository forks |
556
+ | `creates` | CreateEvent | 632,667 | 11.9% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 59,866 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 67,795 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 111,102 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 30,053 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 4,400 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/07/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0de60ad9b07dd0706543d89f2f63ef731a6ec60705b5a8e65b319e27fa592e43
3
+ size 41711
data/creates/2011/07/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b5930b1584c1261ebf63e42b283fe71263178db0183d5c66a2499416b29a029
3
+ size 297983
data/deletes/2011/07/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f44a2b9cdfd9976f3f9c5d4e56bcc04dcddb50c9385db7a3e4348ca33dae1121
3
+ size 27292
data/forks/2011/07/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4dda581ae40473b495916dc34c4fb4b15ad8248a3b6191b4dd2543a55cc0e72e
3
+ size 93127
data/issues/2011/07/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:367dfef210180b7f9086b39252084e687f17b31f78838ea837043e21ff53f938
3
+ size 102721
data/members/2011/07/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d5821301187c7894f667d0cc12591d6e7360fe56dba1ad20952c7e0d7360d6b
3
+ size 15875
data/public_events/2011/07/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21b11d597333fea72abcc7f2d0e877a41517f7856f2c231da2448f74117b0bfc
3
+ size 5248
data/pull_requests/2011/07/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f496b1cbbeef572dd42d05b5409ffb7da6a8da37f0efb74dd84ef362cccbd90
3
+ size 103093
data/pushes/2011/07/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebd76bb26fc40c65762213e58e35514da7aeaf4712330aaf92e6bf1ce0494e7c
3
+ size 4680183
data/stars/2011/07/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71a2f6d1c04be53c3739b462a60e511e0ac545fb0d622f45455ef62139a24a2d
3
+ size 183156
data/wiki_pages/2011/07/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd915dde69a32c0a01064f0035c23590bdd90a8788cc775da85abe912408da45
3
+ size 78748
stats.csv CHANGED
@@ -101,4 +101,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
101
  2011-07-08,55125,0,27858,4357,5228,1497,0,0,5247,1493,6659,530,0,649,1240,320,47,0,9480776,7.5,5182630,17.6,7.5,29.9
102
  2011-07-09,37227,0,19703,2248,2938,992,0,0,3929,976,4674,335,0,506,685,206,35,0,6792863,4.5,3892436,25.7,4.5,29.4
103
  2011-07-10,37235,0,19487,1861,2291,951,0,0,4436,1124,5099,405,0,490,895,166,30,0,6669866,4.4,3828793,17.8,4.4,22.6
104
- 2011-07-11,53097,0,28106,2883,3861,1681,0,0,5832,1578,6364,498,0,703,1168,368,55,0,9988279,6.3,5512333,17.8,6.3,0.0
 
 
101
  2011-07-08,55125,0,27858,4357,5228,1497,0,0,5247,1493,6659,530,0,649,1240,320,47,0,9480776,7.5,5182630,17.6,7.5,29.9
102
  2011-07-09,37227,0,19703,2248,2938,992,0,0,3929,976,4674,335,0,506,685,206,35,0,6792863,4.5,3892436,25.7,4.5,29.4
103
  2011-07-10,37235,0,19487,1861,2291,951,0,0,4436,1124,5099,405,0,490,895,166,30,0,6669866,4.4,3828793,17.8,4.4,22.6
104
+ 2011-07-11,53097,0,28106,2883,3861,1681,0,0,5832,1578,6364,498,0,703,1168,368,55,0,9988279,6.3,5512333,17.8,6.3,29.8
105
+ 2011-07-12,57108,0,29815,3021,4101,1780,0,0,6166,1665,7266,664,0,832,1443,296,59,0,10750976,6.4,5629137,23.1,6.4,0.0