tamnd commited on
Commit
7387d19
·
verified ·
1 Parent(s): 99111cf

Add 2013-06-25 — 263.2K 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-06-24** (700 days), totaling **80,666,450 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 21.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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,13 +71,13 @@ 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,021,565 events in 2392 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 ██████████████████████████████ 272.6K
79
  02:00 █████████████████████████████░ 271.5K
80
- 03:00 ██████████████████████████░░░░ 242.2K
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06: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,021,565 | 2392 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
- 2013 ████████████████████████████░░ 32.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 | 166 | 32,313,465 | 194,659 | 9.9 GB | 3.1 GB | 1h41m | 4h08m | 2h12m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████████████████░ 16.5M
156
- 2013 ██████████████████████████████ 16.5M
157
  ```
158
 
159
 
@@ -180,7 +180,7 @@ duckdb.sql("""
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
- 2013 ███████████████████████████░░ 3.0M
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 | 39,709,387 | 49.2% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,581,443 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 6,789,370 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,107,156 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 526,276 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 7,705,618 | 9.6% | Repository stars |
573
- | `forks` | ForkEvent | 2,787,619 | 3.5% | Repository forks |
574
- | `creates` | CreateEvent | 11,227,088 | 13.9% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 652,232 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 842,167 | 1.0% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 1,552,851 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
- | `public_events` | PublicEvent | 73,476 | 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-06-25** (701 days), totaling **80,929,605 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 21.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.7 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,024,180 events in 2401 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 ██████████████████████████████ 272.6K
79
  02:00 █████████████████████████████░ 271.5K
80
+ 03:00 ██████████████████████████░░░░ 244.8K
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 1,024,180 | 2401 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 ████████████████████████████░░ 32.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 | 167 | 32,576,620 | 195,069 | 9.9 GB | 3.1 GB | 1h42m | 4h10m | 2h13m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████████████████░ 16.5M
156
+ 2013 ██████████████████████████████ 16.7M
157
  ```
158
 
159
 
 
180
  ```
181
  2011 █████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ██████████████████████████████ 3.3M
183
+ 2013 ███████████████████████████░░ 3.1M
184
  ```
185
 
186
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 39,833,354 | 49.2% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,597,626 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 6,814,640 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,117,384 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 528,980 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 7,728,361 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 2,797,179 | 3.5% | Repository forks |
574
+ | `creates` | CreateEvent | 11,259,107 | 13.9% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 654,296 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 844,823 | 1.0% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,567,172 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 73,754 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/06/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73979a452e68136034c1d7ab1fe18ca6f5427b2f99b2f7343f47400bed264456
3
+ size 86641
data/creates/2013/06/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a48bccfa38a4ea3e8106c5b93fe649c72c7f25023e43492eba55c1e27a9f70e7
3
+ size 1177306
data/deletes/2013/06/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70ed97202836289e781edd21bbde76cca1c98edcb22db41f59c0e5171012c5f0
3
+ size 77053
data/forks/2013/06/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c87f20d658c9e6de66676ea8f839643c4c997aedbf4026241ecd22964a7ab671
3
+ size 248052
data/issue_comments/2013/06/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c13d24c1aaa316b0bb35ce662f0a41d1569de1bc763b81e45ab17d13c631bde
3
+ size 554194
data/issues/2013/06/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c1eb2fbf8579650c9b3757fb672d64bc252881567d89076921e7741a548a848
3
+ size 371123
data/public_events/2013/06/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:452c961655271c641b62b315c2e553a210bf1744a0990d7037eb37768254250c
3
+ size 11537
data/pull_requests/2013/06/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68d88516210fd35b0f404bc683b780856cd6bd072f0b846bcd9d1801f681bd43
3
+ size 1840720
data/pushes/2013/06/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93517e67d93acbbde65f549400ec6450364b7cf39131a6b1daa565c194d41440
3
+ size 19815403
data/stars/2013/06/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6cc8964bc15a05c8292f8cd3d93e3f3765b2d1a1ecbe14cd36bce95fd6c4c97b
3
+ size 520044
data/wiki_pages/2013/06/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f01e2ac73c9f99261f7c8ac098b54e96cb4e8a8d8cdb36699769e1521e1a7cb4
3
+ size 812666
stats.csv CHANGED
@@ -698,4 +698,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
698
  2013-06-21,191350,769,93054,11564,15719,7077,0,1623,16201,6685,24842,1533,0,1779,10343,0,161,0,65831048,115.0,20551300,45.6,115.0,35.6
699
  2013-06-22,133961,527,63731,7047,9532,3648,0,713,12497,5109,18522,884,0,947,10686,0,118,0,39122140,70.6,12905894,29.4,70.6,36.9
700
  2013-06-23,159544,568,77589,7325,10742,4496,0,1445,15015,5338,21526,1024,0,1349,12987,0,140,0,50348954,85.7,15506708,26.2,85.7,29.4
701
- 2013-06-24,244515,1060,115917,12882,20378,9405,0,2836,22307,8627,31490,1903,0,1962,15531,0,217,0,78768715,124.3,24227424,53.0,124.3,0.0
 
 
698
  2013-06-21,191350,769,93054,11564,15719,7077,0,1623,16201,6685,24842,1533,0,1779,10343,0,161,0,65831048,115.0,20551300,45.6,115.0,35.6
699
  2013-06-22,133961,527,63731,7047,9532,3648,0,713,12497,5109,18522,884,0,947,10686,0,118,0,39122140,70.6,12905894,29.4,70.6,36.9
700
  2013-06-23,159544,568,77589,7325,10742,4496,0,1445,15015,5338,21526,1024,0,1349,12987,0,140,0,50348954,85.7,15506708,26.2,85.7,29.4
701
+ 2013-06-24,244515,1060,115917,12882,20378,9405,0,2836,22307,8627,31490,1903,0,1962,15531,0,217,0,78768715,124.3,24227424,53.0,124.3,34.2
702
+ 2013-06-25,263155,1162,123967,16183,25270,10228,0,2704,22743,9560,32019,2064,0,2656,14321,0,278,0,82890178,130.8,25514739,33.8,130.8,0.0