tamnd commited on
Commit
5ac7a62
·
verified ·
1 Parent(s): 610d4d0

Add 2011-08-24 — 64.6K 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-23** (134 days), totaling **6,841,846 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.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 601.2 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** — 762,762 events in 4639 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 172
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 154
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 125
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 106
@@ -84,7 +84,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 92
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 110
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 151
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 144
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 192
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 228
@@ -131,39 +131,39 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 6.8M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 134 | 6,841,846 | 51,058 | 1.2 GB | 601.2 MB | 28m10s | 26m45s | 59m12s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 3.2M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 340.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 166.7K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 699.4K
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,240,209 | 47.4% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 340,102 | 5.0% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 381,713 | 5.6% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 166,714 | 2.4% | PR lifecycle events |
554
- | `stars` | WatchEvent | 699,447 | 10.2% | Repository stars |
555
- | `forks` | ForkEvent | 188,506 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 827,406 | 12.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 78,719 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 90,009 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 145,169 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 38,271 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 5,975 | 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-08-24** (135 days), totaling **6,906,419 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.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 607.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** — 762,784 events in 4650 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 173
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 154
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 125
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 106
 
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 92
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 110
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 151
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 145
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 192
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 228
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 6.9M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 135 | 6,906,419 | 51,158 | 1.2 GB | 607.1 MB | 28m32s | 26m54s | 59m40s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 3.3M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 343.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 168.7K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 706.9K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 3,273,470 | 47.4% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 343,718 | 5.0% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 387,056 | 5.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 168,711 | 2.4% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 706,856 | 10.2% | Repository stars |
555
+ | `forks` | ForkEvent | 190,518 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 835,056 | 12.1% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 79,361 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 90,872 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 146,538 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 38,613 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 6,044 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/08/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29ed8e21a3fe49df12113a5e8b83a86aa365c76e99c478b7419857e2860785c7
3
+ size 42726
data/creates/2011/08/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55e3d35264f6d004d55681c2c2d8e958de0d85564f18b265860c3d2125f2ca3a
3
+ size 323904
data/deletes/2011/08/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23754bd75e924a9953bd42419a9e2f0d571cc109dd640417c2ddc61be25a3459
3
+ size 25690
data/forks/2011/08/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e0857e6278db039def794e4d386d29c859d06e57d64143a11caca0f35748a18
3
+ size 101715
data/issues/2011/08/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8ec19a3e38bb0f0848a3bbc00cae4e1ac38f8110bde49bd370b55f14d19d1f9
3
+ size 119094
data/members/2011/08/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da935ce0bd574a31f790bde8c57b8135cf874cfa1b5f4b14751d33605e1d1209
3
+ size 17786
data/public_events/2011/08/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60c38e0c05c62ec6a9bfafcdad6158672c633c2c4978a739a862ece3c5d99b43
3
+ size 5067
data/pull_requests/2011/08/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80d0f8376fc3a9f5a6363b88776bc8760bc1b144aa172d47f2baf7f0bce7a110
3
+ size 117749
data/pushes/2011/08/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:494ec123fba88692b8ae84b1ff1cf772b79f143cd7306ad605a2cfea8ec1a805
3
+ size 5108210
data/stars/2011/08/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24db6c51aeee0fbe84f8f1eedcecdefaa00aea04c2fe87a0802280c014c81f4c
3
+ size 219204
data/wiki_pages/2011/08/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5498ff0cc82a637f3d0d185a0e9a0694e3059fa823a5eaffed209f736187fd06
3
+ size 78248
stats.csv CHANGED
@@ -132,4 +132,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
132
  2011-08-20,35099,0,17616,1793,2203,775,0,0,5551,1301,4288,260,0,431,675,170,36,0,6109284,4.7,3457636,16.2,4.7,23.8
133
  2011-08-21,38946,0,20881,1808,2399,972,0,0,4864,1327,5010,323,0,358,804,169,31,0,7101157,7.5,3968252,16.4,7.5,29.1
134
  2011-08-22,61464,0,29470,3733,5344,1870,0,0,7472,1964,8262,717,0,911,1340,316,65,0,10887133,9.7,5915255,17.2,9.7,25.8
135
- 2011-08-23,63176,0,31479,3730,5052,1910,0,0,8049,2009,7403,812,0,844,1374,437,77,0,11556642,10.0,6327359,26.0,10.0,0.0
 
 
132
  2011-08-20,35099,0,17616,1793,2203,775,0,0,5551,1301,4288,260,0,431,675,170,36,0,6109284,4.7,3457636,16.2,4.7,23.8
133
  2011-08-21,38946,0,20881,1808,2399,972,0,0,4864,1327,5010,323,0,358,804,169,31,0,7101157,7.5,3968252,16.4,7.5,29.1
134
  2011-08-22,61464,0,29470,3733,5344,1870,0,0,7472,1964,8262,717,0,911,1340,316,65,0,10887133,9.7,5915255,17.2,9.7,25.8
135
+ 2011-08-23,63176,0,31479,3730,5052,1910,0,0,8049,2009,7403,812,0,844,1374,437,77,0,11556642,10.0,6327359,26.0,10.0,27.9
136
+ 2011-08-24,64573,0,33261,3616,5343,1997,0,0,7409,2012,7650,642,0,863,1369,342,69,0,11975448,9.3,6159393,21.9,9.3,0.0