tamnd commited on
Commit
082e321
·
verified ·
1 Parent(s): d46eeba

Add 2013-07-24 — 243.3K 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-07-23** (729 days), totaling **86,796,183 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 23.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.2 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,14 +71,14 @@ 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** — 1,119,737 events in 2786 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 ██████████████████████████████ 272.7K
79
  02:00 █████████████████████████████░ 271.6K
80
  03:00 █████████████████████████████░ 272.6K
81
- 04:00 ███████░░░░░░░░░░░░░░░░░░░░░░ 67.6K
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
84
  07: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 | 1,119,737 | 2786 |
107
 
108
 
109
  ### Live event schema
@@ -136,24 +136,24 @@ duckdb.sql("""
136
  ## Events per year
137
 
138
  ```
139
- 2011 ██████████░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████░░░░ 34.3M
141
- 2013 ██████████████████████████████ 38.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 | 195 | 38,443,198 | 197,144 | 11.7 GB | 3.7 GB | 1h59m | 5h05m | 2h35m |
149
 
150
 
151
  ### Pushes per year
152
 
153
  ```
154
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 6.7M
155
- 2012 ████████████████████████░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 19.7M
157
  ```
158
 
159
 
@@ -162,7 +162,7 @@ duckdb.sql("""
162
  ```
163
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 █████████████████████████░░░░░ 1.9M
165
- 2013 ██████████████████████████████ 2.2M
166
  ```
167
 
168
 
@@ -171,7 +171,7 @@ duckdb.sql("""
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
- 2013 ███████████████████████████░░ 1.4M
175
  ```
176
 
177
 
@@ -179,7 +179,7 @@ duckdb.sql("""
179
 
180
  ```
181
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 1.4M
182
- 2012 ██████████████████████████░░░ 3.3M
183
  2013 ██████████████████████████████ 3.6M
184
  ```
185
 
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 42,841,199 | 49.4% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,913,600 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 7,318,870 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,335,051 | 3.8% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 589,853 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 8,272,263 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,051,454 | 3.5% | Repository forks |
574
- | `creates` | CreateEvent | 11,956,252 | 13.8% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 701,374 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 10,370 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 898,934 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,690,716 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 79,664 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
 
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-07-24** (730 days), totaling **87,039,454 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 23.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.2 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** — 1,130,750 events in 2798 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 ██████████████████████████████ 272.7K
79
  02:00 █████████████████████████████░ 271.6K
80
  03:00 █████████████████████████████░ 272.6K
81
+ 04:00 ███████░░░░░░░░░░░░░░░░░░░░░░ 78.6K
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
84
  07:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 1,130,750 | 2798 |
107
 
108
 
109
  ### Live event schema
 
136
  ## Events per year
137
 
138
  ```
139
+ 2011 ██████████░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 38.7M
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 | 196 | 38,686,469 | 197,379 | 11.8 GB | 3.7 GB | 1h59m | 5h07m | 2h36m |
149
 
150
 
151
  ### Pushes per year
152
 
153
  ```
154
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 6.7M
155
+ 2012 ████████████████████████░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 19.8M
157
  ```
158
 
159
 
 
162
  ```
163
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 █████████████████████████░░░░░ 1.9M
165
+ 2013 ██████████████████████████████ 2.3M
166
  ```
167
 
168
 
 
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
+ 2013 ███████████████████████████░░ 1.4M
175
  ```
176
 
177
 
 
179
 
180
  ```
181
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 1.4M
182
+ 2012 ██████████████████████████░░░ 3.3M
183
  2013 ██████████████████████████████ 3.6M
184
  ```
185
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 42,964,127 | 49.4% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,927,228 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 7,340,671 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,344,786 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 593,102 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 8,294,456 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,061,756 | 3.5% | Repository forks |
574
+ | `creates` | CreateEvent | 11,985,775 | 13.8% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 703,446 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 10,864 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 901,365 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,694,283 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 79,860 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9bf8328715ec662422b3b6a84a68e3b12f4aac7425012d30c9c656b94afeda4
3
+ size 82908
data/creates/2013/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7879335954cb57e2905249bce9ff7f3e98757e2eab51ed2e53b8aad1a8f0c624
3
+ size 1102113
data/deletes/2013/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64b05b6d6569ea6daf0ab85e5d229acc4d5450ea7c41c5cffcefbdf65d71a664
3
+ size 69504
data/forks/2013/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ecd2310f8677c1060e97956d41ab3037bf41f626dd61c4234929575f9fc196f
3
+ size 272361
data/issue_comments/2013/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2d7d01dd08438ab8afb9684ed999891dfd79057ebe86ea21cded46ffe18df46
3
+ size 530076
data/issues/2013/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fdb93c941b3eb898d98640dd1d5c3d0fa15802539560a491ebb52d4d38ddfa8a
3
+ size 337767
data/public_events/2013/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28234494e94ec1f735bb15ac6e68b2de20327205d54f0a2773961bbc179d33dd
3
+ size 9004
data/pull_requests/2013/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82145cccdfcad62e003f78db0981221c4316ede8fa83f94d5b3469d1bd4380c4
3
+ size 1789713
data/pushes/2013/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b341d5b9cf67d243a4894271b23232b8ecf9bc6f8825590330b958257243971
3
+ size 19836700
data/stars/2013/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c64c3332ef846112a422e5eef603c55dea7dc631467186e4e4cbd6a90081617a
3
+ size 548491
data/wiki_pages/2013/07/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2d0772de30ac91f72eb337e01df95e17556b92aec198c3ab0879eca11fae81c
3
+ size 190277
stats.csv CHANGED
@@ -727,4 +727,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
727
  2013-07-20,139140,601,77045,6679,10070,4058,0,870,12809,5709,16470,1026,321,960,2409,0,113,0,46477479,84.1,15103075,28.7,84.1,43.1
728
  2013-07-21,158614,475,85744,8429,11591,4867,0,1046,16463,6809,17773,1158,258,1203,2680,0,118,0,49582485,84.8,15670996,27.8,84.8,32.2
729
  2013-07-22,247934,1027,127654,12917,22295,9722,0,2990,23697,11359,27328,2023,325,2402,3975,0,220,0,83615087,138.6,26835653,44.1,138.6,49.5
730
- 2013-07-23,251471,1041,128842,13744,22309,10301,0,2901,23730,11057,28261,2103,403,2453,4093,0,233,0,85364544,142.6,27125050,42.9,142.6,0.0
 
 
727
  2013-07-20,139140,601,77045,6679,10070,4058,0,870,12809,5709,16470,1026,321,960,2409,0,113,0,46477479,84.1,15103075,28.7,84.1,43.1
728
  2013-07-21,158614,475,85744,8429,11591,4867,0,1046,16463,6809,17773,1158,258,1203,2680,0,118,0,49582485,84.8,15670996,27.8,84.8,32.2
729
  2013-07-22,247934,1027,127654,12917,22295,9722,0,2990,23697,11359,27328,2023,325,2402,3975,0,220,0,83615087,138.6,26835653,44.1,138.6,49.5
730
+ 2013-07-23,251471,1041,128842,13744,22309,10301,0,2901,23730,11057,28261,2103,403,2453,4093,0,233,0,85364544,142.6,27125050,42.9,142.6,31.9
731
+ 2013-07-24,243271,1152,122928,13628,21801,9735,0,3249,22193,10302,29523,2072,494,2431,3567,0,196,0,81431446,137.8,24768914,31.7,137.8,0.0