tamnd commited on
Commit
17e5bf8
·
verified ·
1 Parent(s): eaedeef

Add 2013-08-13 — 249.6K 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-08-12** (749 days), totaling **91,089,563 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 25.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.6 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,183,397 events in 2990 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 █████████████████████████████░ 272.7K
79
  02:00 █████████████████████████████░ 271.6K
80
  03:00 ██████████████████████████████ 273.3K
81
- 04:00 ██████████████░░░░░░░░░░░░░░░░ 130.5K
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,183,397 | 2990 |
107
 
108
 
109
  ### Live event schema
@@ -137,15 +137,15 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ███████████████████████░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 42.7M
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 | 215 | 42,736,578 | 198,774 | 13.1 GB | 4.1 GB | 2h12m | 5h43m | 2h48m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 21.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 | 45,049,496 | 49.5% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,145,055 | 5.6% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 7,691,917 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,501,536 | 3.8% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 636,931 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 8,681,170 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,233,883 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 12,451,057 | 13.7% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 737,453 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 17,852 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 938,025 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,768,779 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 83,269 | 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-08-13** (750 days), totaling **91,339,139 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 25.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.7 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,185,921 events in 3005 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 █████████████████████████████░ 272.7K
79
  02:00 █████████████████████████████░ 271.6K
80
  03:00 ██████████████████████████████ 273.3K
81
+ 04:00 ██████████████░░░░░░░░░░░░░░░░ 132.9K
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,185,921 | 3005 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ███████████████████████░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 43.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 | 216 | 42,986,154 | 199,009 | 13.1 GB | 4.1 GB | 2h12m | 5h45m | 2h49m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 22.0M
157
  ```
158
 
159
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 45,173,520 | 49.5% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,158,129 | 5.6% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 7,715,377 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,512,083 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 639,846 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 8,707,532 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,245,162 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 12,479,283 | 13.7% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 739,919 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 18,212 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 940,176 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,772,280 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 83,490 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a795d9a899cd7d91afa11505c356e677a497c0db7946a4b58554c0718705385
3
+ size 78401
data/creates/2013/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19489be2a8f9c40ec09b478690e428ac948882e085938b777b7620ee02f4c65f
3
+ size 1031025
data/deletes/2013/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63c2f44d497abe6192575674a0aadbda472cb0fc4cc082e90597fb112c928b95
3
+ size 73177
data/forks/2013/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93a3b2ee689d66ad57354996ab8aa7e225231d9afadd194c0dc628d16005b919
3
+ size 301307
data/issue_comments/2013/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c71ccad179b95cc10bb340e957dab2043e888fcc185f281c6c56640fcad964e
3
+ size 555165
data/issues/2013/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c70a14736fa4fbb2d7ec119a15f7c565288e3f4546bc755aef88f0a53eddb63
3
+ size 356387
data/public_events/2013/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d32947ff1a5bfd4f84212a33ed67541111c579a442a7ee7f71e923d8f976625
3
+ size 9715
data/pull_requests/2013/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f74fddd51159ada62acb5ee609a8697a6fe2ff8d2ae8fb0165aa952f55d372b
3
+ size 1900062
data/pushes/2013/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:013ab2fe76f0727ae62dab1f297cead7f40cb58f2a222ca0a8cffcbf04043005
3
+ size 20069751
data/stars/2013/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:034c61a359d1db8460e7faad024b9acb716e0dc229753356b3bea346726498cc
3
+ size 574947
data/wiki_pages/2013/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01baa64fd2464de48947c67bea116a09a2ed824529d722c4682c4d4acbad24a3
3
+ size 249148
stats.csv CHANGED
@@ -747,4 +747,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
747
  2013-08-09,217918,868,110778,11939,18963,8755,0,2714,19751,9250,24448,1930,379,1875,6066,0,202,0,73780115,131.1,22869571,30.0,131.1,31.3
748
  2013-08-10,148162,478,79598,7341,10583,4476,0,870,14208,6549,17314,1058,295,1028,4249,0,115,0,46639501,85.7,15056636,32.7,85.7,35.5
749
  2013-08-11,154272,469,82565,7405,11237,4784,0,1046,16049,6830,18417,1283,265,1348,2479,0,95,0,49110236,92.6,15661697,30.3,92.6,36.3
750
- 2013-08-12,244954,842,123668,13335,22985,10229,0,2839,24040,10722,27536,2538,410,2266,3354,0,190,0,83163806,151.6,25519623,32.1,151.6,0.0
 
 
747
  2013-08-09,217918,868,110778,11939,18963,8755,0,2714,19751,9250,24448,1930,379,1875,6066,0,202,0,73780115,131.1,22869571,30.0,131.1,31.3
748
  2013-08-10,148162,478,79598,7341,10583,4476,0,870,14208,6549,17314,1058,295,1028,4249,0,115,0,46639501,85.7,15056636,32.7,85.7,35.5
749
  2013-08-11,154272,469,82565,7405,11237,4784,0,1046,16049,6830,18417,1283,265,1348,2479,0,95,0,49110236,92.6,15661697,30.3,92.6,36.3
750
+ 2013-08-12,244954,842,123668,13335,22985,10229,0,2839,24040,10722,27536,2538,410,2266,3354,0,190,0,83163806,151.6,25519623,32.1,151.6,44.6
751
+ 2013-08-13,249576,990,124024,13074,23460,10547,0,2915,26362,11279,28226,2466,360,2151,3501,0,221,0,84191348,152.0,25199085,48.5,152.0,0.0