tamnd commited on
Commit
98cea54
·
verified ·
1 Parent(s): 6e07636

Add 2012-10-18 — 149.1K 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 **2012-10-17** (476 days), totaling **40,336,886 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 9.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.8 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,10 +71,10 @@ 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** — 157,062 events in 216 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 157.1K
78
  01:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03: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 | 157,062 | 216 |
107
 
108
 
109
  ### Live event schema
@@ -136,21 +136,21 @@ duckdb.sql("""
136
  ## Events per year
137
 
138
  ```
139
- 2011 ███████████████░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 26.2M
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
146
- | 2012 | 233 | 26,240,742 | 112,621 | 6.9 GB | 2.5 GB | 1h45m | 2h28m | 2h13m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ████████████████░░░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 12.4M
154
  ```
155
 
156
 
@@ -174,7 +174,7 @@ duckdb.sql("""
174
 
175
  ```
176
  2011 ████████████████░░░░░░░░░░░░░░ 1.4M
177
- 2012 ██████████████████████████████ 2.5M
178
  ```
179
 
180
 
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 19,027,969 | 47.2% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,157,534 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,116,697 | 7.7% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,638,218 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 172,121 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,952,503 | 9.8% | Repository stars |
567
- | `forks` | ForkEvent | 1,269,572 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,537,900 | 16.2% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 338,438 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 453,942 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 778,088 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 36,304 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
 
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 **2012-10-19** (478 days), totaling **40,630,584 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 9.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.8 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** — 160,197 events in 223 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 160.2K
78
  01:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 160,197 | 223 |
107
 
108
 
109
  ### Live event schema
 
136
  ## Events per year
137
 
138
  ```
139
+ 2011 ███████████████░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 26.5M
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
146
+ | 2012 | 235 | 26,534,440 | 112,912 | 7.0 GB | 2.5 GB | 1h46m | 2h29m | 2h14m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ████████████████░░░░░░░░░░░░░░ 6.7M
153
+ 2012 ██████████████████████████████ 12.5M
154
  ```
155
 
156
 
 
174
 
175
  ```
176
  2011 ████████████████░░░░░░░░░░░░░░ 1.4M
177
+ 2012 ██████████████████████████████ 2.6M
178
  ```
179
 
180
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 19,172,989 | 47.2% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,176,123 | 5.4% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,148,491 | 7.7% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,648,110 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 174,625 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,977,122 | 9.8% | Repository stars |
567
+ | `forks` | ForkEvent | 1,280,388 | 3.2% | Repository forks |
568
+ | `creates` | CreateEvent | 6,574,850 | 16.2% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 340,340 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 456,627 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 784,417 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 36,546 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0eca886f2f2917802809643db0ab0fd18bad41b0dd7ea59b4465fe7888b8691
3
+ size 53770
data/creates/2012/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f45106e24e658ce055cf093d0520564540abfd76923fcdd61a13ab2d0dcdc54
3
+ size 730897
data/deletes/2012/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f504ba6e92c2c490ba17212317e9247a585726f1299779cb0e679ad44a6aba7
3
+ size 35310
data/forks/2012/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7b92e209029e1e517f2b3bab57639beda7e841a9a5668a26c4580eae7b6fe17
3
+ size 159511
data/issue_comments/2012/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1395c2140f969bed1f7cebdd21de996805af8f38924510e6a5ef5a22a858072
3
+ size 309561
data/issues/2012/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:584c79aa03ddefb7fcf01478b01795e7134479c62d46e8ea3ecf77f71fc727c5
3
+ size 213390
data/public_events/2012/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da0fdd4ef5b6483ec232cbcd34cac5173308a30b268fda77b5f9e284eeaa50bb
3
+ size 7110
data/pull_requests/2012/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ecf936b8d6fc9ec88f988d6de10e7c92f79a0b7711f6f98f26acadcad804d9cf
3
+ size 982960
data/pushes/2012/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23ff02819fc90318325f2c893cf603c29afaeafcf887a848ab17c0a2eb6f5d5d
3
+ size 12326799
data/stars/2012/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d35d1634dd8850415bb1f78e4ebe156925f67ccc69ae16c0ed0c73c3739e095
3
+ size 295476
data/wiki_pages/2012/10/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd31d76e5e9b72fb5e00700457fd4e16c5572e77ecb67635445cb00f6bd9b70
3
+ size 234822
stats.csv CHANGED
@@ -474,4 +474,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
474
  2012-10-14,111537,721,59174,6345,8911,3072,0,576,9815,3748,15366,643,0,1054,2013,0,99,0,33238404,15.5,11387173,32.9,15.5,20.8
475
  2012-10-15,156849,1072,77972,9235,15078,5915,0,1250,15450,5907,19088,1023,0,1658,3070,0,131,0,47569307,24.1,15842924,25.8,24.1,28.3
476
  2012-10-16,160647,1155,78716,10004,18573,6341,0,1521,14176,5992,18161,1002,0,1615,3252,0,139,0,48223103,26.8,15771661,27.0,26.8,40.9
477
- 2012-10-17,152676,1251,78831,7745,12954,5788,0,1324,13502,5803,19278,938,0,1719,3379,0,164,0,47254620,26.3,15754473,25.9,26.3,0.0
 
 
 
474
  2012-10-14,111537,721,59174,6345,8911,3072,0,576,9815,3748,15366,643,0,1054,2013,0,99,0,33238404,15.5,11387173,32.9,15.5,20.8
475
  2012-10-15,156849,1072,77972,9235,15078,5915,0,1250,15450,5907,19088,1023,0,1658,3070,0,131,0,47569307,24.1,15842924,25.8,24.1,28.3
476
  2012-10-16,160647,1155,78716,10004,18573,6341,0,1521,14176,5992,18161,1002,0,1615,3252,0,139,0,48223103,26.8,15771661,27.0,26.8,40.9
477
+ 2012-10-17,152676,1251,78831,7745,12954,5788,0,1324,13502,5803,19278,938,0,1719,3379,0,164,0,47254620,26.3,15754473,25.9,26.3,39.3
478
+ 2012-10-18,149085,1239,76363,8383,13760,5213,0,1182,12937,5773,18321,1033,0,1448,3289,0,144,0,44938317,36.9,15349606,53.0,36.9,0.0
479
+ 2012-10-19,144613,1117,68657,10206,18034,4679,0,1322,11682,5043,18629,869,0,1237,3040,0,98,0,40642537,32.4,13722009,22.7,32.5,0.0