tamnd commited on
Commit
6e07636
·
verified ·
1 Parent(s): 907011b

Add 2012-10-17 — 152.7K events, 11 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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-16** (475 days), totaling **40,184,210 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
 
@@ -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** — 155,229 events in 210 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 155.2K
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 | 155,229 | 210 |
107
 
108
 
109
  ### Live event schema
@@ -137,20 +137,20 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ████████████████░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 26.1M
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 | 232 | 26,088,066 | 112,448 | 6.8 GB | 2.4 GB | 1h44m | 2h27m | 2h12m |
147
 
148
 
149
  ### Pushes per year
150
 
151
  ```
152
  2011 ████████████████░░░░░░░░░░░░░░ 6.7M
153
- 2012 ██████████████████████████████ 12.3M
154
  ```
155
 
156
 
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 18,949,138 | 47.2% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,149,789 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,103,743 | 7.7% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,632,430 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 170,797 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,939,001 | 9.8% | Repository stars |
567
- | `forks` | ForkEvent | 1,263,769 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,518,622 | 16.2% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 337,500 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 452,223 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 774,709 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 36,140 | 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-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
 
 
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
  | 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
 
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
 
 
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
 
data/commit_comments/2012/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d715804918f9d6b42a874da4f399276abb574d21bacc2e8c24bb5f384b34aa2
3
+ size 60845
data/creates/2012/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8246c35082fd0dc31f16a42b7921c06d2f01787f1f9aaa9111778c874889cddd
3
+ size 682126
data/deletes/2012/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50f12f246fdb8132041148a6adb0f9ec2da2d515a74a89162273aeb23a0d446a
3
+ size 32896
data/forks/2012/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11cd19e73d61784c0a24499a0b166d324e1279c372960f0f54c6c91e80520dbf
3
+ size 159745
data/issue_comments/2012/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b3674e9526274bdffc79c18fb1dd582c28c5c01356d98c78ab47fdeefbfce7b
3
+ size 309708
data/issues/2012/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36b829faa330a3e2590ea8c8f76f91fa90212fc007fc52abb29e0c0d20f95f80
3
+ size 207986
data/public_events/2012/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab22e850631359972eada9728209d05f266892240d49d440992bc9dddd290a9d
3
+ size 7875
data/pull_requests/2012/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adb512bd1664cfe08e8c0b5a5f42d8f5a9b0eaa355b037830756f2baaf8fb0b7
3
+ size 1069789
data/pushes/2012/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77c31236ad52b0aaf5bbe9547c355334abc8dea396cdd6a336f35b01ade8a3bd
3
+ size 12679472
data/stars/2012/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ee062a46b7a3aa3dad90e0a3b4790cb017e53ed469e1646956c778f4bb49fc3
3
+ size 306401
data/wiki_pages/2012/10/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6efa0fc62388cd9391f08366544b26593ca1413f1804d09ce301cc0574efb169
3
+ size 237630
stats.csv CHANGED
@@ -473,4 +473,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
473
  2012-10-13,96502,669,50958,6390,8271,2644,0,540,8120,3494,12225,586,0,741,1777,0,87,0,27985795,15.6,9567730,39.1,15.6,43.3
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,0.0
 
 
473
  2012-10-13,96502,669,50958,6390,8271,2644,0,540,8120,3494,12225,586,0,741,1777,0,87,0,27985795,15.6,9567730,39.1,15.6,43.3
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