tamnd commited on
Commit
6999432
·
verified ·
1 Parent(s): 0461ad6

Add 2013-09-04 — 236.8K 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-09-03** (765 days), totaling **94,590,761 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 26.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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,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,275,594 events in 3318 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 █████████████████████████████░ 272.8K
79
  02:00 █████████████████████████████░ 271.6K
80
  03:00 ██████████████████████████████ 273.6K
81
- 04:00 ████████████████████████░░░░░░ 222.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,275,594 | 3318 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████░░░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 46.2M
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 | 231 | 46,237,776 | 200,163 | 14.1 GB | 4.4 GB | 2h20m | 6h17m | 3h00m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ████████████████████░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 23.6M
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 | 46,790,746 | 49.5% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,338,456 | 5.6% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 8,000,687 | 8.5% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,640,564 | 3.8% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 674,034 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 9,033,391 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,382,956 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 12,885,774 | 13.6% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 778,457 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 24,026 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 969,114 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,820,222 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 86,270 | 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-04** (766 days), totaling **94,827,538 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 26.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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** — 1,280,626 events in 3329 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 █████████████████████████████░ 272.8K
79
  02:00 █████████████████████████████░ 271.6K
80
  03:00 ██████████████████████████████ 273.6K
81
+ 04:00 ████████████████████████░░░░░░ 227.3K
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,280,626 | 3329 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 46.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 | 232 | 46,474,553 | 200,321 | 14.2 GB | 4.4 GB | 2h20m | 6h19m | 3h01m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ████████████████████░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 23.7M
157
  ```
158
 
159
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 46,906,781 | 49.5% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,352,865 | 5.6% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,023,769 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,650,449 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 676,831 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,054,623 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,392,050 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 12,915,861 | 13.6% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 781,077 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 24,368 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 971,441 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,823,691 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 86,536 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:586e33af81357ea54ea9059207f263533c84ba2a4fb842dfe47486e789b3c918
3
+ size 80028
data/creates/2013/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e58590ecb7eb9b6b1bd0d03cc6d531b1ad86e83a22014a877999ae3f2cf8524
3
+ size 999349
data/deletes/2013/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d179ab9bd91ce0a332a0bc29dbf29bbf5dfc8f47d0017fbc60be6bf1740d249c
3
+ size 73372
data/forks/2013/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea4a20415cef1c0ad8659dedeeebb0fa7f125dc637f7b028a49afce4ac5e81d9
3
+ size 249927
data/issue_comments/2013/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f7d2e712762960248e7df1639e1a1f40a6eadf022ec503248dcb1474a3719fa
3
+ size 541578
data/issues/2013/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ecae9c392472a59fb1f2eafe0b29f613fa415bab98cb258bf8eddee633f6ad4c
3
+ size 347204
data/public_events/2013/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27749e2c10ccb56344fabc149c562da6377d58221a24a391301111148f8d22fc
3
+ size 10932
data/pull_requests/2013/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a5e4b89803b31e568a5ce6fcc9181e83755fad78b316f58a46aedb01e18a751
3
+ size 1833258
data/pushes/2013/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:176feeece502d5cc874fae19e3016f52f2506940a33df1308d75dc5261e1e800
3
+ size 19473985
data/stars/2013/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d84a118f5c25855c25375e39a20f6ec49caef7698bcb1f3d8bd0d15310b64fff
3
+ size 487391
data/wiki_pages/2013/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:311b066b892655bb1b4f1e675b34216468636a10855e673ec39966074540a983
3
+ size 287223
stats.csv CHANGED
@@ -763,4 +763,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
763
  2013-08-31,146385,542,76003,7149,10178,4502,0,846,14365,5908,21242,1812,252,1139,2319,0,128,0,44013485,75.4,13863470,1.7,75.4,52.1
764
  2013-09-01,168360,535,88029,8384,12517,5369,0,1150,17210,6744,22192,2062,388,1175,2466,0,139,0,52673325,90.2,16749505,15.1,90.2,36.7
765
  2013-09-02,228841,957,116037,12084,18920,8732,0,2176,23076,9207,29221,2652,447,1931,3195,0,206,0,73603009,129.9,22200386,35.0,129.9,103.7
766
- 2013-09-03,247135,1109,122237,14067,23772,10266,0,3102,23103,9301,30695,2870,395,2415,3609,0,194,0,83051343,152.4,25777019,36.9,152.4,0.0
 
 
763
  2013-08-31,146385,542,76003,7149,10178,4502,0,846,14365,5908,21242,1812,252,1139,2319,0,128,0,44013485,75.4,13863470,1.7,75.4,52.1
764
  2013-09-01,168360,535,88029,8384,12517,5369,0,1150,17210,6744,22192,2062,388,1175,2466,0,139,0,52673325,90.2,16749505,15.1,90.2,36.7
765
  2013-09-02,228841,957,116037,12084,18920,8732,0,2176,23076,9207,29221,2652,447,1931,3195,0,206,0,73603009,129.9,22200386,35.0,129.9,103.7
766
+ 2013-09-03,247135,1109,122237,14067,23772,10266,0,3102,23103,9301,30695,2870,395,2415,3609,0,194,0,83051343,152.4,25777019,36.9,152.4,54.1
767
+ 2013-09-04,236777,1132,116035,14409,23082,9885,0,2797,21232,9094,30087,2620,342,2327,3469,0,266,0,79175985,144.2,24384247,45.5,144.2,0.0