tamnd commited on
Commit
da8f040
·
verified ·
1 Parent(s): e924537

Add 2013-09-30 — 280.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-09-29** (791 days), totaling **100,459,332 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.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.5 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,375,628 events in 3617 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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 42.5K
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,375,628 | 3617 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ███████████████████░░░░░░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 52.1M
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 | 257 | 52,106,347 | 202,748 | 15.9 GB | 4.9 GB | 2h36m | 7h13m | 3h21m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████░░░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 26.6M
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 | 49,764,598 | 49.5% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,689,060 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 8,551,048 | 8.5% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,869,416 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 736,031 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 9,567,365 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,611,893 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 13,581,443 | 13.5% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 835,032 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 34,252 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 1,019,928 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,912,089 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 91,815 | 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-30** (792 days), totaling **100,740,147 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.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.5 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,377,184 events in 3621 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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 44.1K
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,377,184 | 3621 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ███████████████████░░░░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 52.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 | 258 | 52,387,162 | 203,051 | 16.0 GB | 5.0 GB | 2h37m | 7h16m | 3h21m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████░░░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 26.7M
157
  ```
158
 
159
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 49,898,748 | 49.5% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,709,109 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,584,159 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,881,337 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 739,485 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,590,902 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,622,434 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 13,612,282 | 13.5% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 839,383 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 34,836 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 1,022,142 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,916,323 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 92,061 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a480140efaac0d62e9d693fb57dc595fb40edc618a7a14515159505c6ea1c74e
3
+ size 78444
data/creates/2013/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6411a49605f6e872fc6b9ce3a990d4066d90d1651f6f29fa2a81c6aa63427f4
3
+ size 1106673
data/deletes/2013/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fe916646401e17374227025525c211fe3b91558599e14fbfb8ac1e796d228ca
3
+ size 125707
data/forks/2013/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b593c002f128b578805de4c4ed1458bc1b8019f8c4b9d5f84f73260eb2ce164
3
+ size 276594
data/issue_comments/2013/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:640ff25119bfb36f704ea59dc9caa66de94193e435a999280795c164cb2ef218
3
+ size 651493
data/issues/2013/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13abc4cfbe6fab703f1fb9c04996edb23b9da210a5df947532967b0f528d21db
3
+ size 410905
data/public_events/2013/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c77d07e3ec5a311950a15b5e97b4ec3bcd7282837daeb3bfcf6d004614b1b5a5
3
+ size 10653
data/pull_requests/2013/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:291a2ba1774b9ee6a0c6acc03c2672f9010c6928fffd13e529dfb30e4492445d
3
+ size 2094951
data/pushes/2013/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45fd9191d40f7369f2355312bfb49094c885e5c58f3a1b46a7814e378c2a88ea
3
+ size 20826255
data/stars/2013/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1271464659d9f552938168d022ed48e0971b1424f3af9ff3912e564a3aebfaf
3
+ size 509560
data/wiki_pages/2013/09/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f80265439cd856a67bf28f8f4b4a719fc7a2a517ceac219ed85d8a1c8b452fcc
3
+ size 229468
stats.csv CHANGED
@@ -789,4 +789,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
789
  2013-09-26,261772,1480,130552,14636,24331,11395,0,3464,24897,11115,30187,2229,568,2455,4224,0,239,0,87509407,153.2,26024012,31.0,153.2,51.9
790
  2013-09-27,241456,1345,120902,15345,22982,10467,0,2723,21856,9685,27681,2097,421,2162,3564,0,226,0,79627349,137.5,24141322,32.0,137.5,47.0
791
  2013-09-28,167030,1080,88802,8038,12613,5501,0,1106,17460,7615,18886,1850,342,1201,2391,0,145,0,50674656,91.5,15813370,38.6,91.5,48.4
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,0.0
 
 
789
  2013-09-26,261772,1480,130552,14636,24331,11395,0,3464,24897,11115,30187,2229,568,2455,4224,0,239,0,87509407,153.2,26024012,31.0,153.2,51.9
790
  2013-09-27,241456,1345,120902,15345,22982,10467,0,2723,21856,9685,27681,2097,421,2162,3564,0,226,0,79627349,137.5,24141322,32.0,137.5,47.0
791
  2013-09-28,167030,1080,88802,8038,12613,5501,0,1106,17460,7615,18886,1850,342,1201,2391,0,145,0,50674656,91.5,15813370,38.6,91.5,48.4
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,0.0