tamnd commited on
Commit
bd82af3
·
verified ·
1 Parent(s): 29a8aba

Add 2012-10-02 — 138.0K 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-01** (460 days), totaling **38,210,550 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.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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
 
@@ -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** — 120,463 events in 147 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 120.5K
@@ -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 | 120,463 | 147 |
107
 
108
 
109
  ### Live event schema
@@ -137,13 +137,13 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 █████████████████░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 24.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 | 217 | 24,114,406 | 111,126 | 6.3 GB | 2.3 GB | 1h37m | 2h20m | 2h04m |
147
 
148
 
149
  ### Pushes per year
@@ -174,7 +174,7 @@ duckdb.sql("""
174
 
175
  ```
176
  2011 ██████████████████░░░░░░░░░░░░ 1.4M
177
- 2012 ██████████████████████████████ 2.3M
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 | 17,936,520 | 46.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,037,952 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,926,245 | 7.7% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,562,547 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 154,368 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,763,503 | 9.8% | Repository stars |
567
- | `forks` | ForkEvent | 1,191,353 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,270,102 | 16.4% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 325,069 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 431,661 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 734,681 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 34,240 | 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-02** (461 days), totaling **38,348,582 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.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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
 
 
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** — 120,486 events in 153 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 120.5K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 120,486 | 153 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 █████████████████░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 24.3M
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 | 218 | 24,252,438 | 111,249 | 6.3 GB | 2.3 GB | 1h37m | 2h21m | 2h05m |
147
 
148
 
149
  ### Pushes per year
 
174
 
175
  ```
176
  2011 ██████████████████░░░░░░░░░░░░ 1.4M
177
+ 2012 ██████████████████████████████ 2.4M
178
  ```
179
 
180
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 18,007,151 | 47.0% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,045,209 | 5.3% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 2,939,016 | 7.7% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,567,675 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 155,741 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,775,678 | 9.8% | Repository stars |
567
+ | `forks` | ForkEvent | 1,196,436 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 6,287,022 | 16.4% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 326,002 | 0.9% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 433,476 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 737,458 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 34,357 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5258e8a0d5cddeb990c4c94deaefdcedc18b598fb72e95da97cdcbc07ae25d00
3
+ size 61932
data/creates/2012/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9e29031653eb1716dd0a8c02e34c7a029dc67640192ccfa32c13cea2f76d878
3
+ size 600244
data/deletes/2012/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b388f2f5abf8b70d6072b201cf86dc60b2f95f30fef1d4dc18bf2dae9175f15d
3
+ size 35788
data/forks/2012/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c9ad6d2ffa194a11d7e972e28beb1d430f8fe9ec56a5f32e9207a3489137d7b
3
+ size 141031
data/issue_comments/2012/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a0a6374f1cbd9d44c155878a9624c2e054d85ba30cb25de03fb17826eac50a5
3
+ size 299352
data/issues/2012/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5e376ad1db27f3f05144ee664f5380c8d2dedb015f129ce95a538e2f2bf8720
3
+ size 188150
data/public_events/2012/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:431e12db46e127ad8232bf8d0170289e5b3bf1f16f0061a9defb4491559708a5
3
+ size 6201
data/pull_requests/2012/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:336319d82d009fc8d55a5776b0d295d4e45d1540805f8bbb0374e9f02443e466
3
+ size 921245
data/pushes/2012/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14fbde4b5ae7bd6853ef9253b32c3db14540d5a3841137879d9689f204f5042b
3
+ size 11643823
data/stars/2012/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5d2bf4ad43c60ad8620d87e289328c1600964a36175fe2f15e1a5565c881d5b
3
+ size 277062
data/wiki_pages/2012/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40034f749bc4ffc1055c249c3bd55e55e80c07871bef68a1fe2eeece2b555bff
3
+ size 142992
stats.csv CHANGED
@@ -458,4 +458,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
458
  2012-09-28,134036,834,63108,9683,17746,4561,0,1260,12142,4706,15084,787,0,1302,2690,0,133,0,38617509,30.2,12622921,25.1,30.2,26.7
459
  2012-09-29,86169,668,47049,4362,6133,2470,0,463,8341,3378,10362,439,0,728,1692,0,84,0,25516980,14.6,8780823,37.4,14.6,34.2
460
  2012-09-30,93883,557,50601,4902,6465,2637,0,533,8803,3233,12774,536,0,860,1902,0,80,0,27908957,13.8,9575740,22.1,13.8,30.0
461
- 2012-10-01,149694,1021,69689,8000,13211,5115,0,1255,12055,4685,29475,930,0,1422,2645,0,191,0,42451491,22.8,14366333,38.6,22.8,0.0
 
 
458
  2012-09-28,134036,834,63108,9683,17746,4561,0,1260,12142,4706,15084,787,0,1302,2690,0,133,0,38617509,30.2,12622921,25.1,30.2,26.7
459
  2012-09-29,86169,668,47049,4362,6133,2470,0,463,8341,3378,10362,439,0,728,1692,0,84,0,25516980,14.6,8780823,37.4,14.6,34.2
460
  2012-09-30,93883,557,50601,4902,6465,2637,0,533,8803,3233,12774,536,0,860,1902,0,80,0,27908957,13.8,9575740,22.1,13.8,30.0
461
+ 2012-10-01,149694,1021,69689,8000,13211,5115,0,1255,12055,4685,29475,930,0,1422,2645,0,191,0,42451491,22.8,14366333,38.6,22.8,37.2
462
+ 2012-10-02,138032,1052,70631,7257,12771,5128,0,1373,12175,5083,16920,933,0,1815,2777,0,117,0,43132822,26.9,14317820,27.2,26.9,0.0