tamnd commited on
Commit
51928a2
·
verified ·
1 Parent(s): 738a07b

Add 2013-07-08 — 247.4K 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-07-07** (713 days), totaling **83,351,083 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 22.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.9 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,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,051,848 events in 2504 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 ██████████████████████████████ 272.7K
79
  02:00 █████████████████████████████░ 271.5K
80
- 03:00 █████████████████████████████░ 272.4K
81
- 04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
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,051,848 | 2504 |
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 █████████████████████████████ 35.0M
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 | 179 | 34,998,098 | 195,520 | 10.7 GB | 3.3 GB | 1h49m | 4h31m | 2h20m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████████████░░░ 16.5M
156
- 2013 ██████████████████████████████ 17.9M
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 | 41,044,102 | 49.2% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,734,220 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 7,021,715 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,205,803 | 3.8% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 552,074 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 7,951,396 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 2,898,918 | 3.5% | Repository forks |
574
- | `creates` | CreateEvent | 11,564,997 | 13.9% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 673,488 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 4,305 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 866,546 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,634,377 | 2.0% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 76,254 | 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-07-08** (714 days), totaling **83,598,484 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 22.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.9 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,069,959 events in 2590 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 ██████████████████████████████ 272.7K
79
  02:00 █████████████████████████████░ 271.5K
80
+ 03:00 █████████████████████████████░ 272.5K
81
+ 04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0K
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,069,959 | 2590 |
107
 
108
 
109
  ### Live event schema
 
136
  ## Events per year
137
 
138
  ```
139
+ 2011 ███████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 █████████████████████████████░ 34.3M
141
+ 2013 ███████████████████████���██████ 35.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 | 180 | 35,245,499 | 195,808 | 10.7 GB | 3.3 GB | 1h49m | 4h34m | 2h23m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████████████░░░ 16.5M
156
+ 2013 ██████████████████████████████ 18.0M
157
  ```
158
 
159
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 41,168,421 | 49.2% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,747,608 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 7,043,335 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,215,467 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 555,037 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 7,976,647 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 2,910,433 | 3.5% | Repository forks |
574
+ | `creates` | CreateEvent | 11,592,960 | 13.9% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 675,555 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 4,859 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 869,113 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,638,565 | 2.0% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 76,565 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b0bc7f5761e6709fbb285a8ab79b3c7c2e39a7063240a6e1f3b774294080c1d
3
+ size 86312
data/creates/2013/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:441cf27e6ab7f4023b0781b20c2bc73f452d1634b99232db06e67f361d508b52
3
+ size 994298
data/deletes/2013/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e2aebfe2ca0cbc13ddc63e7637d9dda2cab8e62fcee7067a1cf3c21a3056b1c
3
+ size 68857
data/forks/2013/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b5302e15c0d8cdedc474a58d9d603a20e8272b4028257fcac97c25f74cd0c36
3
+ size 292686
data/issue_comments/2013/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:173d56af00df291cbfeb24ddb65f4eee1e9001cf3ebf25c84b97c630e03dfc51
3
+ size 512316
data/issues/2013/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:feaf269b2ffa915e70125010566687249db757af15617c31266b4e7aa4d5d337
3
+ size 327288
data/public_events/2013/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a350fd397e51a24eef64c5a4a82b8443890bfe6c1773abfa08943360fed3e84
3
+ size 11702
data/pull_requests/2013/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f926123a8270eb41ea3e9f711e400f0aa226201e0d0e508216b4b7f00995319a
3
+ size 1801516
data/pushes/2013/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0da05e255f0f10e03d4e99153e40f2574e3767265e77c616bcc56ede6009b450
3
+ size 19905920
data/stars/2013/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aca5aaa0e5fcfdb659ab36363e870336c7bf5ec14fffa02ed03447f330898e7c
3
+ size 536650
data/wiki_pages/2013/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:159c1e38ad50efc531e3a579b1236e5649a1d52c496c5aad6dac88d9e507a298
3
+ size 303338
stats.csv CHANGED
@@ -711,4 +711,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
711
  2013-07-04,203593,774,102079,10559,15977,7179,0,1744,18678,9099,26284,1700,663,1833,6808,0,216,0,63994104,111.8,20260282,28.7,111.8,44.1
712
  2013-07-05,206900,856,105580,15491,19627,7592,0,1942,17023,8627,23097,1593,423,1800,3019,0,230,0,70488202,121.1,21912046,30.9,121.1,33.5
713
  2013-07-06,137065,483,74613,7083,9772,4001,0,691,12417,6108,16836,970,510,1015,2421,0,145,0,41619586,68.9,13137637,32.5,68.9,41.1
714
- 2013-07-07,159355,541,86210,7945,11332,4764,0,972,15339,7321,19040,1195,303,1396,2824,0,173,0,49002639,87.7,15679684,25.7,87.7,0.0
 
 
711
  2013-07-04,203593,774,102079,10559,15977,7179,0,1744,18678,9099,26284,1700,663,1833,6808,0,216,0,63994104,111.8,20260282,28.7,111.8,44.1
712
  2013-07-05,206900,856,105580,15491,19627,7592,0,1942,17023,8627,23097,1593,423,1800,3019,0,230,0,70488202,121.1,21912046,30.9,121.1,33.5
713
  2013-07-06,137065,483,74613,7083,9772,4001,0,691,12417,6108,16836,970,510,1015,2421,0,145,0,41619586,68.9,13137637,32.5,68.9,41.1
714
+ 2013-07-07,159355,541,86210,7945,11332,4764,0,972,15339,7321,19040,1195,303,1396,2824,0,173,0,49002639,87.7,15679684,25.7,87.7,171.7
715
+ 2013-07-08,247401,1031,124319,13388,21620,9664,0,2963,25251,11515,27963,2067,554,2567,4188,0,311,0,81078211,150.6,24840883,40.3,150.6,0.0