tamnd commited on
Commit
d478140
·
verified ·
1 Parent(s): ba71d3b

Add 2013-01-01 — 95.7K 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 **2012-12-31** (534 days), totaling **48,352,985 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 11.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.6 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
 
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,11 +71,11 @@ 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-28** — 374,825 events in 722 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.9K
78
- 01:00 █████████████████░░░░░░░░░░░░ 139.9K
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -103,7 +103,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
- | 2026-03-28 | 374,825 | 722 |
107
 
108
 
109
  ### Live event schema
@@ -138,12 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
 
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
146
- | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h49m |
 
147
 
148
 
149
  ### Pushes per year
@@ -151,6 +153,7 @@ duckdb.sql("""
151
  ```
152
  2011 ████████████░░░░░░░░░░���░░░░░░░ 6.7M
153
  2012 ██████████████████████████████ 16.5M
 
154
  ```
155
 
156
 
@@ -159,6 +162,7 @@ duckdb.sql("""
159
  ```
160
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
161
  2012 ██████████████████████████████ 1.9M
 
162
  ```
163
 
164
 
@@ -167,6 +171,7 @@ duckdb.sql("""
167
  ```
168
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
169
  2012 ██████████████████████████████ 1.5M
 
170
  ```
171
 
172
 
@@ -175,6 +180,7 @@ duckdb.sql("""
175
  ```
176
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
177
  2012 ██████████████████████████████ 3.3M
 
178
  ```
179
 
180
 
@@ -558,19 +564,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 23,168,455 | 47.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,674,117 | 5.5% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,786,598 | 7.8% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,909,089 | 3.9% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 238,905 | 0.5% | Line-level PR comments |
566
- | `stars` | WatchEvent | 4,671,859 | 9.7% | Repository stars |
567
- | `forks` | ForkEvent | 1,577,491 | 3.3% | Repository forks |
568
- | `creates` | CreateEvent | 7,493,144 | 15.5% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 391,565 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 534,522 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 950,618 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
- | `public_events` | PublicEvent | 43,643 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
 
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 **2013-01-01** (535 days), totaling **48,448,690 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 12.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.6 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
 
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-28** — 382,602 events in 733 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.9K
78
+ 01:00 █████████████████░░░░░░░░░░░░ 147.7K
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 382,602 | 733 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 95.7K
142
  ```
143
 
144
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
145
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
146
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
147
+ | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
148
+ | 2013 | 1 | 95,705 | 95,705 | 27.1 MB | 8.4 MB | 22s | 52s | — |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░���░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
+ 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 48.0K
157
  ```
158
 
159
 
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ██████████████████████████████ 1.9M
165
+ 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 7.2K
166
  ```
167
 
168
 
 
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
+ 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.5K
175
  ```
176
 
177
 
 
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
+ 2013 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 9.7K
184
  ```
185
 
186
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 23,216,452 | 47.9% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 2,681,293 | 5.5% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 3,796,048 | 7.8% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 1,911,561 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 239,301 | 0.5% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 4,681,521 | 9.7% | Repository stars |
573
+ | `forks` | ForkEvent | 1,581,203 | 3.3% | Repository forks |
574
+ | `creates` | CreateEvent | 7,503,914 | 15.5% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 392,183 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 535,400 | 1.1% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 952,664 | 2.0% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 43,730 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c1deeef7bfaa017400da01f8fd3f519c7d99f0423f93af568c2a75459c0dc8c
3
+ size 35238
data/creates/2013/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a68f5ee478ef7b9d07111c41e63a78e9633597914c21d0933a040d673f147889
3
+ size 390872
data/deletes/2013/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cee09893eb2700a0b641c891f82ccbb54fa5214d837bb8cdd1d781e494da3a2
3
+ size 21850
data/forks/2013/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cfaaf57efe6fbb219a343ce1c7eb785bcffb5ad6b9e6978aceeffc37bb99786
3
+ size 107335
data/issue_comments/2013/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e598f24989f2aba2185f25bcb2c82e01be29db12290120877296ba6f60bb3c8a
3
+ size 183586
data/issues/2013/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4259ce938cb93d7a488ab4046c2787fac6919cd656dca609e3487bae537e511e
3
+ size 141148
data/public_events/2013/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc26608446f196455e7142aa7862dd2712dec17747476661d03bb5f8c92e5004
3
+ size 5283
data/pull_requests/2013/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25faf8caaf3774996a70dd0f3b65bc1954f07f8a85cc36fa8ee5c4fd88e24d61
3
+ size 510426
data/pushes/2013/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4609f5a4db93d99a0d5ac52eaf3bf615003a6db94f09853c7f7f7a5614eace9
3
+ size 7054968
data/stars/2013/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9eaaf75263da4e2748dd5e9c54db9313526eca6634d2d96019f925edaa57505
3
+ size 225163
data/wiki_pages/2013/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df08cf562739452ed938a33632bd30cc38f0153f925821c167659332548c02dc
3
+ size 147701
stats.csv CHANGED
@@ -532,4 +532,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
532
  2012-12-28,119552,606,60629,7225,10678,3867,0,781,12386,4845,14138,837,0,1099,2377,0,84,0,37947284,61.8,11874081,26.2,61.8,29.5
533
  2012-12-29,97772,451,50689,4801,6901,2787,0,470,10555,3947,13628,672,0,909,1885,0,77,0,30253279,51.0,9353183,21.8,51.0,31.7
534
  2012-12-30,96094,436,52050,4859,6958,2774,0,574,10062,3739,10871,619,0,911,2150,0,91,0,30609943,48.7,9773698,23.9,48.7,33.3
535
- 2012-12-31,87076,364,47518,3994,6618,2678,0,551,8543,3211,10316,597,0,953,1650,0,83,0,27923780,49.9,9259252,23.4,49.9,0.0
 
 
532
  2012-12-28,119552,606,60629,7225,10678,3867,0,781,12386,4845,14138,837,0,1099,2377,0,84,0,37947284,61.8,11874081,26.2,61.8,29.5
533
  2012-12-29,97772,451,50689,4801,6901,2787,0,470,10555,3947,13628,672,0,909,1885,0,77,0,30253279,51.0,9353183,21.8,51.0,31.7
534
  2012-12-30,96094,436,52050,4859,6958,2774,0,574,10062,3739,10871,619,0,911,2150,0,91,0,30609943,48.7,9773698,23.9,48.7,33.3
535
+ 2012-12-31,87076,364,47518,3994,6618,2678,0,551,8543,3211,10316,597,0,953,1650,0,83,0,27923780,49.9,9259252,23.4,49.9,40.3
536
+ 2013-01-01,95705,441,47997,7176,9450,2472,0,396,9662,3712,10770,618,0,878,2046,0,87,0,28379686,52.4,8823570,22.5,52.4,0.0