tamnd commited on
Commit
7e38097
·
verified ·
1 Parent(s): 7a21cc0

Add 2013-05-25 — 137.6K 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-05-24** (669 days), totaling **74,443,079 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 19.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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** — 918,499 events in 2107 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.2K
@@ -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 | 918,499 | 2107 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
- 2013 ██████████████████████░░░░░░░░ 26.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 | 135 | 26,090,094 | 193,259 | 7.9 GB | 2.5 GB | 1h21m | 3h21m | 1h49m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
- 2013 ████████████████████████░░░░░░ 13.3M
157
  ```
158
 
159
 
@@ -171,7 +171,7 @@ duckdb.sql("""
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
- 2013 ██████████████████░░░░░░░░░░░░ 962.6K
175
  ```
176
 
177
 
@@ -564,19 +564,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 36,507,980 | 49.0% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,215,031 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 6,237,800 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 2,871,728 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 467,405 | 0.6% | Line-level PR comments |
572
- | `stars` | WatchEvent | 7,140,501 | 9.6% | Repository stars |
573
- | `forks` | ForkEvent | 2,560,681 | 3.4% | Repository forks |
574
- | `creates` | CreateEvent | 10,496,689 | 14.1% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 600,762 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 785,472 | 1.1% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 1,408,236 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
- | `public_events` | PublicEvent | 67,288 | 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-05-25** (670 days), totaling **74,580,631 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 19.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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** — 918,517 events in 2113 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.2K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 918,517 | 2113 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 ██████████████████████░░░░░░░░ 26.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 | 136 | 26,227,646 | 192,850 | 8.0 GB | 2.5 GB | 1h22m | 3h22m | 1h50m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
+ 2013 ████████████████████████░░░░░░ 13.4M
157
  ```
158
 
159
 
 
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
+ 2013 ██████████████████░░░░░░░░░░░░ 967.2K
175
  ```
176
 
177
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 36,584,549 | 49.1% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,221,956 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 6,248,080 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 2,876,252 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 468,163 | 0.6% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 7,153,133 | 9.6% | Repository stars |
573
+ | `forks` | ForkEvent | 2,565,689 | 3.4% | Repository forks |
574
+ | `creates` | CreateEvent | 10,512,522 | 14.1% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 601,887 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 786,488 | 1.1% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,410,384 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 67,423 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/05/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4860147fa2a2c4a5cd18227d3a488b33880b6f4cc757a0326052c733ede43cb4
3
+ size 45852
data/creates/2013/05/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ee5b4d9da08f70e922cf6bc549a13b7374b926988a4f110f58eb3feb5fd198f
3
+ size 611407
data/deletes/2013/05/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3795bece6ff43a21fdded58dbbf79842d797e268760810260fd57fd184ee1d1e
3
+ size 36619
data/forks/2013/05/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4d28c23fa2cd8bd22406922615fa5d18dcb8e7ce77f43f6d3ab9f9fa0e04211
3
+ size 138749
data/issue_comments/2013/05/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c357815fc82bf4081669caf52799a8652c49812035f760072372c233c4fb6cb
3
+ size 250604
data/issues/2013/05/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa79f9455a5b88888ce0dbdec258de2d09e676fcd6ab4d3cfec8ab359610a1c1
3
+ size 180463
data/public_events/2013/05/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76285589d11726da937ef49c14bfe82f15602304d8992eb871ef87cf41bbbae2
3
+ size 6724
data/pull_requests/2013/05/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f557dc7bd8fd5ee2019cda4f996b9f97c100b7f1dc778d5496b38b2cf55a50e
3
+ size 868135
data/pushes/2013/05/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15ad2c2c4a06ac3653e199fca5488f2e521b6add474ca90613a42a7ea02e37ba
3
+ size 12290421
data/stars/2013/05/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7bffd71544af13dd37d1640f034995f3c1fd41dcac819a8be3eff04bc82c370
3
+ size 362552
data/wiki_pages/2013/05/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f17b20be5a06552e16857ae2c52a11298456b092945b345a851d5ba16d97be5
3
+ size 158638
stats.csv CHANGED
@@ -667,4 +667,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
667
  2013-05-21,232608,1179,119986,14323,21060,9544,0,2214,22019,8833,25756,1892,0,2016,3577,0,209,0,78334622,46.3,24263366,49.5,46.3,68.6
668
  2013-05-22,232362,1153,119862,14839,21710,9538,0,2502,21025,8626,25045,1845,0,2238,3741,0,238,0,79889165,40.6,24266430,28.2,40.6,50.1
669
  2013-05-23,229190,1208,119918,12465,20832,9547,0,2376,21265,8466,25448,1851,0,2025,3572,0,217,0,75883535,32.6,23515581,27.0,32.6,62.8
670
- 2013-05-24,205849,999,106282,16066,17432,8422,0,1767,18540,7150,22119,1802,0,1886,3203,0,181,0,69192593,33.5,21179914,50.6,33.5,0.0
 
 
667
  2013-05-21,232608,1179,119986,14323,21060,9544,0,2214,22019,8833,25756,1892,0,2016,3577,0,209,0,78334622,46.3,24263366,49.5,46.3,68.6
668
  2013-05-22,232362,1153,119862,14839,21710,9538,0,2502,21025,8626,25045,1845,0,2238,3741,0,238,0,79889165,40.6,24266430,28.2,40.6,50.1
669
  2013-05-23,229190,1208,119918,12465,20832,9547,0,2376,21265,8466,25448,1851,0,2025,3572,0,217,0,75883535,32.6,23515581,27.0,32.6,62.8
670
+ 2013-05-24,205849,999,106282,16066,17432,8422,0,1767,18540,7150,22119,1802,0,1886,3203,0,181,0,69192593,33.5,21179914,50.6,33.5,32.3
671
+ 2013-05-25,137552,599,76569,6925,10280,4524,0,758,12632,5008,15833,1125,0,1016,2148,0,135,0,44954441,22.4,14950164,42.6,22.4,0.0