tamnd commited on
Commit
096bbd5
·
verified ·
1 Parent(s): debd51a

Add 2013-09-07 — 181.2K 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-06** (768 days), totaling **95,259,623 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.3 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,7 +71,7 @@ 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,282,528 events in 3344 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
@@ -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,282,528 | 3344 |
107
 
108
 
109
  ### Live event schema
@@ -136,16 +136,16 @@ duckdb.sql("""
136
  ## Events per year
137
 
138
  ```
139
- 2011 ████████░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 █████████████████████░░░░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 46.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 | 234 | 46,906,638 | 200,455 | 14.3 GB | 4.4 GB | 2h22m | 6h24m | 3h02m |
149
 
150
 
151
  ### Pushes per year
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 47,120,503 | 49.5% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,377,208 | 5.6% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 8,063,877 | 8.5% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,668,359 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 682,355 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 9,093,798 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,408,505 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 12,972,615 | 13.6% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 785,937 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 24,987 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 975,183 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,830,000 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 86,881 | 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-07** (769 days), totaling **95,440,818 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.3 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,282,561 events in 3362 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 1,282,561 | 3362 |
107
 
108
 
109
  ### Live event schema
 
136
  ## Events per year
137
 
138
  ```
139
+ 2011 ████████░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 █████████████████████░░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 47.1M
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 | 235 | 47,087,833 | 200,373 | 14.4 GB | 4.5 GB | 2h22m | 6h25m | 3h03m |
149
 
150
 
151
  ### Pushes per year
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 47,210,697 | 49.5% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,387,985 | 5.6% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,088,300 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,673,392 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 683,401 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,107,557 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,414,277 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 12,995,791 | 13.6% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 787,957 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 25,290 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 976,295 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,832,544 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 87,025 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/09/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc97aa74b20610cd49394afd34be8543e0c60ef646c2cebe03c84387d99b3e1e
3
+ size 44549
data/creates/2013/09/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d615e6700a903639be3409c75cc7235c046a4ac9a138f97a832d23a51b607771
3
+ size 709765
data/deletes/2013/09/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62b5daebb8cf7f4be6d7c99a7872be44af58035c5ae0a32f27a584b89a3d69c4
3
+ size 47156
data/forks/2013/09/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0a1143c103bdfb754ddd06540401f6878563bba78523e32eff279014f90bbe1
3
+ size 163866
data/issue_comments/2013/09/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a06beca180c2259faf58a72b2f8a9722a82704bb18c5d63a9bdd2db7a59043c1
3
+ size 346012
data/issues/2013/09/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e7adb8c64b229b4e4e40f82f0f457918b10ceee17ba5074c634cf2942c662e0
3
+ size 228647
data/public_events/2013/09/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:801b4a32cd9826b7caa0f9ca44061894d6f37abaeed18d1cf8f0e22984e3f804
3
+ size 7061
data/pull_requests/2013/09/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:faebe5327c1ea6d642bc9959cac70d979320211ad8419dc23bdb04e6964fc8fd
3
+ size 963941
data/pushes/2013/09/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02f00f2e5b0f42f8f81a29b05be94fe585c729ec7d77b0b625a62e6d906f1852
3
+ size 14595190
data/stars/2013/09/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b0ecca4020a62fff6799a038265761436c5f9978e632950d05d6475c1a1c1f9
3
+ size 318954
data/wiki_pages/2013/09/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cbbb51c0e1894c6d43a093b96905754e65f7e088345178c8b7c5e9f4242ddb4
3
+ size 176928
stats.csv CHANGED
@@ -766,4 +766,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,49.5
768
  2013-09-05,236673,1114,115278,14234,22789,10044,0,3025,21951,9171,30254,2539,344,2198,3550,0,182,0,78497618,141.8,23707788,38.6,141.8,35.1
769
- 2013-09-06,195412,1105,98444,10109,17319,7866,0,2499,17224,7284,26500,2321,275,1544,2759,0,163,0,65227056,117.4,20300466,26.8,117.4,0.0
 
 
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,49.5
768
  2013-09-05,236673,1114,115278,14234,22789,10044,0,3025,21951,9171,30254,2539,344,2198,3550,0,182,0,78497618,141.8,23707788,38.6,141.8,35.1
769
+ 2013-09-06,195412,1105,98444,10109,17319,7866,0,2499,17224,7284,26500,2321,275,1544,2759,0,163,0,65227056,117.4,20300466,26.8,117.4,48.5
770
+ 2013-09-07,181195,892,90194,10777,24423,5033,0,1046,13759,5772,23176,2020,303,1112,2544,0,144,0,52691284,88.7,17602069,32.7,88.7,0.0