tamnd commited on
Commit
e517bfd
·
verified ·
1 Parent(s): 37077a5

Add 2011-09-09 — 60.8K 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-09-08** (150 days), totaling **7,760,611 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 686.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,11 +71,11 @@ 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** — 806,499 events in 4838 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 158
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 129
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 138
@@ -88,13 +88,13 @@ Events from today are captured in near-real-time from the GitHub Events API and
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 153
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 293
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 379
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 496
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 █████████████████████████████░ 315.9K
97
- 20:00 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 43.5K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -136,7 +136,7 @@ duckdb.sql("""
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 150 | 7,760,611 | 51,737 | 1.4 GB | 686.9 MB | 33m55s | 28m47s | 1h06m |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 395.0K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 195.2K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 808.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 | 3,701,555 | 47.7% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 395,022 | 5.1% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 456,234 | 5.9% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 195,243 | 2.5% | PR lifecycle events |
554
- | `stars` | WatchEvent | 808,238 | 10.4% | Repository stars |
555
- | `forks` | ForkEvent | 217,674 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 941,386 | 12.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 88,941 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 102,166 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 164,195 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 43,338 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 7,013 | 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-09-09** (151 days), totaling **7,821,386 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 692.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** — 808,669 events in 4852 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 159
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 129
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 138
 
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 153
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 294
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 379
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 496
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 █████████████████████████████░ 315.9K
97
+ 20:00 ███���░░░░░░░░░░░░░░░░░░░░░░░░░░ 45.6K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 151 | 7,821,386 | 51,797 | 1.4 GB | 692.5 MB | 34m22s | 28m53s | 1h06m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 398.5K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 197.4K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 815.5K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 3,731,567 | 47.7% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 398,529 | 5.1% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 461,087 | 5.9% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 197,374 | 2.5% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 815,535 | 10.4% | Repository stars |
555
+ | `forks` | ForkEvent | 219,646 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 949,036 | 12.1% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 89,709 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 103,006 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 165,543 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 43,678 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 7,070 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/09/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6038d91196eb3c8c61c01eb6be07d14ec621c74d0fc3cba70e67d4bc26c8eb6a
3
+ size 40260
data/creates/2011/09/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9684320d67d49a59a122241ed7799144ef350098eb32a479be00533cc21a96e2
3
+ size 318798
data/deletes/2011/09/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a486a04bd2088731f30c4131f98dba1904693c333781b6cc3b95cd2d1d45d8a
3
+ size 27583
data/forks/2011/09/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a565962fdcfe06639323c76e5879dbb6aea52a264ec844765d63d39d52131cb
3
+ size 100055
data/issues/2011/09/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0418ed024121ff8025063ed8be7608295d790177cf23a928361379aa468ecb4c
3
+ size 115914
data/members/2011/09/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eebf10aba6df5697dd0cde81d46301a93a5ea4922ced1e11e6ff8b14da811b20
3
+ size 17336
data/public_events/2011/09/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:deb1f8d69533b57bc3c2fa4cf4bb90a860103c5d6f0de05ecb42bb2be0a42ed5
3
+ size 4854
data/pull_requests/2011/09/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68feb1f7d4e8fdf28ce48610316cfdd8cc5894cb819a2c11155d2d2f8a307f92
3
+ size 123211
data/pushes/2011/09/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1dbfe71cbab968b6292707f8c7ff7fcdf60def9f333c5ccc19e2d49361ac12d6
3
+ size 4800264
data/stars/2011/09/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c05e0222c611d7c31e2671802d35ee0eb2ef9d787c3ae8af828a7bbfbb02b6e
3
+ size 215987
data/wiki_pages/2011/09/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bffccf0d9d21fd476c2d8a2b7c9e4649fb8b4ffc8b95de657e91a3e316a9ad3
3
+ size 103717
stats.csv CHANGED
@@ -148,4 +148,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
148
  2011-09-05,60870,0,29469,3549,5191,1758,0,0,8294,1879,7577,671,0,799,1278,353,52,0,10812183,7.8,5923548,16.9,7.8,31.5
149
  2011-09-06,64897,0,31770,3931,5558,2105,0,0,8114,2005,7866,706,0,897,1491,375,79,0,11942825,7.8,6347701,25.4,7.8,31.2
150
  2011-09-07,68141,0,33910,3958,5455,2193,0,0,8286,2205,8560,759,0,983,1369,380,83,0,12682680,9.0,6983329,20.4,9.0,29.3
151
- 2011-09-08,65591,0,32263,4015,5231,2145,0,0,7980,2056,8299,876,0,907,1330,418,71,0,12136006,9.2,6491770,17.8,9.2,0.0
 
 
148
  2011-09-05,60870,0,29469,3549,5191,1758,0,0,8294,1879,7577,671,0,799,1278,353,52,0,10812183,7.8,5923548,16.9,7.8,31.5
149
  2011-09-06,64897,0,31770,3931,5558,2105,0,0,8114,2005,7866,706,0,897,1491,375,79,0,11942825,7.8,6347701,25.4,7.8,31.2
150
  2011-09-07,68141,0,33910,3958,5455,2193,0,0,8286,2205,8560,759,0,983,1369,380,83,0,12682680,9.0,6983329,20.4,9.0,29.3
151
+ 2011-09-08,65591,0,32263,4015,5231,2145,0,0,7980,2056,8299,876,0,907,1330,418,71,0,12136006,9.2,6491770,17.8,9.2,20.3
152
+ 2011-09-09,60775,0,30012,3507,4853,2131,0,0,7297,1972,7650,768,0,840,1348,340,57,0,11112590,6.4,5867979,26.3,6.4,0.0