tamnd commited on
Commit
d56b803
·
verified ·
1 Parent(s): a14b4e3

Add 2013-03-03 — 165.1K 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 **2013-03-02** (586 days), totaling **57,480,343 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 14.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.4 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,12 +71,12 @@ 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** — 572,483 events in 1204 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.1K
78
  01:00 ██████████████████████████████ 272.4K
79
- 02:00 ███████░░░░░░░░░░░░░░░░░░░░░░░ 65.0K
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
82
  05: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 | 572,483 | 1204 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
- 2013 ███████░░░░░░░░░░░░░░░░░░░░░░ 9.1M
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 | 52 | 9,127,358 | 175,526 | 2.8 GB | 869.5 MB | 28m48s | 59m16s | 34m07s |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
- 2013 ████████░░░░░░░░░░░░░░░░░░░░░░ 4.6M
157
  ```
158
 
159
 
@@ -162,7 +162,7 @@ duckdb.sql("""
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ██████████████████████████████ 1.9M
165
- 2013 ████████░░░░░░░░░░░░░░░░░░░░░░ 547.9K
166
  ```
167
 
168
 
@@ -171,7 +171,7 @@ duckdb.sql("""
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
- 2013 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 329.3K
175
  ```
176
 
177
 
@@ -180,7 +180,7 @@ duckdb.sql("""
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
- 2013 ████████░░░░░░░░░░░░░░░░░░░░░░ 869.3K
184
  ```
185
 
186
 
@@ -564,19 +564,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 27,785,825 | 48.3% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 3,222,063 | 5.6% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 4,653,030 | 8.1% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 2,238,424 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 314,117 | 0.5% | Line-level PR comments |
572
- | `stars` | WatchEvent | 5,541,201 | 9.6% | Repository stars |
573
- | `forks` | ForkEvent | 1,927,517 | 3.4% | Repository forks |
574
- | `creates` | CreateEvent | 8,567,533 | 14.9% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 462,052 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 624,784 | 1.1% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 1,119,069 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
579
- | `public_events` | PublicEvent | 51,997 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
 
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-03-03** (587 days), totaling **57,645,471 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 14.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.4 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-28** — 577,029 events in 1218 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.1K
78
  01:00 ██████████████████████████████ 272.4K
79
+ 02:00 ███████░░░░░░░░░░░░░░░░░░░░░░░ 69.6K
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 577,029 | 1218 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 ███████░░░░░░░░░░░░░░░░░░░░░░ 9.3M
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 | 53 | 9,292,486 | 175,329 | 2.8 GB | 884.8 MB | 29m39s | 1h00m | 34m44s |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
+ 2013 ████████░░░░░░░░░░░░░░░░░░░░░░ 4.7M
157
  ```
158
 
159
 
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ██████████████████████████████ 1.9M
165
+ 2013 ████████░░░░░░░░░░░░░░░░░░░░░░ 557.9K
166
  ```
167
 
168
 
 
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
+ 2013 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 334.9K
175
  ```
176
 
177
 
 
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
+ 2013 ████████░░░░░░░░░░░░░░░░░░░░░░ 885.0K
184
  ```
185
 
186
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 27,873,225 | 48.4% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 3,232,051 | 5.6% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 4,665,889 | 8.1% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 2,243,970 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 315,216 | 0.5% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 5,556,884 | 9.6% | Repository stars |
573
+ | `forks` | ForkEvent | 1,933,526 | 3.4% | Repository forks |
574
+ | `creates` | CreateEvent | 8,587,205 | 14.9% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 463,245 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 626,275 | 1.1% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,122,066 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 52,134 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/03/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfffdf51b0ae391d774049727ef265178417e12bc22c147ef1e3d1f6b059c3a0
3
+ size 56600
data/creates/2013/03/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9a0be9c6522aa973ed94da01083071cc0bf900f57d12bb38bfa1b6cb6164843
3
+ size 691239
data/deletes/2013/03/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4320f76904ea679c655fc0208146d13c5eab904b6a4225852a3b2842b8fc4b83
3
+ size 43771
data/forks/2013/03/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1940d5e9b8b09b7e362591e98bc0f8b6ce5cc40af7e44d3c1f1db38aad6d498
3
+ size 163365
data/issue_comments/2013/03/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8846be1dd7db7fff5e9a8d0bcd01b3c8e92e953d8be08eb3f53eda8f4cb6f97c
3
+ size 309053
data/issues/2013/03/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cca5aa2e3ca820a4655b17871978a6c821073694f180ba46aca0ad0dbe7e16bb
3
+ size 234058
data/public_events/2013/03/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c572d55aa0a89b817cd6d95f8db6c63707c92d80424eeb0205cf21713f23da08
3
+ size 6735
data/pull_requests/2013/03/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:771bbdef8e971b0949583e816e12b7530a620dc97e8b13e93fce91c12a524c1a
3
+ size 1078091
data/pushes/2013/03/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78af58bdad0a2a84607ebbea44deeb31138299d6e9e39bf3a68e6e7349a825ea
3
+ size 12924815
data/stars/2013/03/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa2d943cb8ce30e85b968ed68dd77290de6d26b4e12b1e9ecb5583b299282722
3
+ size 356471
data/wiki_pages/2013/03/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f2ca971b1a049139687114ae1feec4eb3ba6c0052a59fe00833812e50edecd9
3
+ size 158866
stats.csv CHANGED
@@ -584,4 +584,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
584
  2013-02-27,212165,1438,106620,13014,21043,8316,0,1828,19375,8157,24360,1758,0,2508,3526,0,222,0,69852871,122.0,21685441,29.3,122.0,38.5
585
  2013-02-28,212690,1509,109295,12766,19278,8108,0,1907,19634,8000,24523,1710,0,2248,3492,0,220,0,70088719,121.4,21858285,37.6,121.4,107.1
586
  2013-03-01,190848,1394,96604,11302,17690,7579,0,1790,16832,7267,23569,1548,0,2016,3092,0,165,0,62437659,110.8,19263803,47.8,110.8,41.8
587
- 2013-03-02,146742,973,78545,8756,11266,4706,0,785,12834,5301,18786,1062,0,1295,2309,0,124,0,48946335,88.8,15342522,28.3,88.8,0.0
 
 
584
  2013-02-27,212165,1438,106620,13014,21043,8316,0,1828,19375,8157,24360,1758,0,2508,3526,0,222,0,69852871,122.0,21685441,29.3,122.0,38.5
585
  2013-02-28,212690,1509,109295,12766,19278,8108,0,1907,19634,8000,24523,1710,0,2248,3492,0,220,0,70088719,121.4,21858285,37.6,121.4,107.1
586
  2013-03-01,190848,1394,96604,11302,17690,7579,0,1790,16832,7267,23569,1548,0,2016,3092,0,165,0,62437659,110.8,19263803,47.8,110.8,41.8
587
+ 2013-03-02,146742,973,78545,8756,11266,4706,0,785,12834,5301,18786,1062,0,1295,2309,0,124,0,48946335,88.8,15342522,28.3,88.8,36.4
588
+ 2013-03-03,165128,1054,87400,9988,12859,5546,0,1099,15683,6009,19672,1193,0,1491,2997,0,137,0,51424565,97.6,16023064,51.0,97.6,0.0