tamnd commited on
Commit
17ef6c8
·
verified ·
1 Parent(s): 1881ba6

Add 2013-01-28 — 197.6K 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-01-27** (561 days), totaling **52,729,224 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 13.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.0 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,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** — 455,940 events in 921 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 235.0K
78
- 01:00 ████████████████████████████░░ 220.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 | 455,940 | 921 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
- 2013 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.4M
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 | 27 | 4,376,239 | 162,082 | 1.3 GB | 414.7 MB | 15m13s | 24m49s | 16m28s |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
- 2013 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.2M
157
  ```
158
 
159
 
@@ -162,7 +162,7 @@ duckdb.sql("""
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ██████████████████████████████ 1.9M
165
- 2013 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 256.6K
166
  ```
167
 
168
 
@@ -171,7 +171,7 @@ duckdb.sql("""
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
- 2013 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156.2K
175
  ```
176
 
177
 
@@ -180,7 +180,7 @@ duckdb.sql("""
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
- 2013 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 423.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 | 25,392,812 | 48.2% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 2,930,751 | 5.6% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 4,182,950 | 7.9% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 2,065,269 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 274,646 | 0.5% | Line-level PR comments |
572
- | `stars` | WatchEvent | 5,095,155 | 9.7% | Repository stars |
573
- | `forks` | ForkEvent | 1,751,545 | 3.3% | Repository forks |
574
- | `creates` | CreateEvent | 8,011,815 | 15.2% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 425,152 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 577,714 | 1.1% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 1,033,597 | 2.0% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
579
- | `public_events` | PublicEvent | 47,635 | 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-01-28** (562 days), totaling **52,926,830 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 13.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.0 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** — 458,057 events in 927 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 235.0K
78
+ 01:00 ████████████████████████████░░ 223.1K
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 | 458,057 | 927 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.6M
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 | 28 | 4,573,845 | 163,351 | 1.4 GB | 433.7 MB | 15m46s | 25m18s | 16m55s |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
+ 2013 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.3M
157
  ```
158
 
159
 
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ██████████████████████████████ 1.9M
165
+ 2013 ███░░░░░░░░░░░░░░░░░░░��░░░░░░ 267.6K
166
  ```
167
 
168
 
 
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
+ 2013 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 163.7K
175
  ```
176
 
177
 
 
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
+ 2013 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 443.1K
184
  ```
185
 
186
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 25,491,805 | 48.2% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 2,941,693 | 5.6% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 4,201,299 | 7.9% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 2,072,822 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 276,119 | 0.5% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 5,114,932 | 9.7% | Repository stars |
573
+ | `forks` | ForkEvent | 1,759,595 | 3.3% | Repository forks |
574
+ | `creates` | CreateEvent | 8,035,088 | 15.2% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 426,741 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 579,860 | 1.1% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,037,461 | 2.0% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 47,813 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/01/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4f01efe10a59c51d88b3791658a1fc2c41e146bfa6ef5fa14b4de488409c66b
3
+ size 73373
data/creates/2013/01/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdc7d4de48bb98b76b5748d4d4780f67e4598fb1ba8d7e44395367ffefd5970c
3
+ size 927454
data/deletes/2013/01/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f44223833dc7c18feaefeeb9ab15dc336404f20250c74a1575e6e314a188f94e
3
+ size 53393
data/forks/2013/01/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27d44fb0bbe334ce0717922858144d9f8128ed7553b1b17040ead47471b9c620
3
+ size 218694
data/issue_comments/2013/01/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7eb5348ceee32d0662243ab10dee3a269e8cf06fe181ac11ad001ba20ac95d78
3
+ size 433226
data/issues/2013/01/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22ec696b67c677447b55808de9f1267b9e42ddccc4b1395d389068c59ce3bc34
3
+ size 279748
data/public_events/2013/01/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1f92f02d6ca36d182d2c59a179b009be725fc073b7f31177c42b1830a4bab9c
3
+ size 8303
data/pull_requests/2013/01/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5aca8ac743dd037e91ec18d9e7adb500fb5657caba8321fc0e8bc084189685b6
3
+ size 1465322
data/pushes/2013/01/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:192be893fb3b6041d320dd05ac943fb19bd76b48209720c9984f70d21da6191b
3
+ size 15720845
data/stars/2013/01/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d85f3b2fd50450f8d5cc5f02cdd61bf5e7115a7dd4cf4d1a7886a9405ff8555
3
+ size 447848
data/wiki_pages/2013/01/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:872075dde8ac04c7fe7a19b77416d82e2c82d975903d40793af510770935552a
3
+ size 272637
stats.csv CHANGED
@@ -559,4 +559,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
559
  2013-01-24,199064,1297,100069,9971,17884,7544,0,1856,20566,8568,23556,1451,0,2246,3860,0,196,0,66332904,95.4,19959127,46.6,95.4,40.9
560
  2013-01-25,175763,1459,89942,8933,15471,6862,0,1494,17532,6920,20661,1455,0,1602,3254,0,178,0,58971483,81.0,17477148,29.8,81.0,23.9
561
  2013-01-26,144468,995,76196,11529,11504,4280,0,640,13046,5321,16422,1076,0,1045,2310,0,104,0,44362972,57.9,13860302,23.7,57.9,34.5
562
- 2013-01-27,151477,852,81089,8661,12351,4371,0,854,14753,5690,17601,965,0,1412,2763,0,115,0,47315455,44.4,15104285,27.1,44.4,0.0
 
 
559
  2013-01-24,199064,1297,100069,9971,17884,7544,0,1856,20566,8568,23556,1451,0,2246,3860,0,196,0,66332904,95.4,19959127,46.6,95.4,40.9
560
  2013-01-25,175763,1459,89942,8933,15471,6862,0,1494,17532,6920,20661,1455,0,1602,3254,0,178,0,58971483,81.0,17477148,29.8,81.0,23.9
561
  2013-01-26,144468,995,76196,11529,11504,4280,0,640,13046,5321,16422,1076,0,1045,2310,0,104,0,44362972,57.9,13860302,23.7,57.9,34.5
562
+ 2013-01-27,151477,852,81089,8661,12351,4371,0,854,14753,5690,17601,965,0,1412,2763,0,115,0,47315455,44.4,15104285,27.1,44.4,27.4
563
+ 2013-01-28,197606,1419,98993,10942,18349,7553,0,1473,19777,8050,23273,1589,0,2146,3864,0,178,0,65880765,28.7,19900843,32.9,28.7,0.0