tamnd commited on
Commit
3d15a52
·
verified ·
1 Parent(s): 3fadfe3

Add 2013-09-20 — 232.0K 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-09-19** (781 days), totaling **98,219,190 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 27.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.3 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,344,781 events in 3517 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.6K
80
  03:00 █████████████████████████████░ 273.6K
81
  04:00 ██████████████████████████████ 279.6K
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 11.8K
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,344,781 | 3517 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ████████████████████░░░░░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 49.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 | 247 | 49,866,205 | 201,887 | 15.2 GB | 4.7 GB | 2h30m | 6h51m | 3h13m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████░░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 25.4M
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
- 2012 ███████████████████░░░░░░░░░░ 1.9M
165
  2013 ██████████████████████████████ 2.9M
166
  ```
167
 
@@ -178,7 +178,7 @@ duckdb.sql("""
178
  ### Stars per year
179
 
180
  ```
181
- 2011 ████████░░░░░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ████████████████████░░░░░░░░░░ 3.3M
183
  2013 ██████████████████████████████ 4.7M
184
  ```
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 48,615,239 | 49.5% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,564,102 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 8,351,501 | 8.5% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,781,595 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 713,433 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 9,351,823 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,517,097 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 13,327,812 | 13.6% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 815,169 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 30,107 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 1,000,703 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,877,281 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 89,761 | 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-09-22** (784 days), totaling **98,802,774 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 27.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.3 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,348,172 events in 3524 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
 
79
  02:00 █████████████████████████████░ 271.6K
80
  03:00 █████████████████████████████░ 273.6K
81
  04:00 ██████████████████████████████ 279.6K
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 15.2K
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,348,172 | 3524 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ████████████████████░░░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 50.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 | 250 | 50,449,789 | 201,799 | 15.4 GB | 4.8 GB | 2h32m | 6h57m | 3h14m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████░░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 25.8M
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
+ 2012 ███████████████████░░░░░░░░░░ 1.9M
165
  2013 ██████████████████████████████ 2.9M
166
  ```
167
 
 
178
  ### Stars per year
179
 
180
  ```
181
+ 2011 ████████░░░░░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ████████████████████░░░░░░░░░░ 3.3M
183
  2013 ██████████████████████████████ 4.7M
184
  ```
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 48,923,559 | 49.5% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,595,033 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,398,959 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,802,331 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 718,415 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,409,221 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,542,414 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 13,393,473 | 13.6% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 819,807 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 31,151 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 1,005,544 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,886,214 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 90,270 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9ad9a6cf7ec12735155ff948d332b5f8e933b7f5276967ab053cf985469bfe7
3
+ size 75112
data/creates/2013/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbebdd5d07b1104fa6b763f52bfff202fece786dc8a6e39c40f7590be484572b
3
+ size 940413
data/deletes/2013/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce3a36af45ce9ce4833496e0bb0a3a169fefd7bb2b6085298e0686bd85a021e5
3
+ size 65614
data/forks/2013/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8189c6921136a69394b3c9a8e83e39d0ce4695ab826ed676d1149a74abdb5e1b
3
+ size 250623
data/issue_comments/2013/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee73dfa68bf8fe3e4f2b18bf59176d089cbf32add0cc380625a9f49e8b894e15
3
+ size 490775
data/issues/2013/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69479e62d55ccd42aeb4786bb1c862261adaebe932a6e72a0850c8baca4fbcbe
3
+ size 320669
data/public_events/2013/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d945f66c931b2aa0c6cf9160dc8abb39edb49b9a3d85704d633d6cd6fcbaa83a
3
+ size 9187
data/pull_requests/2013/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41ee653b597a818f66eefc8d34464eac17f84fa748a8afc0aec5d9df436fbd58
3
+ size 1698225
data/pushes/2013/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c949d3ae84166d411817cdcde92ab72ef8b32c205cdf1332e58728d8dbd8a629
3
+ size 18491372
data/stars/2013/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fac047003f68b9d167810c7ea0a9dccea15ddfbe45c67504306ddc76e5c3a7b2
3
+ size 484381
data/wiki_pages/2013/09/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0da10189e657808f405ef3ba969d10efbf38b7f8b789e976a8cd745e0bba526f
3
+ size 244141
stats.csv CHANGED
@@ -779,4 +779,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
779
  2013-09-16,247809,1199,124175,16694,22336,10468,0,3009,23065,9836,27820,2261,458,2167,4064,0,257,0,82487968,149.5,24569095,41.1,149.5,52.5
780
  2013-09-17,243221,1178,123561,14200,21255,10112,0,3073,22907,9905,27926,2156,402,2206,4062,0,278,0,81181248,142.0,24677654,39.7,142.0,58.0
781
  2013-09-18,240009,1225,123892,12611,21393,10192,0,3043,21442,9519,27326,2119,400,2400,4223,0,224,0,80616582,147.8,24155954,46.9,147.8,38.5
782
- 2013-09-19,188453,931,97954,10122,16615,8287,0,2228,16521,6998,21505,1720,359,1837,3185,0,191,0,63864631,112.6,19090258,41.1,112.6,0.0
 
 
 
 
779
  2013-09-16,247809,1199,124175,16694,22336,10468,0,3009,23065,9836,27820,2261,458,2167,4064,0,257,0,82487968,149.5,24569095,41.1,149.5,52.5
780
  2013-09-17,243221,1178,123561,14200,21255,10112,0,3073,22907,9905,27926,2156,402,2206,4062,0,278,0,81181248,142.0,24677654,39.7,142.0,58.0
781
  2013-09-18,240009,1225,123892,12611,21393,10192,0,3043,21442,9519,27326,2119,400,2400,4223,0,224,0,80616582,147.8,24155954,46.9,147.8,38.5
782
+ 2013-09-19,188453,931,97954,10122,16615,8287,0,2228,16521,6998,21505,1720,359,1837,3185,0,191,0,63864631,112.6,19090258,41.1,112.6,46.7
783
+ 2013-09-20,232032,1191,117002,13458,23117,9391,0,2736,22323,9306,25387,1940,390,2247,3351,0,193,0,75914845,146.4,23070512,40.3,146.4,0.0
784
+ 2013-09-21,168293,927,91742,8566,11305,5309,0,986,16872,7810,19280,1290,325,1235,2512,0,134,0,51839278,104.4,16072179,48.0,104.4,0.0
785
+ 2013-09-22,183259,698,99576,8907,13036,6036,0,1260,18203,8201,20994,1408,329,1359,3070,0,182,0,57319133,108.6,17888385,39.9,108.7,0.0