tamnd commited on
Commit
bf10527
·
verified ·
1 Parent(s): 611f881

Add 2013-10-03 — 261.8K 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-10-02** (794 days), totaling **101,298,029 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 28.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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,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,377,217 events in 3638 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
@@ -79,7 +79,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
79
  02:00 █████████████████████████████░ 271.7K
80
  03:00 █████████████████████████████░ 273.6K
81
  04:00 ██████████████████████████████ 279.6K
82
- 05:00 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 44.1K
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
84
  07:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
85
  08: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,377,217 | 3638 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ███████████████████░░░░░░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 52.9M
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 | 260 | 52,945,044 | 203,634 | 16.1 GB | 5.0 GB | 2h38m | 7h21m | 3h23m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████░░░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 27.0M
157
  ```
158
 
159
 
@@ -170,7 +170,7 @@ duckdb.sql("""
170
 
171
  ```
172
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
- 2012 ██████████████████████░░░░░░░ 1.5M
174
  2013 ██████████████████████████████ 2.0M
175
  ```
176
 
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 50,187,008 | 49.5% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,740,914 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 8,637,564 | 8.5% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,906,465 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 746,000 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 9,635,692 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,641,861 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 13,673,096 | 13.5% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 849,470 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 35,736 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 1,026,806 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,924,667 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 92,553 | 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-10-03** (795 days), totaling **101,559,834 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 28.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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
 
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,390,165 events in 3655 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
 
79
  02:00 █████████████████████████████░ 271.7K
80
  03:00 █████████████████████████████░ 273.6K
81
  04:00 ██████████████████████████████ 279.6K
82
+ 05:00 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 57.0K
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
84
  07:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
85
  08:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 1,390,165 | 3655 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ███████████████████░░░░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 53.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 | 261 | 53,206,849 | 203,857 | 16.2 GB | 5.0 GB | 2h39m | 7h24m | 3h24m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████░░░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 27.2M
157
  ```
158
 
159
 
 
170
 
171
  ```
172
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
+ 2012 ██████████████████████░░░░░░░ 1.5M
174
  2013 ██████████████████████████████ 2.0M
175
  ```
176
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 50,327,725 | 49.6% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,753,977 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,658,568 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,917,718 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 748,958 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,656,767 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,651,258 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 13,702,164 | 13.5% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 853,818 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 36,178 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 1,028,847 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,928,256 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 92,788 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/10/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8b171e0d0e216be04c0828f9e8f02e8e293ba5c5941357e7140a770926055e6
3
+ size 75416
data/creates/2013/10/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:184da28721aff8375f6b43039db54ed2e7eeb9b957d09f1c423d0d167a1cc0ba
3
+ size 1061785
data/deletes/2013/10/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:047d5b9ac60be9e38920d4a40b4bfc0fca73fb30638e0cd5a94adae976d44ac1
3
+ size 121839
data/forks/2013/10/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d9e61eb28e420c9c388b8240ef4bca1bbcbc43c0dcbbfa6c68771a7a502a6cb
3
+ size 252813
data/issue_comments/2013/10/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1051b73a4af988660082047fcdcc08262527ec5a869c81278da11aa4a1d139fd
3
+ size 517236
data/issues/2013/10/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca2e7fb64afd683f5f2a3f7310b95d55f80de74ffb6b853463cecea0f71662ef
3
+ size 336722
data/public_events/2013/10/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d6e8218d15696f4c3afd5f95bf9dbae408d8bb0599f64f5d9ff504003673a04
3
+ size 9942
data/pull_requests/2013/10/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f76c6d1ee8b3d227e5903745274717a6d578d363fd4642ef97e5fc20f956c79d
3
+ size 1940807
data/pushes/2013/10/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cc737a19a0f628eb7f5355f5e2bb05bee8ac14b823152a96fb9097b937edd88
3
+ size 21093178
data/stars/2013/10/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e9bce1dff5dae9e4001081ecdd4f68269f1d1a61fc112ce0a6e4e9bbe5355b6
3
+ size 465098
data/wiki_pages/2013/10/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e557c02189846bb555fbeed636b7a48c8c18bf2f5e6cefbe48cfe310e2584689
3
+ size 256096
stats.csv CHANGED
@@ -792,4 +792,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
792
  2013-09-29,191627,1042,104911,9740,12561,6514,0,1330,18440,7938,21481,2346,343,1383,3419,0,179,0,59386620,99.3,18896742,36.9,99.3,38.8
793
  2013-09-30,280815,1584,134150,20049,33111,11921,0,3454,23537,10541,30839,4351,584,2214,4234,0,246,0,89644021,160.3,26320703,25.8,160.3,32.2
794
  2013-10-01,267447,1679,132840,17246,27833,11945,0,3237,22330,9887,29065,4018,458,2431,4265,0,213,0,87467293,156.8,26095090,35.1,156.8,53.5
795
- 2013-10-02,290435,1572,155420,14559,25572,13183,0,3278,22460,9540,31749,6069,442,2233,4079,0,279,0,92011121,174.4,28468797,40.3,174.4,0.0
 
 
792
  2013-09-29,191627,1042,104911,9740,12561,6514,0,1330,18440,7938,21481,2346,343,1383,3419,0,179,0,59386620,99.3,18896742,36.9,99.3,38.8
793
  2013-09-30,280815,1584,134150,20049,33111,11921,0,3454,23537,10541,30839,4351,584,2214,4234,0,246,0,89644021,160.3,26320703,25.8,160.3,32.2
794
  2013-10-01,267447,1679,132840,17246,27833,11945,0,3237,22330,9887,29065,4018,458,2431,4265,0,213,0,87467293,156.8,26095090,35.1,156.8,53.5
795
+ 2013-10-02,290435,1572,155420,14559,25572,13183,0,3278,22460,9540,31749,6069,442,2233,4079,0,279,0,92011121,174.4,28468797,40.3,174.4,60.7
796
+ 2013-10-03,261805,2615,140717,13063,21004,11253,0,2958,21075,9397,29068,4348,442,2041,3589,0,235,0,84842377,157.1,26130932,36.9,157.1,0.0