tamnd commited on
Commit
1ce8a26
·
verified ·
1 Parent(s): 3530b4d

Add 2011-12-28 — 63.2K events, 11 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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-12-27** (239 days), totaling **13,840,388 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 2.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.3 GB 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
 
@@ -71,13 +71,13 @@ 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** — 1,167,016 events in 7323 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 201
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 182
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 141
@@ -85,7 +85,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 181
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 232
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 252
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 296
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 340
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 403
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 13.8M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 239 | 13,840,388 | 57,909 | 2.7 GB | 1.3 GB | 1h05m | 49m50s | 1h52m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 722.8K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 364.7K
160
  ```
161
 
162
 
@@ -547,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
- | `pushes` | PushEvent | 6,563,984 | 47.4% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 722,846 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 912,478 | 6.6% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 364,685 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,392,018 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 390,224 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 2,149,945 | 15.5% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 163,665 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 170,057 | 1.2% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 281,231 | 2.0% | Wiki page edits |
560
- | `members` | MemberEvent | 77,186 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 12,463 | 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-12-28** (240 days), totaling **13,903,632 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 2.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.3 GB 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
 
 
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** — 1,167,043 events in 7335 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 228
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 201
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 141
 
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 181
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 232
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 253
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 296
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 340
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 403
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 13.9M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 240 | 13,903,632 | 57,931 | 2.7 GB | 1.3 GB | 1h05m | 50m01s | 1h53m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 726.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 366.3K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 6,591,425 | 47.4% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 726,097 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 916,513 | 6.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 366,276 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,398,880 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 391,938 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 2,165,532 | 15.6% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 164,380 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 170,741 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 282,286 | 2.0% | Wiki page edits |
560
+ | `members` | MemberEvent | 77,453 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 12,505 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:511ef1d4fc923bf7ce1a55ed215a24210f9ad7181e2f2ba637a01be95795d1ad
3
+ size 139463
data/creates/2011/12/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2ef03020bbe261fc27980451868e0991646b82ccd8fdc92c597d2635691f6f4
3
+ size 327047
data/deletes/2011/12/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8f5152c24e85e4689602ef3dec299c0d6feb939ca66f199458ed25f1e6467e0
3
+ size 22821
data/forks/2011/12/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a392305d3b37cb437f421c36e66401b89517fb953a586b9083700a6e48ce440
3
+ size 162803
data/issues/2011/12/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65f88d5b1c4b7006b3f74b13a2cc8c69a297af629a7c58a18bded3bb4b1ed2d0
3
+ size 623631
data/members/2011/12/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:054f3ba0831bcdd46902078b008b0bc832b994d8f818657d5e50f8cbf09554b7
3
+ size 14352
data/public_events/2011/12/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:114195602378f524a5b1b5e912ec4bd6906982d07375378ff7ea438fb2e45e45
3
+ size 4127
data/pull_requests/2011/12/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a335f015da5c1b10e2e97ee87c86aae6e37808eed1b527e332ae93ea68a9f5f8
3
+ size 302492
data/pushes/2011/12/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56c94e300e39d3e90396783a3b1a93848fb244808f394f7d4bbf87424aae5736
3
+ size 5865203
data/stars/2011/12/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:719aa8dd8349b651929913551c7dd19a71605bfa8cab62ef5231b4ecbc66ab5e
3
+ size 202815
data/wiki_pages/2011/12/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b855d56bf9ff2942cfe45118b58cc42ca8b48daf0dffece10e14ed52db50e961
3
+ size 62802
stats.csv CHANGED
@@ -237,4 +237,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
237
  2011-12-24,51946,0,17826,1690,2324,942,0,0,4040,1080,22290,455,0,421,740,113,25,0,9635826,7.5,5053827,22.4,7.5,21.9
238
  2011-12-25,38010,0,15500,1387,1588,738,0,0,3586,944,12968,254,0,404,498,114,29,0,7795657,5.8,4314914,19.4,5.8,25.3
239
  2011-12-26,43161,0,19835,1877,2627,1070,0,0,5003,1259,9712,371,0,398,836,147,26,0,10618201,6.8,5607691,17.2,6.8,36.6
240
- 2011-12-27,62614,0,26668,3362,4370,1462,0,0,7037,1663,15660,635,0,519,994,189,55,0,15105587,9.6,7773348,19.5,9.6,0.0
 
 
237
  2011-12-24,51946,0,17826,1690,2324,942,0,0,4040,1080,22290,455,0,421,740,113,25,0,9635826,7.5,5053827,22.4,7.5,21.9
238
  2011-12-25,38010,0,15500,1387,1588,738,0,0,3586,944,12968,254,0,404,498,114,29,0,7795657,5.8,4314914,19.4,5.8,25.3
239
  2011-12-26,43161,0,19835,1877,2627,1070,0,0,5003,1259,9712,371,0,398,836,147,26,0,10618201,6.8,5607691,17.2,6.8,36.6
240
+ 2011-12-27,62614,0,26668,3362,4370,1462,0,0,7037,1663,15660,635,0,519,994,189,55,0,15105587,9.6,7773348,19.5,9.6,24.8
241
+ 2011-12-28,63244,0,27441,3251,4035,1591,0,0,6862,1714,15587,715,0,684,1055,267,42,0,15248413,10.8,7727556,19.3,10.8,0.0