tamnd commited on
Commit
42fb34a
·
verified ·
1 Parent(s): 02f1d7a

Add 2013-09-19 — 188.5K 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-09-18** (780 days), totaling **98,030,737 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 27.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.3 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,15 +71,15 @@ 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,332,977 events in 3510 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
78
  01:00 █████████████████████████████░ 272.8K
79
  02:00 █████████████████████████████░ 271.6K
80
  03:00 █████████████████████████████░ 273.6K
81
- 04:00 ██████████████████████████████ 279.5K
82
- 05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
84
  07:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
85
  08: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,332,977 | 3510 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ████████████████████░░░░░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 49.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 | 246 | 49,677,752 | 201,942 | 15.2 GB | 4.7 GB | 2h29m | 6h49m | 3h13m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████░░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 25.3M
157
  ```
158
 
159
 
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 48,517,285 | 49.5% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,553,980 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 8,334,886 | 8.5% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,773,308 | 3.8% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 711,205 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 9,335,302 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,510,099 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 13,306,307 | 13.6% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 813,449 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 29,748 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 998,866 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,874,096 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 89,570 | 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-09-19** (781 days), totaling **98,219,190 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 27.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.3 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,344,781 events in 3517 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
78
  01:00 █████████████████████████████░ 272.8K
79
  02:00 █████████████████████████████░ 271.6K
80
  03:00 █████████████████████████████░ 273.6K
81
+ 04:00 ██████████████████████████████ 279.6K
82
+ 05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 11.8K
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
84
  07:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
85
  08:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 1,344,781 | 3517 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ████████████████████░░░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 49.9M
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 | 247 | 49,866,205 | 201,887 | 15.2 GB | 4.7 GB | 2h30m | 6h51m | 3h13m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████░░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 25.4M
157
  ```
158
 
159
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 48,615,239 | 49.5% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,564,102 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,351,501 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,781,595 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 713,433 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,351,823 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,517,097 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 13,327,812 | 13.6% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 815,169 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 30,107 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 1,000,703 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,877,281 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 89,761 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d48fe42ded1eeea87360c8cd7673e35eb883ebbb291134cbcff9ebce2e0fcad1
3
+ size 66038
data/creates/2013/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85e600325220b77a20047d31d3973855c82b99f14f96026ce8c5b52dcf056776
3
+ size 796783
data/deletes/2013/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3d492be68f5eae2615cdc9f18e4a07f61b21f5b7b3b51e0f0146027ea8148b3
3
+ size 58751
data/forks/2013/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da020974a78ed23f6c129706194b4eee56937cb8da8966a54e8d30bcf4ca4544
3
+ size 195962
data/issue_comments/2013/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc96880adc8bca0aeb8e069df960fbd2796e7e9788b23a8653f0115b738655c7
3
+ size 409814
data/issues/2013/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5eb3efaec574d03acd202b296f8fb6452f5fe2b60f61152d1793d717149af0d6
3
+ size 263144
data/public_events/2013/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26288f9d7283ee0635a62648d50a625216f6c807162e30c4a7f35b4a7b796401
3
+ size 8544
data/pull_requests/2013/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69019433e65eb6a0e452b5070fef62172973bb81acd13334e4042140226cd417
3
+ size 1504007
data/pushes/2013/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:879a99329c56e88efb2a5a4ec0966d129eff24b269ac4a0601fa9049895b0bb3
3
+ size 15175654
data/stars/2013/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4b52e7e71b25c73153f3f83e53722340d5cc4dd0f0ff0948174cdd73dc9a0a0
3
+ size 374167
data/wiki_pages/2013/09/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:282ad763fc575f764249f3e16d4079b7bb34ada13c30835f222225dc1948975a
3
+ size 237394
stats.csv CHANGED
@@ -778,4 +778,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
778
  2013-09-15,184870,618,99340,10463,14521,5701,0,1489,17632,6854,21387,1375,352,1520,3449,0,169,0,57502426,105.5,17837203,42.9,105.5,42.8
779
  2013-09-16,247809,1199,124175,16694,22336,10468,0,3009,23065,9836,27820,2261,458,2167,4064,0,257,0,82487968,149.5,24569095,41.1,149.5,52.5
780
  2013-09-17,243221,1178,123561,14200,21255,10112,0,3073,22907,9905,27926,2156,402,2206,4062,0,278,0,81181248,142.0,24677654,39.7,142.0,58.0
781
- 2013-09-18,240009,1225,123892,12611,21393,10192,0,3043,21442,9519,27326,2119,400,2400,4223,0,224,0,80616582,147.8,24155954,46.9,147.8,0.0
 
 
778
  2013-09-15,184870,618,99340,10463,14521,5701,0,1489,17632,6854,21387,1375,352,1520,3449,0,169,0,57502426,105.5,17837203,42.9,105.5,42.8
779
  2013-09-16,247809,1199,124175,16694,22336,10468,0,3009,23065,9836,27820,2261,458,2167,4064,0,257,0,82487968,149.5,24569095,41.1,149.5,52.5
780
  2013-09-17,243221,1178,123561,14200,21255,10112,0,3073,22907,9905,27926,2156,402,2206,4062,0,278,0,81181248,142.0,24677654,39.7,142.0,58.0
781
+ 2013-09-18,240009,1225,123892,12611,21393,10192,0,3043,21442,9519,27326,2119,400,2400,4223,0,224,0,80616582,147.8,24155954,46.9,147.8,38.5
782
+ 2013-09-19,188453,931,97954,10122,16615,8287,0,2228,16521,6998,21505,1720,359,1837,3185,0,191,0,63864631,112.6,19090258,41.1,112.6,0.0