tamnd commited on
Commit
3cf9692
·
verified ·
1 Parent(s): 2d395e5

Add 2012-11-11 — 118.3K 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-11-10** (500 days), totaling **43,611,442 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 10.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.1 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** — 214,921 events in 350 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 214.9K
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 | 214,921 | 350 |
107
 
108
 
109
  ### Live event schema
@@ -137,13 +137,13 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ██████████████░░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 29.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 | 257 | 29,515,298 | 114,845 | 7.8 GB | 2.8 GB | 1h58m | 2h38m | 2h28m |
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 | 20,735,095 | 47.5% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,339,457 | 5.4% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,390,103 | 7.8% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,749,835 | 4.0% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 200,177 | 0.5% | Line-level PR comments |
566
- | `stars` | WatchEvent | 4,241,793 | 9.7% | Repository stars |
567
- | `forks` | ForkEvent | 1,394,854 | 3.2% | Repository forks |
568
- | `creates` | CreateEvent | 6,939,519 | 15.9% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 358,796 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 486,385 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 853,107 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
- | `public_events` | PublicEvent | 39,307 | 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-11-11** (501 days), totaling **43,729,783 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 10.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.1 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** — 216,123 events in 354 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 216.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 | 216,123 | 354 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ██████████████░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 29.6M
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 | 258 | 29,633,639 | 114,859 | 7.8 GB | 2.8 GB | 1h59m | 2h39m | 2h29m |
147
 
148
 
149
  ### Pushes per year
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 20,798,804 | 47.6% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,346,091 | 5.4% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,398,496 | 7.8% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,753,086 | 4.0% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 200,887 | 0.5% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 4,252,169 | 9.7% | Repository stars |
567
+ | `forks` | ForkEvent | 1,399,034 | 3.2% | Repository forks |
568
+ | `creates` | CreateEvent | 6,955,326 | 15.9% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 359,501 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 487,404 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 855,763 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 39,411 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/11/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53741d0c3cf184822fd41e154548990b4f2719d3235060c8f64b087bb93f30e0
3
+ size 41501
data/creates/2012/11/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29278a40c25b10982bb4c6aaad83bea915a7db4b35f2f1fd0a67da6bc1e52321
3
+ size 511239
data/deletes/2012/11/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c1f7edde99023fb6c844281abe1872ff0207589700449e9b9a767794e0b89c6
3
+ size 24269
data/forks/2012/11/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6696b34fc2007b5e0d251bac2932ffb8cce27859f1ec02bb45a5b7b10c1ad74b
3
+ size 120889
data/issue_comments/2012/11/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebca260c7b7936250a8125cfbf70acdb144f0f3edbe54cb2ef2986e25f92aab8
3
+ size 197164
data/issues/2012/11/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:511179fa0381e594b76ce3487adbcb15260f66f4dd59e93ba7242595ae9f874e
3
+ size 157305
data/public_events/2012/11/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:685443b7877f990f8ccc40de20b6d01a1afef26c8b3b4f837b7ae36f44736904
3
+ size 5680
data/pull_requests/2012/11/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f314d0276f57bf6d49c5b58bf1922ceae481f6ac3802ad95f36438df99a5087
3
+ size 633481
data/pushes/2012/11/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf0350202e172caad40e6c74ba28a5dacf21b2fce2459892fe6577e543a11dc7
3
+ size 9617167
data/stars/2012/11/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c975c98cb204411ecd4672bd720fdceeb6864b977fb95ca1541dc1dcf4277ce5
3
+ size 235143
data/wiki_pages/2012/11/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c9dba7f2d505f53f10a34f374fb00452bed2dc2d55b886f8034538b3ca3d764
3
+ size 191100
stats.csv CHANGED
@@ -498,4 +498,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
498
  2012-11-07,167371,1340,82774,10898,14069,5909,0,1996,13743,6213,19365,1152,0,1832,7940,0,140,0,49655063,39.9,16497843,55.9,39.9,27.4
499
  2012-11-08,150804,1226,78302,8621,12970,5517,0,1845,13064,6092,17116,1066,0,1740,3117,0,128,0,45780257,44.3,15116708,23.9,44.3,42.2
500
  2012-11-09,124196,959,64013,8766,10682,4281,0,1155,10566,4566,14734,730,0,1294,2323,0,127,0,36877665,28.2,12767214,27.1,28.2,37.7
501
- 2012-11-10,99754,905,56260,4914,6594,2767,0,492,8418,3570,12088,564,0,827,2248,0,107,0,29405064,10.5,10130660,34.5,10.5,0.0
 
 
498
  2012-11-07,167371,1340,82774,10898,14069,5909,0,1996,13743,6213,19365,1152,0,1832,7940,0,140,0,49655063,39.9,16497843,55.9,39.9,27.4
499
  2012-11-08,150804,1226,78302,8621,12970,5517,0,1845,13064,6092,17116,1066,0,1740,3117,0,128,0,45780257,44.3,15116708,23.9,44.3,42.2
500
  2012-11-09,124196,959,64013,8766,10682,4281,0,1155,10566,4566,14734,730,0,1294,2323,0,127,0,36877665,28.2,12767214,27.1,28.2,37.7
501
+ 2012-11-10,99754,905,56260,4914,6594,2767,0,492,8418,3570,12088,564,0,827,2248,0,107,0,29405064,10.5,10130660,34.5,10.5,36.8
502
+ 2012-11-11,118341,797,63709,6634,8393,3251,0,710,10376,4180,15807,705,0,1019,2656,0,104,0,34125551,24.8,11734938,46.1,24.8,0.0