tamnd commited on
Commit
aead44f
·
verified ·
1 Parent(s): 666fb75

Add 2013-03-30 — 144.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 **2013-03-29** (613 days), totaling **62,948,851 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 16.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.9 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,12 +71,12 @@ 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** — 665,190 events in 1412 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.1K
78
  01:00 ██████████████████████████████ 272.5K
79
- 02:00 █████████████████░░░░░░░░░░░░░ 157.6K
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
82
  05: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 | 665,190 | 1412 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
- 2013 ████████████░░░░░░░░░░░░░░░░░░ 14.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 | 79 | 14,595,866 | 184,757 | 4.4 GB | 1.4 GB | 45m28s | 1h58m | 53m53s |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
- 2013 █████████████░░░░░░░░░░░░░░░░░ 7.4M
157
  ```
158
 
159
 
@@ -162,7 +162,7 @@ duckdb.sql("""
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ██████████████████████████████ 1.9M
165
- 2013 █████████████░░░░░░░░░░░░░░░░░ 886.7K
166
  ```
167
 
168
 
@@ -171,7 +171,7 @@ duckdb.sql("""
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
- 2013 ██████████░░░░░░░░░░░░░░░░░░░░ 532.7K
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 | 30,550,610 | 48.5% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 3,560,837 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 5,158,033 | 8.2% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 2,441,836 | 3.9% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 364,038 | 0.6% | Line-level PR comments |
572
- | `stars` | WatchEvent | 6,066,786 | 9.6% | Repository stars |
573
- | `forks` | ForkEvent | 2,138,715 | 3.4% | Repository forks |
574
- | `creates` | CreateEvent | 9,200,058 | 14.6% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 506,021 | 0.8% | Branch/tag deletion |
576
- | `commit_comments` | CommitCommentEvent | 677,150 | 1.1% | Comments on commits |
577
- | `wiki_pages` | GollumEvent | 1,215,945 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
579
- | `public_events` | PublicEvent | 56,854 | 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-03-30** (614 days), totaling **63,093,196 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 16.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.9 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** — 667,184 events in 1416 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.1K
78
  01:00 ██████████████████████████████ 272.5K
79
+ 02:00 █████████████████░░░░░░░░░░░░░ 159.6K
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 667,184 | 1416 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ██████████████████████████████ 34.3M
141
+ 2013 ████████████░░░░░░░░░░░░░░░░░░ 14.7M
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 | 80 | 14,740,211 | 184,252 | 4.4 GB | 1.4 GB | 45m54s | 2h00m | 54m28s |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ████████████░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ██████████████████████████████ 16.5M
156
+ 2013 █████████████░░░░░░░░░░░░░░░░░ 7.5M
157
  ```
158
 
159
 
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ██████████████████████████████ 1.9M
165
+ 2013 █████████████░░░░░░░░░░░░░░░░░ 894.1K
166
  ```
167
 
168
 
 
171
  ```
172
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ██████████████████████████████ 1.5M
174
+ 2013 ██████████░░░░░░░░░░░░░░░░░░░░ 537.2K
175
  ```
176
 
177
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 30,630,639 | 48.5% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 3,568,230 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 5,168,850 | 8.2% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 2,446,306 | 3.9% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 364,839 | 0.6% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 6,080,301 | 9.6% | Repository stars |
573
+ | `forks` | ForkEvent | 2,143,943 | 3.4% | Repository forks |
574
+ | `creates` | CreateEvent | 9,216,329 | 14.6% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 506,953 | 0.8% | Branch/tag deletion |
576
+ | `commit_comments` | CommitCommentEvent | 678,362 | 1.1% | Comments on commits |
577
+ | `wiki_pages` | GollumEvent | 1,218,644 | 1.9% | Wiki page edits |
578
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
579
+ | `public_events` | PublicEvent | 56,956 | 0.1% | Repo made public |
580
 
581
  ## How it's built
582
 
data/commit_comments/2013/03/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0e6f777a65cfbe13309865c0ebcab3edcd49f0c9e11e7afd5bb0e8c432d16d8
3
+ size 47818
data/creates/2013/03/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2da4944c47b7140b84b82cf01f778b9739600d84628ef0cc72a56bc716dc16d2
3
+ size 679963
data/deletes/2013/03/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:534e334e6018e868313febad2436f57127f992323222bff8b84883ee1d2e0785
3
+ size 33517
data/forks/2013/03/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18146348141bdbb252c63004092a25a7b30017a2c25a3a1175d7262bc8fd684c
3
+ size 142696
data/issue_comments/2013/03/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c8353ab9353f25862595c5ed6ef9ba3008fcfc4342c32f5e6a8e99807468ecd
3
+ size 267179
data/issues/2013/03/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7332f4843bc260dfde9e68191962cd2088095c4f88fb4553df6adecd851cd2d
3
+ size 187012
data/public_events/2013/03/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bba93f5e939f5b38c694cfcceb6e874d38cb2e56586e8cbc82facb528abdc054
3
+ size 5651
data/pull_requests/2013/03/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26442c3119e338dbf1903c29c6a5e1d044abaa9c889a833420ae4050aadf1eda
3
+ size 859058
data/pushes/2013/03/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ef9e0ede7f8d1dd36edf1e0b2871ff22ef69b1d9606903056e0ccc39fcdcdfb
3
+ size 12030399
data/stars/2013/03/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63dbacea979797fdd0cf5a4d4306e647fe0f3b9b5357b6019ae9edd18f68d619
3
+ size 309179
data/wiki_pages/2013/03/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d39c8601c530a5fc5b832445c56ebc58b0b3d3b5ef02626a7b83e635d5e83dd0
3
+ size 200418
stats.csv CHANGED
@@ -611,4 +611,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
611
  2013-03-26,240524,1573,116972,26622,20157,8823,0,2116,22636,8717,24989,1817,0,2076,3809,0,217,0,74497767,163.8,22745046,33.6,163.8,39.1
612
  2013-03-27,239110,1606,115132,23776,21887,9368,0,2483,22379,9092,25110,1825,0,2301,3942,0,209,0,75471826,163.1,23132503,42.1,163.1,47.9
613
  2013-03-28,218204,1244,111273,12669,20535,8687,0,2092,21143,8503,24044,1758,0,2282,3783,0,191,0,70699737,140.5,21807930,33.7,140.5,50.4
614
- 2013-03-29,185506,1068,98953,9488,16105,6817,0,1747,17929,7296,19541,1480,0,1863,3042,0,177,0,60302402,121.9,18610499,26.0,121.9,0.0
 
 
611
  2013-03-26,240524,1573,116972,26622,20157,8823,0,2116,22636,8717,24989,1817,0,2076,3809,0,217,0,74497767,163.8,22745046,33.6,163.8,39.1
612
  2013-03-27,239110,1606,115132,23776,21887,9368,0,2483,22379,9092,25110,1825,0,2301,3942,0,209,0,75471826,163.1,23132503,42.1,163.1,47.9
613
  2013-03-28,218204,1244,111273,12669,20535,8687,0,2092,21143,8503,24044,1758,0,2282,3783,0,191,0,70699737,140.5,21807930,33.7,140.5,50.4
614
+ 2013-03-29,185506,1068,98953,9488,16105,6817,0,1747,17929,7296,19541,1480,0,1863,3042,0,177,0,60302402,121.9,18610499,26.0,121.9,35.1
615
+ 2013-03-30,144345,876,80029,7393,10817,4470,0,801,13515,5228,16271,932,0,1212,2699,0,102,0,44552812,85.8,14762890,25.6,85.8,0.0