tamnd commited on
Commit
ad32f23
·
verified ·
1 Parent(s): c4672ec

Add 2011-09-12 — 66.5K 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-11** (153 days), totaling **7,911,369 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 701.0 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,7 +71,7 @@ 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** — 814,689 events in 4886 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
@@ -82,19 +82,19 @@ Events from today are captured in near-real-time from the GitHub Events API and
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 116
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 95
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 111
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 157
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 150
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 154
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 200
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 236
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 297
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 383
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 501
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ███████���██████████████████████ 323.4K
96
  19:00 █████████████████████████████░ 315.9K
97
- 20:00 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 51.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.9M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 153 | 7,911,369 | 51,708 | 1.4 GB | 701.0 MB | 35m03s | 29m05s | 1h07m |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 403.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 199.8K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 824.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 | 3,777,268 | 47.7% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 403,052 | 5.1% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 466,978 | 5.9% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 199,823 | 2.5% | PR lifecycle events |
554
- | `stars` | WatchEvent | 824,709 | 10.4% | Repository stars |
555
- | `forks` | ForkEvent | 222,479 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 963,995 | 12.2% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 90,703 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 103,985 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 167,375 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 44,248 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 7,148 | 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-12** (154 days), totaling **7,977,906 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 706.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** — 817,358 events in 4900 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
 
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 116
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 95
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 112
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 157
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 150
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 154
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 200
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 236
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 297
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 386
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 502
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ███████���██████████████████████ 323.4K
96
  19:00 █████████████████████████████░ 315.9K
97
+ 20:00 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 54.2K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 8.0M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 154 | 7,977,906 | 51,804 | 1.4 GB | 706.8 MB | 35m26s | 29m14s | 1h08m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 406.3K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 201.7K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 831.8K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 3,808,215 | 47.7% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 406,300 | 5.1% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 471,529 | 5.9% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 201,706 | 2.5% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 831,804 | 10.4% | Repository stars |
555
+ | `forks` | ForkEvent | 224,574 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 977,614 | 12.3% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 91,383 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 104,670 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 168,681 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 44,622 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 7,202 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/09/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ae2440276a2991f87027d584e7cb88e59d2eb7d50538149e636045b2a9800d6
3
+ size 36393
data/creates/2011/09/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18221a8b52d6975c3892bcd416a534fe409a9e96e107e4f39314c9da5c5ec9d2
3
+ size 365260
data/deletes/2011/09/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea3360054c0354f3624b1c42032eaca820217bd321adb21a379ed8acb8407bf1
3
+ size 23518
data/forks/2011/09/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4ec6a0ec436cc3ce0c2c956a39b0e9385227ac57756fad823e62beffd150a82
3
+ size 104734
data/issues/2011/09/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc4bdcf2379c4b628abcae37882a5cbc36d4703847e63e3a7fb7980de8be55bd
3
+ size 111953
data/members/2011/09/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6689f39cdae6babb38262e0d94f275c7953a9771d1d32d07da6713ec017cbd80
3
+ size 18841
data/public_events/2011/09/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2eac10d3451f08e167140cc499fe5b89b3463aab21bd09bacbc0bec5a4ede3d
3
+ size 4801
data/pull_requests/2011/09/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0aab8f38dec72a6e3241f4068d05fe6587c19adb0af204608863c0cb32c19c37
3
+ size 111566
data/pushes/2011/09/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62c22426b4da00dcd146879654d2f37b332aac44431ca5117c848199cf6d56ae
3
+ size 5035176
data/stars/2011/09/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cffbd5c92cc2dfe7fe8c2a0ed9ce0432f1306f1e4798ddb64668cda6c0bb245
3
+ size 209285
data/wiki_pages/2011/09/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8db0172f8af313f7d91d8f0f242e87992fd9bbeaf29a7df2cd8b7d9214f92117
3
+ size 98368
stats.csv CHANGED
@@ -151,4 +151,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,28.1
153
  2011-09-10,43197,0,21583,2239,2964,1194,0,0,4397,1272,7557,470,0,455,761,263,42,0,7527191,5.7,4172118,23.3,5.7,26.0
154
- 2011-09-11,46786,0,24118,2284,2927,1255,0,0,4777,1561,7402,524,0,524,1071,307,36,0,8277171,6.5,4708751,17.9,6.5,0.0
 
 
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,28.1
153
  2011-09-10,43197,0,21583,2239,2964,1194,0,0,4397,1272,7557,470,0,455,761,263,42,0,7527191,5.7,4172118,23.3,5.7,26.0
154
+ 2011-09-11,46786,0,24118,2284,2927,1255,0,0,4777,1561,7402,524,0,524,1071,307,36,0,8277171,6.5,4708751,17.9,6.5,22.0
155
+ 2011-09-12,66537,0,30947,3248,4551,1883,0,0,7095,2095,13619,680,0,685,1306,374,54,0,11482052,8.7,6119895,23.3,8.7,0.0