tamnd commited on
Commit
0e6035e
·
verified ·
1 Parent(s): 584911a

Add 2013-05-28 — 236.8K 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 **2013-05-27** (672 days), totaling **74,959,705 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 20.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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,13 +71,13 @@ 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** — 928,472 events in 2131 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.2K
78
  01:00 ██████████████████████████████ 272.6K
79
  02:00 █████████████████████████████░ 271.4K
80
- 03:00 ████████████████░░░░░░░░░░░░░░ 149.2K
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06: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 | 928,472 | 2131 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
- 2013 ███████████████████████░░░░░░░ 26.6M
142
  ```
143
 
144
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
145
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
146
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
147
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
148
- | 2013 | 138 | 26,606,720 | 192,802 | 8.1 GB | 2.5 GB | 1h23m | 3h22m | 1h51m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
- 2013 ████████████████████████░░░░░░ 13.6M
157
  ```
158
 
159
 
@@ -171,7 +171,7 @@ duckdb.sql("""
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
- 2013 ███████████████████░░░░░░░░░░░ 978.9K
175
  ```
176
 
177
 
@@ -564,19 +564,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 36,780,332 | 49.1% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,250,842 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 6,288,694 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 2,888,027 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 470,555 | 0.6% | Line-level PR comments |
572
- | `stars` | WatchEvent | 7,186,312 | 9.6% | Repository stars |
573
- | `forks` | ForkEvent | 2,578,581 | 3.4% | Repository forks |
574
- | `creates` | CreateEvent | 10,552,098 | 14.1% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 604,567 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 789,590 | 1.1% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 1,416,822 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
- | `public_events` | PublicEvent | 67,729 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
 
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 **2013-05-28** (673 days), totaling **75,196,526 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 20.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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** — 930,627 events in 2140 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.2K
78
  01:00 ██████████████████████████████ 272.6K
79
  02:00 █████████████████████████████░ 271.4K
80
+ 03:00 ████████████████░░░░░░░░░░░░░░ 151.3K
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 930,627 | 2140 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 ███████████████████████░░░░░░░ 26.8M
142
  ```
143
 
144
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
145
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
146
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
147
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
148
+ | 2013 | 139 | 26,843,541 | 193,119 | 8.2 GB | 2.5 GB | 1h24m | 3h23m | 1h52m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
+ 2013 ████████████████████████░░░░░░ 13.7M
157
  ```
158
 
159
 
 
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
+ 2013 ███████████████████░░░░░░░░░░░ 988.6K
175
  ```
176
 
177
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 36,901,306 | 49.1% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,264,823 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 6,310,149 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 2,897,688 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 472,920 | 0.6% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 7,209,826 | 9.6% | Repository stars |
573
+ | `forks` | ForkEvent | 2,587,250 | 3.4% | Repository forks |
574
+ | `creates` | CreateEvent | 10,578,664 | 14.1% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 606,626 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 791,882 | 1.1% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,420,705 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 67,945 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/05/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb097a53e468fce2bac11d18308fe1e29a685b1d2739fc8935a1f102878ed01e
3
+ size 80513
data/creates/2013/05/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae0224549143f957d628e77af47cdd47186d67a175dd2653c6934ad43ab6945a
3
+ size 996000
data/deletes/2013/05/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38ed92708e67ec6d42777aadd1515393160aeafce97d90de30fdee4048af5d6b
3
+ size 69858
data/forks/2013/05/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb3cdaa2f15c38a8d488b5b9a67869e8c55eb8c7d1995a3462fa4b5d534aae0d
3
+ size 264128
data/issue_comments/2013/05/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1b3a2b8b9bd7f6bdb60a1d362e56d3c1141853d486812162797f238500ea4a5
3
+ size 608873
data/issues/2013/05/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a0bdfc4958a02b80566920c25aab0e7f6108837cbbd9a2c5a5daefdcfa0d16b
3
+ size 334393
data/public_events/2013/05/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76966cad349ddd9597e6bcc8ce6e47da032eae964e3175ef35a2a42705aa12c5
3
+ size 9590
data/pull_requests/2013/05/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51e68dd5bb1e354dd54d65278837fdc8459b9116ecb5c79b361ae917e4821bde
3
+ size 1742024
data/pushes/2013/05/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4c8c689992a9e82e04e530a5fe49b37eb900c814a5898be733b7c34a6ee815c
3
+ size 19896512
data/stars/2013/05/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f73f86c9895329ca5a909854e1f3a6e2138faa0876697d21b9602b65afc0bcd
3
+ size 526633
data/wiki_pages/2013/05/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a9dbda3d07622997426a9497c66a52b9bc0c307fddbb35badf6d69255220657
3
+ size 202062
stats.csv CHANGED
@@ -670,4 +670,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
670
  2013-05-24,205849,999,106282,16066,17432,8422,0,1767,18540,7150,22119,1802,0,1886,3203,0,181,0,69192593,33.5,21179914,50.6,33.5,32.3
671
  2013-05-25,137552,599,76569,6925,10280,4524,0,758,12632,5008,15833,1125,0,1016,2148,0,135,0,44954441,22.4,14950164,42.6,22.4,40.0
672
  2013-05-26,161823,499,85138,10896,17475,4456,0,784,14562,5464,17078,1117,0,1125,3113,0,116,0,48290919,23.0,15657153,25.7,23.0,35.0
673
- 2013-05-27,217251,952,110645,17990,23139,7319,0,1608,18617,7428,22498,1563,0,1977,3325,0,190,0,72273637,35.2,23239285,48.6,35.2,0.0
 
 
670
  2013-05-24,205849,999,106282,16066,17432,8422,0,1767,18540,7150,22119,1802,0,1886,3203,0,181,0,69192593,33.5,21179914,50.6,33.5,32.3
671
  2013-05-25,137552,599,76569,6925,10280,4524,0,758,12632,5008,15833,1125,0,1016,2148,0,135,0,44954441,22.4,14950164,42.6,22.4,40.0
672
  2013-05-26,161823,499,85138,10896,17475,4456,0,784,14562,5464,17078,1117,0,1125,3113,0,116,0,48290919,23.0,15657153,25.7,23.0,35.0
673
+ 2013-05-27,217251,952,110645,17990,23139,7319,0,1608,18617,7428,22498,1563,0,1977,3325,0,190,0,72273637,35.2,23239285,48.6,35.2,46.6
674
+ 2013-05-28,236821,1186,120974,13981,21455,9661,0,2365,23514,8669,26566,2059,0,2292,3883,0,216,0,78034327,43.4,24730586,45.3,43.4,0.0