tamnd commited on
Commit
5c0b721
·
verified ·
1 Parent(s): 92045ab

Add 2011-09-01 — 65.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-08-31** (142 days), totaling **7,291,889 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 642.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** — 786,465 events in 4732 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 175
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 155
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 95
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 110
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 155
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 148
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 151
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 233
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 289
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 372
93
- 16:00 █░░░░��░░░░░░░░░░░░░░░░░░░░░░░░ 482
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 █████████████████████████████░ 315.9K
97
- 20:00 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 23.6K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 7.3M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 142 | 7,291,889 | 51,351 | 1.3 GB | 642.9 MB | 31m04s | 27m48s | 1h02m |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 365.9K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 180.8K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 752.6K
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,469,051 | 47.6% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 365,903 | 5.0% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 417,276 | 5.7% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 180,753 | 2.5% | PR lifecycle events |
554
- | `stars` | WatchEvent | 752,634 | 10.3% | Repository stars |
555
- | `forks` | ForkEvent | 203,189 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 882,248 | 12.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 83,818 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 95,670 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 154,532 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 40,707 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 6,502 | 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-01** (143 days), totaling **7,356,958 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 649.1 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** — 788,679 events in 4744 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 175
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 155
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 135
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 95
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 110
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 148
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 151
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 233
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 289
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 372
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 485
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 █████████████████████████████░ 315.9K
97
+ 20:00 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 25.8K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 7.4M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 143 | 7,356,958 | 51,447 | 1.3 GB | 649.1 MB | 31m24s | 27m55s | 1h03m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 370.9K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 182.9K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 759.6K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 3,501,112 | 47.6% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 370,879 | 5.0% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 423,277 | 5.8% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 182,950 | 2.5% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 759,648 | 10.3% | Repository stars |
555
+ | `forks` | ForkEvent | 205,072 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 889,943 | 12.1% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 84,492 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 96,417 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 155,899 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 41,087 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 6,576 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/09/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9be8a8a5fcd51ffa5481628bdfa3e8c8c427b27871db3749a7dc1bc1bbc3f9c5
3
+ size 36985
data/creates/2011/09/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:711cea8179d0b796e8f4a8ba29bf435bc0fdd806e82a7c89821ad3b9fe04c15d
3
+ size 317172
data/deletes/2011/09/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f697c5755b5df1b2f8d313c8bd8a5dff1a7815e589c0ed76ff23385534802f3
3
+ size 25215
data/forks/2011/09/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d01f3a042724161546ef749ec04b4c1039f1ac092202a7cc26c295cbce69f1d
3
+ size 96772
data/issues/2011/09/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a5d4a317cbcaa917183320c601ef7207c0c980519edb6e99794cae4efceed1c
3
+ size 132105
data/members/2011/09/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6eeefe66855d472e45e242d0329aedffe1c71aa9a4916562f0bf4b4e83e74c32
3
+ size 18819
data/public_events/2011/09/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e86a426f87a8d43d3e20a86293d9745a0006f3cc63d48260fdf5e5316e738c2d
3
+ size 5605
data/pull_requests/2011/09/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dbfe66981a4e54f0ec085832ea3cad1c247bb4b5b32e44116e30444a2c33dfe
3
+ size 126113
data/pushes/2011/09/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bd712c8f08b16245d04dc8757a8d1873b3fd9e19dab758bad4e18f66835cc0f
3
+ size 5431145
data/stars/2011/09/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cc4dffcfbb530a3228fc92ffb0895c1560e638d0394efd7e91d21bc6b410434
3
+ size 205042
data/wiki_pages/2011/09/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:143b34d5dd263b5e2465dc32c5cd74f2eeedb35549deb8696e9cb6fbcab1349f
3
+ size 106711
stats.csv CHANGED
@@ -140,4 +140,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
140
  2011-08-28,40998,0,21296,2203,2778,1146,0,0,4951,1551,5173,456,0,409,806,184,45,0,7203720,4.9,3900883,16.3,4.9,22.3
141
  2011-08-29,63244,0,31840,4291,5340,1907,0,0,7322,1811,7541,628,0,833,1274,368,89,0,11468336,8.8,5987785,29.3,8.8,29.7
142
  2011-08-30,63011,0,31326,3644,5018,2028,0,0,7584,2130,7915,782,0,717,1421,365,81,0,11598521,8.2,6165324,28.0,8.3,25.7
143
- 2011-08-31,61408,0,30991,3457,5226,2080,0,0,7425,2009,6951,859,0,875,1160,310,65,0,11297695,9.5,6223313,28.6,9.5,0.0
 
 
140
  2011-08-28,40998,0,21296,2203,2778,1146,0,0,4951,1551,5173,456,0,409,806,184,45,0,7203720,4.9,3900883,16.3,4.9,22.3
141
  2011-08-29,63244,0,31840,4291,5340,1907,0,0,7322,1811,7541,628,0,833,1274,368,89,0,11468336,8.8,5987785,29.3,8.8,29.7
142
  2011-08-30,63011,0,31326,3644,5018,2028,0,0,7584,2130,7915,782,0,717,1421,365,81,0,11598521,8.2,6165324,28.0,8.3,25.7
143
+ 2011-08-31,61408,0,30991,3457,5226,2080,0,0,7425,2009,6951,859,0,875,1160,310,65,0,11297695,9.5,6223313,28.6,9.5,23.9
144
+ 2011-09-01,65069,0,32061,4976,6001,2197,0,0,7014,1883,7695,674,0,747,1367,380,74,0,11700096,7.6,6501684,19.5,7.6,0.0