tamnd commited on
Commit
cab41d6
·
verified ·
1 Parent(s): 413a76d

Add 2012-09-18 — 148.4K 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-09-17** (446 days), totaling **36,380,199 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 8.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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
 
@@ -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** — 78,986 events in 83 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 79.0K
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 | 78,986 | 83 |
107
 
108
 
109
  ### Live event schema
@@ -137,13 +137,13 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ██████████████████░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 22.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 | 203 | 22,284,055 | 109,773 | 5.8 GB | 2.1 GB | 1h30m | 2h08m | 1h56m |
147
 
148
 
149
  ### Pushes per year
@@ -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,044,469 | 46.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 1,907,084 | 5.2% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 2,743,732 | 7.5% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,502,242 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 138,758 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,607,246 | 9.9% | Repository stars |
567
- | `forks` | ForkEvent | 1,126,482 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,020,748 | 16.5% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 314,025 | 0.9% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 413,872 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 698,541 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 32,464 | 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-09-18** (447 days), totaling **36,528,562 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 8.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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
 
 
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** — 88,209 events in 91 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 88.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 | 88,209 | 91 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ██████████████████░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 22.4M
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 | 204 | 22,432,418 | 109,962 | 5.8 GB | 2.1 GB | 1h30m | 2h10m | 1h56m |
147
 
148
 
149
  ### Pushes per year
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 17,116,848 | 46.9% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 1,918,539 | 5.3% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 2,759,423 | 7.6% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,507,426 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 140,210 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,619,904 | 9.9% | Repository stars |
567
+ | `forks` | ForkEvent | 1,131,965 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 6,037,993 | 16.5% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 314,947 | 0.9% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 415,551 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 701,622 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 32,616 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3272caed0ced49b02b08eb695a7f8574b1d2a8fc28c3b5427cc3df797b86236
3
+ size 61844
data/creates/2012/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:804f1c27eeaa5d3f0184df190f05c57dc012039b2171befd846f40b9147bac6b
3
+ size 573615
data/deletes/2012/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2699f12799db15d5432d972912276e142406e7e838e03783e2640d8d9f77f49
3
+ size 29507
data/forks/2012/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e8754fcdb131a64f82a29126d6412d5816aad11e165677d9b17b39fa18026c7
3
+ size 131940
data/issue_comments/2012/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:351434b88c03196acbaee5db2feabb31f3bf7fc14a604220c088e684f3ff1ae0
3
+ size 305275
data/issues/2012/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c158f47b7dad52b18280c04b49c5e74a1745a3e1f09532812c9c1340d44bbd03
3
+ size 215068
data/public_events/2012/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6659865d58c2811b9e55852b6b995566ab00d6941878dfb2459b406c7993581d
3
+ size 6921
data/pull_requests/2012/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36bb8a0ee82d4cbe0936268ebabdcaa082933c4087186f8adbd111303093aee3
3
+ size 908276
data/pushes/2012/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:071d03561bdbb5c770527df9553e3d05172db652e6dbd8e530adc0591be9b0d2
3
+ size 11625520
data/stars/2012/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e609cd130dbd84e8460d66626fe72dd8b14cfa6f2b67cf7e8f90f9d60004e36
3
+ size 319550
data/wiki_pages/2012/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3369a2406df1b8bc7a57ef93470e83d19deb3ad4936ac3902a754a13bfaef621
3
+ size 163596
stats.csv CHANGED
@@ -444,4 +444,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
444
  2012-09-14,124303,745,61208,7411,11702,4260,0,938,12104,4554,16698,815,0,1250,2498,0,120,0,36298528,62.5,11946022,28.5,62.5,35.4
445
  2012-09-15,84217,536,45275,4787,6435,2324,0,438,7988,2896,10559,444,0,688,1779,0,68,0,24347810,48.4,8198675,20.7,48.4,44.4
446
  2012-09-16,97490,547,50633,5495,7877,2634,0,553,9156,3268,13878,549,0,899,1924,0,77,0,27331355,48.4,8965956,22.8,48.4,30.0
447
- 2012-09-17,144504,963,69999,10684,16433,4991,0,1341,13241,5154,15963,842,0,1624,3142,0,127,0,41958960,77.8,13758900,26.3,77.8,0.0
 
 
444
  2012-09-14,124303,745,61208,7411,11702,4260,0,938,12104,4554,16698,815,0,1250,2498,0,120,0,36298528,62.5,11946022,28.5,62.5,35.4
445
  2012-09-15,84217,536,45275,4787,6435,2324,0,438,7988,2896,10559,444,0,688,1779,0,68,0,24347810,48.4,8198675,20.7,48.4,44.4
446
  2012-09-16,97490,547,50633,5495,7877,2634,0,553,9156,3268,13878,549,0,899,1924,0,77,0,27331355,48.4,8965956,22.8,48.4,30.0
447
+ 2012-09-17,144504,963,69999,10684,16433,4991,0,1341,13241,5154,15963,842,0,1624,3142,0,127,0,41958960,77.8,13758900,26.3,77.8,41.6
448
+ 2012-09-18,148363,982,72379,11455,15691,5184,0,1452,12658,5483,17245,922,0,1679,3081,0,152,0,43167042,78.8,14341112,33.2,78.8,0.0