tamnd commited on
Commit
83a1241
·
verified ·
1 Parent(s): 98d9b09

Add 2013-07-23 — 251.5K 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-22** (728 days), totaling **86,544,712 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 23.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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** — 1,119,726 events in 2780 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,119,726 | 2780 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████░░░░ 34.3M
141
- 2013 ██████████████████████████████ 38.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 | 194 | 38,191,727 | 196,864 | 11.7 GB | 3.6 GB | 1h58m | 5h02m | 2h34m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████████████░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 19.5M
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
- 2012 █████████████████████████░░░░ 1.9M
165
  2013 ██████████████████████████████ 2.2M
166
  ```
167
 
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 42,712,357 | 49.4% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,899,856 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 7,296,561 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,324,750 | 3.8% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 586,952 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 8,248,533 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,040,397 | 3.5% | Repository forks |
574
- | `creates` | CreateEvent | 11,927,991 | 13.8% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 699,271 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 9,967 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 896,481 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,686,623 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 79,431 | 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-23** (729 days), totaling **86,796,183 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 23.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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** — 1,119,737 events in 2786 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,119,737 | 2786 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 38.4M
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 | 195 | 38,443,198 | 197,144 | 11.7 GB | 3.7 GB | 1h59m | 5h05m | 2h35m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 █████████████████████████░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 19.7M
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
+ 2012 █████████████████████████░░░░ 1.9M
165
  2013 ██████████████████████████████ 2.2M
166
  ```
167
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 42,841,199 | 49.4% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,913,600 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 7,318,870 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,335,051 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 589,853 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 8,272,263 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,051,454 | 3.5% | Repository forks |
574
+ | `creates` | CreateEvent | 11,956,252 | 13.8% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 701,374 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 10,370 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 898,934 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,690,716 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 79,664 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/07/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a75df1471de0969044fe100b221f8c9a21ea90c34fe4612fdff65a76699fe94a
3
+ size 83971
data/creates/2013/07/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b428854f89c105f08bbba9277db5073c6e7ebd4831be1d500387b9fb185b264
3
+ size 1129258
data/deletes/2013/07/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:015f36c2b41f2ae4c42ac9f5d2e44b22910faeb077ea0d1957227c4228c9d28a
3
+ size 69779
data/forks/2013/07/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:497698cb351e7f3ed6e8a84160122dddceb665bf92bfdcb63d8fc54a24f0d3c6
3
+ size 290201
data/issue_comments/2013/07/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed436966bac45d48b88116727b53995c8ced5ac67d6ff63b0da4a09812528894
3
+ size 527137
data/issues/2013/07/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:032160bd917ad8788c04dbe8ff41c8311a8ae46c1328491ccee0fa8550d7ea23
3
+ size 347722
data/public_events/2013/07/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:840dbc090899b9a4cb799f5d213592b48e83767a9b659a0fab1f3d240226eaf1
3
+ size 10188
data/pull_requests/2013/07/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d086f977b59e309658de10fb435f3a883f1ef920ee31c2b4f08334b172fb4ce8
3
+ size 1890956
data/pushes/2013/07/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0b3e8e89c88d4710c7215aefce47d2fd8988c5b3271dfd76bb1b782122f09bc
3
+ size 22004097
data/stars/2013/07/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4f5e84d99a32335a0c5ce5d02aab401ea635715d8ede21254b6758844780e3c
3
+ size 543914
data/wiki_pages/2013/07/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9863025ceae47cfc57f104f31ccee9ab964182f08d1c1a251e6ed8195f53c249
3
+ size 227827
stats.csv CHANGED
@@ -726,4 +726,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
726
  2013-07-19,214228,896,112814,11157,18860,8825,0,2624,18979,8643,23970,1791,389,1894,3137,0,249,0,72597984,129.9,22866954,51.8,129.9,52.9
727
  2013-07-20,139140,601,77045,6679,10070,4058,0,870,12809,5709,16470,1026,321,960,2409,0,113,0,46477479,84.1,15103075,28.7,84.1,43.1
728
  2013-07-21,158614,475,85744,8429,11591,4867,0,1046,16463,6809,17773,1158,258,1203,2680,0,118,0,49582485,84.8,15670996,27.8,84.8,32.2
729
- 2013-07-22,247934,1027,127654,12917,22295,9722,0,2990,23697,11359,27328,2023,325,2402,3975,0,220,0,83615087,138.6,26835653,44.1,138.6,0.0
 
 
726
  2013-07-19,214228,896,112814,11157,18860,8825,0,2624,18979,8643,23970,1791,389,1894,3137,0,249,0,72597984,129.9,22866954,51.8,129.9,52.9
727
  2013-07-20,139140,601,77045,6679,10070,4058,0,870,12809,5709,16470,1026,321,960,2409,0,113,0,46477479,84.1,15103075,28.7,84.1,43.1
728
  2013-07-21,158614,475,85744,8429,11591,4867,0,1046,16463,6809,17773,1158,258,1203,2680,0,118,0,49582485,84.8,15670996,27.8,84.8,32.2
729
+ 2013-07-22,247934,1027,127654,12917,22295,9722,0,2990,23697,11359,27328,2023,325,2402,3975,0,220,0,83615087,138.6,26835653,44.1,138.6,49.5
730
+ 2013-07-23,251471,1041,128842,13744,22309,10301,0,2901,23730,11057,28261,2103,403,2453,4093,0,233,0,85364544,142.6,27125050,42.9,142.6,0.0