tamnd commited on
Commit
622cc9e
·
verified ·
1 Parent(s): a9368e7

Add 2011-11-08 — 85.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-10-28** (189 days), totaling **10,238,949 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 1.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 936.9 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,30 +71,30 @@ 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** — 1,043,097 events in 6311 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 207
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 196
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 170
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 135
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 150
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 159
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 118
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 163
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 203
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 184
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 210
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 248
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 300
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 359
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 430
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 586
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.5K
96
  19:00 █████████████████████████████░ 316.2K
97
- 20:00 █████████████████████████░░░░ 278.7K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -131,32 +131,32 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 10.2M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 189 | 10,238,949 | 54,174 | 1.8 GB | 936.9 MB | 46m49s | 35m43s | 1h25m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 5.0M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 535.8K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 267.8K
160
  ```
161
 
162
 
@@ -547,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
- | `pushes` | PushEvent | 4,957,454 | 48.4% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 535,840 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 645,434 | 6.3% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 267,823 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,061,322 | 10.4% | Repository stars |
555
- | `forks` | ForkEvent | 292,789 | 2.9% | Repository forks |
556
- | `creates` | CreateEvent | 1,300,725 | 12.7% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 121,499 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 131,815 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 215,715 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 59,427 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 9,500 | 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-11-10** (192 days), totaling **10,467,151 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 1.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 965.8 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** — 1,045,288 events in 6365 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 210
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 197
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 170
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 135
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 159
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 118
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 163
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 184
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 210
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 251
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 305
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 362
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 433
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 586
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.5K
96
  19:00 █████████████████████████████░ 316.2K
97
+ 20:00 █████████████████████████░░░░ 280.8K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 10.5M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 192 | 10,467,151 | 54,516 | 1.9 GB | 965.8 MB | 47m33s | 37m19s | 1h25m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 5.1M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 546.6K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 274.9K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 5,063,050 | 48.4% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 546,614 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 661,446 | 6.3% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 274,877 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,081,390 | 10.3% | Repository stars |
555
+ | `forks` | ForkEvent | 299,321 | 2.9% | Repository forks |
556
+ | `creates` | CreateEvent | 1,352,659 | 12.9% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 123,931 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 134,006 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 219,709 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 60,846 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 9,696 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/11/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f39eeee1bc98fc38d2bbee7cc71e378ff21a67126a03fceb687df7d210c79e70
3
+ size 130232
data/creates/2011/11/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bab2311349cae2d8b5a71a5dc281f91dd4e94b5df1efe2e9eaff1571f13e2bc
3
+ size 445803
data/deletes/2011/11/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4b0bae24d0dd5e8ae3a0a5e00f2e9b8e89ed9b5892c3512652b798756de5de8
3
+ size 33843
data/forks/2011/11/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee0be5fe49ab909074c3c91f2152e2ef49456a8ccad70cb865a98a14856093aa
3
+ size 236368
data/issues/2011/11/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed25f970fcf738a312010237d9ee32ba5d1f38798b523565520a65355a8cbc13
3
+ size 878518
data/members/2011/11/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fc079806a758db89c9dc8c9f041943687454d24b720f7137e92a862d1fb7d4c
3
+ size 23957
data/public_events/2011/11/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88b2238ce64494589d4e2159102b7a81c678a079ec538aa5f24e92cd837cb7fd
3
+ size 5328
data/pull_requests/2011/11/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd9031ec65d599da671c9af491e4b1a27a80e0a9d4fcf1b1186a5311f7865106
3
+ size 458061
data/pushes/2011/11/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b172e32582a5b4a895bf216d46e364aa59d417e6a240c20ba730a7739861ee3c
3
+ size 8709050
data/stars/2011/11/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9506266b685ecfb91936f2a4ed83f668f9d2d13ec539f7412a14abd2067be8be
3
+ size 227434
data/wiki_pages/2011/11/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ede21abfc9447c7fe1e97e973e2c791dd5ab0bf8fc7cbdb56882e5bfee3db95d
3
+ size 117359
stats.csv CHANGED
@@ -188,3 +188,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
188
  2011-10-26,73436,0,37400,4083,5780,2276,0,0,8030,2369,8759,1460,0,930,1441,819,89,0,22413620,35.1,10821255,22.2,35.1,40.1
189
  2011-10-27,52384,0,27474,2847,3977,1809,0,0,5399,1890,6403,484,0,683,1001,370,47,0,15746487,25.0,8141315,24.8,25.0,40.2
190
  2011-10-28,70381,0,27428,2837,4073,1888,0,0,5442,1858,24213,641,0,539,1076,325,61,0,16058295,29.9,8296079,18.1,29.9,24.0
 
 
 
 
188
  2011-10-26,73436,0,37400,4083,5780,2276,0,0,8030,2369,8759,1460,0,930,1441,819,89,0,22413620,35.1,10821255,22.2,35.1,40.1
189
  2011-10-27,52384,0,27474,2847,3977,1809,0,0,5399,1890,6403,484,0,683,1001,370,47,0,15746487,25.0,8141315,24.8,25.0,40.2
190
  2011-10-28,70381,0,27428,2837,4073,1888,0,0,5442,1858,24213,641,0,539,1076,325,61,0,16058295,29.9,8296079,18.1,29.9,24.0
191
+ 2011-11-08,85102,0,39901,4039,5842,2713,0,0,7527,2639,18254,1170,0,861,1548,542,66,0,22666473,36.3,11265953,16.6,36.3,0.0
192
+ 2011-11-09,67989,0,31069,3259,4920,2081,0,0,5946,1815,16026,615,0,564,1173,460,61,0,17643029,28.4,9008591,7.8,28.4,0.0
193
+ 2011-11-10,75111,0,34626,3476,5250,2260,0,0,6595,2078,17654,647,0,766,1273,417,69,0,19605653,31.4,10041693,20.3,31.4,0.0