tamnd commited on
Commit
eaedeef
·
verified ·
1 Parent(s): fbf3467

Add 2013-08-12 — 245.0K 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 **2013-08-11** (748 days), totaling **90,844,609 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 24.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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,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,178,073 events in 2969 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 █████████████████████████████░ 272.7K
79
  02:00 █████████████████████████████░ 271.6K
80
- 03:00 ██████████████████████████████ 273.2K
81
- 04:00 █████████████░░░░░░░░░░░░░░░░ 125.3K
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,178,073 | 2969 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ████████████████████████░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 42.5M
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 | 214 | 42,491,624 | 198,558 | 13.0 GB | 4.0 GB | 2h11m | 5h40m | 2h47m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 21.8M
157
  ```
158
 
159
 
@@ -169,8 +169,8 @@ duckdb.sql("""
169
  ### Pull requests per year
170
 
171
  ```
172
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
- 2012 ████████████████████████████░ 1.5M
174
  2013 ██████████████████████████████ 1.6M
175
  ```
176
 
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 44,925,828 | 49.5% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,131,720 | 5.6% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 7,668,932 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,491,307 | 3.8% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 634,092 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 8,657,130 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,223,161 | 3.5% | Repository forks |
574
- | `creates` | CreateEvent | 12,423,521 | 13.7% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 734,915 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 17,442 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 935,759 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,765,425 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 83,079 | 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-08-12** (749 days), totaling **91,089,563 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 25.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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** — 1,183,397 events in 2990 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 █████████████████████████████░ 272.7K
79
  02:00 █████████████████████████████░ 271.6K
80
+ 03:00 ██████████████████████████████ 273.3K
81
+ 04:00 █████████████░░░░░░░░░░░░░░░░ 130.5K
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,183,397 | 2990 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ████████████████████████░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 42.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 | 215 | 42,736,578 | 198,774 | 13.1 GB | 4.1 GB | 2h12m | 5h43m | 2h48m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 21.9M
157
  ```
158
 
159
 
 
169
  ### Pull requests per year
170
 
171
  ```
172
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
+ 2012 ████████████████████████████░ 1.5M
174
  2013 ██████████████████████████████ 1.6M
175
  ```
176
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 45,049,496 | 49.5% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,145,055 | 5.6% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 7,691,917 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,501,536 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 636,931 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 8,681,170 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,233,883 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 12,451,057 | 13.7% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 737,453 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 17,852 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 938,025 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,768,779 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 83,269 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/08/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:797be45a8051af1f1b9b1c3a920ea487c9ca2015602d0a67385ffc673598ab48
3
+ size 82423
data/creates/2013/08/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:718f0aee579b075c445e920b3c85bc9c7939917add124a01c6174353e8ca13bc
3
+ size 1019038
data/deletes/2013/08/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d4a5e547f9a3d51c0a883d9a0fff713dab9112f4b105e7a8c78c578729e4ff5
3
+ size 78915
data/forks/2013/08/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8afa069b0ac2a14396963d7031a1af63f9ae6c56d2b5bf1442d15c8a945ccd74
3
+ size 281602
data/issue_comments/2013/08/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a986991de3750be2116766f3a98a334fb9998ed762d6f67e060827b3ffe07e00
3
+ size 550109
data/issues/2013/08/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a2f1c20e770371cafd791afda433102f51b045e2237433602a8ad9cfc85fde9
3
+ size 339864
data/public_events/2013/08/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a98280fc8a8b4521cd165a09d758d7509da9b9458563951b72e1e4f2d9823f2e
3
+ size 8711
data/pull_requests/2013/08/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:279e1c657b6faebbdfe14fa3f364540fa9a74a95a5c7ff61e934acd83cadac8a
3
+ size 1899895
data/pushes/2013/08/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ae019098ab7e9f3af91622af5fa918f16bfb1dd5d777403a0e994b80e8b90eb
3
+ size 20410035
data/stars/2013/08/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:219937d977108c3b7ce56abe7ba326d58b427b0ae41c4b162f56b6d8054ee250
3
+ size 597552
data/wiki_pages/2013/08/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4b0b42f4ab82b28a40a97d67cf4926bd4256d4f608c092dc7fe23a1b44440f5
3
+ size 251479
stats.csv CHANGED
@@ -746,4 +746,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
746
  2013-08-08,242914,837,123306,13417,22215,10042,0,2801,22290,10143,26600,2195,359,2519,5986,0,204,0,81926833,145.6,24919468,31.8,145.6,50.0
747
  2013-08-09,217918,868,110778,11939,18963,8755,0,2714,19751,9250,24448,1930,379,1875,6066,0,202,0,73780115,131.1,22869571,30.0,131.1,31.3
748
  2013-08-10,148162,478,79598,7341,10583,4476,0,870,14208,6549,17314,1058,295,1028,4249,0,115,0,46639501,85.7,15056636,32.7,85.7,35.5
749
- 2013-08-11,154272,469,82565,7405,11237,4784,0,1046,16049,6830,18417,1283,265,1348,2479,0,95,0,49110236,92.6,15661697,30.3,92.6,0.0
 
 
746
  2013-08-08,242914,837,123306,13417,22215,10042,0,2801,22290,10143,26600,2195,359,2519,5986,0,204,0,81926833,145.6,24919468,31.8,145.6,50.0
747
  2013-08-09,217918,868,110778,11939,18963,8755,0,2714,19751,9250,24448,1930,379,1875,6066,0,202,0,73780115,131.1,22869571,30.0,131.1,31.3
748
  2013-08-10,148162,478,79598,7341,10583,4476,0,870,14208,6549,17314,1058,295,1028,4249,0,115,0,46639501,85.7,15056636,32.7,85.7,35.5
749
+ 2013-08-11,154272,469,82565,7405,11237,4784,0,1046,16049,6830,18417,1283,265,1348,2479,0,95,0,49110236,92.6,15661697,30.3,92.6,36.3
750
+ 2013-08-12,244954,842,123668,13335,22985,10229,0,2839,24040,10722,27536,2538,410,2266,3354,0,190,0,83163806,151.6,25519623,32.1,151.6,0.0