tamnd commited on
Commit
a59087b
·
verified ·
1 Parent(s): 13bc94a

Add 2013-06-02 — 156.7K 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-01** (677 days), totaling **75,996,186 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 20.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.2 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,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** — 940,976 events in 2176 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 | 940,976 | 2176 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
- 2013 ████████████████████████░░░░░░ 27.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 | 143 | 27,643,201 | 193,309 | 8.4 GB | 2.6 GB | 1h27m | 3h30m | 1h55m |
149
 
150
 
151
  ### Pushes per year
@@ -564,19 +564,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 37,320,468 | 49.1% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,308,035 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 6,382,119 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 2,929,208 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 480,527 | 0.6% | Line-level PR comments |
572
- | `stars` | WatchEvent | 7,284,276 | 9.6% | Repository stars |
573
- | `forks` | ForkEvent | 2,615,769 | 3.4% | Repository forks |
574
- | `creates` | CreateEvent | 10,669,590 | 14.0% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 613,225 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 799,009 | 1.1% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 1,434,571 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
- | `public_events` | PublicEvent | 68,688 | 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-02** (678 days), totaling **76,152,914 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 20.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.2 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** — 940,992 events in 2180 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 | 940,992 | 2180 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 ████████████████████████░░░░░░ 27.8M
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 | 144 | 27,799,929 | 193,055 | 8.5 GB | 2.6 GB | 1h27m | 3h32m | 1h55m |
149
 
150
 
151
  ### Pushes per year
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 37,407,458 | 49.1% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,315,715 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 6,393,605 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 2,934,164 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 481,556 | 0.6% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 7,298,608 | 9.6% | Repository stars |
573
+ | `forks` | ForkEvent | 2,621,211 | 3.4% | Repository forks |
574
+ | `creates` | CreateEvent | 10,688,037 | 14.0% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 614,352 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 800,606 | 1.1% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,437,376 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 68,843 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/06/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a2ca507398464e72a233b8738ae3832066bcbde96ddf704739e561a1b3f7c05
3
+ size 57357
data/creates/2013/06/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a29c3e25cdce2ae9a529eade818a244a752bd16fdbf8c22114ae9ebd538604c
3
+ size 724527
data/deletes/2013/06/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef5d385d19c6a85cc3fcc8e4f33d0efaa8340e89a4f76d8a4d882a32a1a2fb05
3
+ size 39745
data/forks/2013/06/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:156ccb00fedf69429822e17ba0508e6f202f441ab82729a657b2d52a975c6f8f
3
+ size 149525
data/issue_comments/2013/06/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4eace79c2f02ec685b13e8e72c2765c7dbfe65503036b70df096333fcf9fb9d
3
+ size 285244
data/issues/2013/06/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e2120eb11d7d2f5f29b9b530b1d11e00269fcd708809e7ec9caab2f7a67bf2f
3
+ size 201133
data/public_events/2013/06/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2602da9faa369d31596a569a28d44df93417a3fa2995763096b7ec0f77cd91e9
3
+ size 7345
data/pull_requests/2013/06/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1d89587adc43d47d549ba30e25e4c20dea89caabb67d72792dd117eac362173
3
+ size 945253
data/pushes/2013/06/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79797b6056a084ad31734c3b030ffa734e2918be2c9a799741767aa5b443da15
3
+ size 13038952
data/stars/2013/06/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:092df2ba8c7d1e94a63461371e326bfa91136a1aa04ece5a20b65970ac0c9e60
3
+ size 325923
data/wiki_pages/2013/06/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d00019ada95dc2f7cd000265b6da812a7470ce2d260db25f76822d61dcf46894
3
+ size 147836
stats.csv CHANGED
@@ -675,4 +675,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
675
  2013-05-29,234172,1168,121158,12730,22097,9753,0,2338,22532,8549,25687,1969,0,2090,3868,0,233,0,78227941,78.9,28611494,57.2,78.9,29.7
676
  2013-05-30,224877,1037,116546,12239,20496,8991,0,2358,20666,8028,26023,1911,0,2191,4182,0,209,0,73737441,120.9,23119405,64.1,120.9,31.1
677
  2013-05-31,193150,955,100315,10404,17848,8019,0,1922,17841,6505,22735,1653,0,1624,3150,0,179,0,64285499,135.0,20275990,28.9,135.0,45.7
678
- 2013-06-01,147461,799,81143,7839,11529,4757,0,989,13411,5437,16481,1066,0,1222,2666,0,122,0,46893529,102.6,14486853,34.4,102.6,0.0
 
 
675
  2013-05-29,234172,1168,121158,12730,22097,9753,0,2338,22532,8549,25687,1969,0,2090,3868,0,233,0,78227941,78.9,28611494,57.2,78.9,29.7
676
  2013-05-30,224877,1037,116546,12239,20496,8991,0,2358,20666,8028,26023,1911,0,2191,4182,0,209,0,73737441,120.9,23119405,64.1,120.9,31.1
677
  2013-05-31,193150,955,100315,10404,17848,8019,0,1922,17841,6505,22735,1653,0,1624,3150,0,179,0,64285499,135.0,20275990,28.9,135.0,45.7
678
+ 2013-06-01,147461,799,81143,7839,11529,4757,0,989,13411,5437,16481,1066,0,1222,2666,0,122,0,46893529,102.6,14486853,34.4,102.6,40.0
679
+ 2013-06-02,156728,682,86990,7680,11486,4956,0,1029,14332,5442,18447,1127,0,1597,2805,0,155,0,49492964,105.1,15922840,42.1,105.1,0.0