tamnd commited on
Commit
632349f
·
verified ·
1 Parent(s): cef95b1

Add 2011-08-09 — 61.4K 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-08** (119 days), totaling **6,048,634 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 526.4 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,14 +71,14 @@ 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** — 733,772 events in 4404 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 160
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 144
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 119
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 95
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 127
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 112
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 91
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 90
@@ -88,12 +88,12 @@ Events from today are captured in near-real-time from the GitHub Events API and
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 146
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 189
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 220
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 276
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 354
93
- 16:00 █░░░░░░░���░░░░░░░░░░░░░░░░░░░░░ 462
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
- 19:00 ██████████████████████████░░░░ 287.0K
97
  20:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -131,39 +131,39 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 6.0M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 119 | 6,048,634 | 50,828 | 1.1 GB | 526.4 MB | 23m15s | 24m00s | 52m24s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 2.8M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 293.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 142.9K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 607.7K
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,840,194 | 47.0% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 293,693 | 4.9% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 316,327 | 5.2% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 142,894 | 2.4% | PR lifecycle events |
554
- | `stars` | WatchEvent | 607,689 | 10.0% | Repository stars |
555
- | `forks` | ForkEvent | 163,227 | 2.7% | Repository forks |
556
- | `creates` | CreateEvent | 729,510 | 12.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 69,043 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 79,086 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 128,026 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 34,174 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 5,165 | 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-11** (122 days), totaling **6,219,990 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 542.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** — 736,143 events in 4419 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 160
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 145
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 120
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 96
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 128
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 112
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 91
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 90
 
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 146
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 189
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 220
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 277
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 355
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 463
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
+ 19:00 ██████████████████████████░░░░ 289.3K
97
  20:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 6.2M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 122 | 6,219,990 | 50,983 | 1.1 GB | 542.7 MB | 24m08s | 25m04s | 52m56s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 2.9M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 302.9K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 148.3K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 626.2K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 2,927,746 | 47.1% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 302,934 | 4.9% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 329,434 | 5.3% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 148,321 | 2.4% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 626,239 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 168,825 | 2.7% | Repository forks |
556
+ | `creates` | CreateEvent | 751,572 | 12.1% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 71,503 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 81,553 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 131,881 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 35,036 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 5,340 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2103a342e3015ef094843a9da7ed0696a5bea43778ff25168352307a6573faa2
3
+ size 42207
data/creates/2011/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdf6edc233cdacb76dedce994be1e3e01ad93471f06c8bda7a149ad4cd661ceb
3
+ size 324671
data/deletes/2011/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c7d99dd2021b85e9ff295975564531ed3dfdf7b1d9d6c7ce9d49e47a8478de2
3
+ size 36040
data/forks/2011/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9964aa74d381aa0133544084b97af9ba38b893948cb18df1211e09b1ec7d05f9
3
+ size 99934
data/issues/2011/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ac7525e60ffbab7f104dd8bc4378b06eb01a96ae1b28ed333a6e2469490e1c1
3
+ size 108105
data/members/2011/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c0c73ca1bee98f799d60bdbbae50549b9f985494deb7bab4407c8bc7a516066
3
+ size 17230
data/public_events/2011/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a06a069d90a0a74c6cc7acbf27e1d2ccbb3bc8d38e1b7b2b094290e5b56977a5
3
+ size 5115
data/pull_requests/2011/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5943cdad6690da5f1529178f3b0b8ce6b789f42707c4ce16869784c6b9c2a3d8
3
+ size 111998
data/pushes/2011/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d49dc487965caa6c15b0a8ec48e221a04ada628553e770369b61e72e02fdc88
3
+ size 4835503
data/stars/2011/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a966896694c128994d6d8b013fbd326ee7bbcf535cb4ad8bd85a593ec22da1a5
3
+ size 183048
data/wiki_pages/2011/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:838c803cf70692646cc15b267f66f3de35df7ad296fcacd3be9ff1909e6cb35f
3
+ size 112902
stats.csv CHANGED
@@ -117,4 +117,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
117
  2011-08-05,53473,0,27428,2877,4052,1622,0,0,5536,1676,7124,641,0,947,1212,284,74,0,10006303,18.0,5286316,16.8,18.0,27.7
118
  2011-08-06,41572,0,19633,4074,4447,935,0,0,3884,1167,5416,409,0,488,877,206,36,0,6772258,12.7,3893721,15.1,12.7,25.9
119
  2011-08-07,32448,0,17508,1661,2141,818,0,0,3255,947,4402,366,0,522,624,169,35,0,5746683,9.3,3124852,14.3,9.3,25.8
120
- 2011-08-08,55815,0,28423,3107,4442,1706,0,0,5891,1722,6976,1102,0,860,1187,338,61,0,10352139,19.1,5676645,16.7,19.1,0.0
 
 
 
 
117
  2011-08-05,53473,0,27428,2877,4052,1622,0,0,5536,1676,7124,641,0,947,1212,284,74,0,10006303,18.0,5286316,16.8,18.0,27.7
118
  2011-08-06,41572,0,19633,4074,4447,935,0,0,3884,1167,5416,409,0,488,877,206,36,0,6772258,12.7,3893721,15.1,12.7,25.9
119
  2011-08-07,32448,0,17508,1661,2141,818,0,0,3255,947,4402,366,0,522,624,169,35,0,5746683,9.3,3124852,14.3,9.3,25.8
120
+ 2011-08-08,55815,0,28423,3107,4442,1706,0,0,5891,1722,6976,1102,0,860,1187,338,61,0,10352139,19.1,5676645,16.7,19.1,31.9
121
+ 2011-08-09,61446,0,31078,3155,4796,1914,0,0,6129,1916,8507,1166,0,914,1474,334,63,0,11183311,22.4,5876753,18.1,22.4,0.0
122
+ 2011-08-10,53141,0,27264,2943,4118,1734,0,0,6036,1818,6167,634,0,820,1308,250,49,0,9954929,20.8,5433167,18.4,20.8,0.0
123
+ 2011-08-11,56769,0,29210,3143,4193,1779,0,0,6385,1864,7388,660,0,733,1073,278,63,0,10719929,20.9,5778697,17.2,20.9,0.0