tamnd commited on
Commit
4878baa
·
verified ·
1 Parent(s): 87d8676

Add 2013-07-29 — 241.8K 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 **2013-07-28** (734 days), totaling **87,800,375 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 24.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.3 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,14 +71,14 @@ 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** — 1,139,653 events in 2824 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 ██████████████████████████████ 272.7K
79
  02:00 █████████████████████████████░ 271.6K
80
  03:00 █████████████████████████████░ 272.6K
81
- 04:00 █████████░░░░░░░░░░░░░░░░░░░░░ 87.4K
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
84
  07: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 | 1,139,653 | 2824 |
107
 
108
 
109
  ### Live event schema
@@ -137,15 +137,15 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 14.1M
140
- 2012 █████████████████████████░░░░ 34.3M
141
- 2013 ██████████████████████████████ 39.4M
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 | 200 | 39,447,390 | 197,236 | 12.0 GB | 3.7 GB | 2h02m | 5h15m | 2h38m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ████████████████████████░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 20.2M
157
  ```
158
 
159
 
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 43,357,438 | 49.4% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,969,267 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 7,406,289 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,372,903 | 3.8% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 600,663 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 8,366,885 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,093,775 | 3.5% | Repository forks |
574
- | `creates` | CreateEvent | 12,075,336 | 13.8% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 709,429 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 12,215 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 908,348 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,706,521 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 80,528 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
 
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-07-29** (735 days), totaling **88,042,207 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 24.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.3 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** — 1,141,409 events in 2829 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 ██████████████████████████████ 272.7K
79
  02:00 █████████████████████████████░ 271.6K
80
  03:00 █████████████████████████████░ 272.6K
81
+ 04:00 █████████░░░░░░░░░░░░░░░░░░░░░ 89.2K
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
84
  07:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 1,141,409 | 2829 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 █████████████████████████░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 39.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 | 201 | 39,689,222 | 197,458 | 12.1 GB | 3.8 GB | 2h02m | 5h16m | 2h39m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ████████████████████████░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 20.3M
157
  ```
158
 
159
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 43,479,042 | 49.4% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,982,488 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 7,428,935 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,382,844 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 603,688 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 8,390,641 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,104,033 | 3.5% | Repository forks |
574
+ | `creates` | CreateEvent | 12,102,741 | 13.7% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 711,488 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 12,647 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 910,555 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,710,649 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 80,742 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/07/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b99bbc0225b6db0d90544fa895cbb712de880cb1f437f1865b58ec19d3b37ec8
3
+ size 78079
data/creates/2013/07/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad32afdf7767d7ef96e69102e337addd519bf3e017c5676ebce71c876d9e2267
3
+ size 1016123
data/deletes/2013/07/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6cc78d39a16a0bd6db62e8d2712f9750e0277f19f4879b5be34e1c1f5124c526
3
+ size 69444
data/forks/2013/07/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb1c7d3d2c6c4be93f62752d79e9718ac3d0c9ccdb43c265feb9f5cdc9e0a11c
3
+ size 271416
data/issue_comments/2013/07/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7e8b9634e369063f3ae7c30968380e9f940eccdf5dff7383024c9e18af046ab
3
+ size 600075
data/issues/2013/07/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7e0261a5dda6913e3a472146f79efa1b0c414d6c3c9aa29e4ae11bd747430fd
3
+ size 342579
data/public_events/2013/07/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60784c2c7faeadb21b907aab3bd99d77d92ba2c4c94be9752af7e881ab2eb2c1
3
+ size 9584
data/pull_requests/2013/07/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7542bbeb4035670e8be7974bdd6d435432201f027b838704971f8058fe3c1302
3
+ size 1842092
data/pushes/2013/07/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:212a7dc3b2d29f87b67033d95fd1deb5772064f7ffce21454e0f37a03a81f991
3
+ size 19687543
data/stars/2013/07/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19abed79ac1ca6af60a1c7511203c29ca7d8f52fba9ac55f072bfeaaae848146
3
+ size 512864
data/wiki_pages/2013/07/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20a828410dc94f844266e834de655c03ec71956ccef6662573f00e0cbdf071fb
3
+ size 312654
stats.csv CHANGED
@@ -732,4 +732,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
732
  2013-07-25,243725,988,124027,13305,22491,9976,0,2959,22247,10493,28432,2042,384,2399,3778,0,204,0,82468069,151.3,26540542,36.7,151.3,29.7
733
  2013-07-26,215421,908,109232,11638,19792,8681,0,2737,20456,8864,25313,1763,405,1949,3481,0,202,0,71882460,136.4,22219528,43.2,136.4,36.1
734
  2013-07-27,144526,620,76831,8082,10745,4717,0,875,14128,6147,17306,1042,278,1297,2341,0,117,0,44563095,84.7,13917214,39.7,84.7,45.6
735
- 2013-07-28,157249,527,83221,9014,12590,4743,0,990,15598,6515,18510,1136,284,1338,2638,0,145,0,48146376,91.7,15204727,28.1,91.7,0.0
 
 
732
  2013-07-25,243725,988,124027,13305,22491,9976,0,2959,22247,10493,28432,2042,384,2399,3778,0,204,0,82468069,151.3,26540542,36.7,151.3,29.7
733
  2013-07-26,215421,908,109232,11638,19792,8681,0,2737,20456,8864,25313,1763,405,1949,3481,0,202,0,71882460,136.4,22219528,43.2,136.4,36.1
734
  2013-07-27,144526,620,76831,8082,10745,4717,0,875,14128,6147,17306,1042,278,1297,2341,0,117,0,44563095,84.7,13917214,39.7,84.7,45.6
735
+ 2013-07-28,157249,527,83221,9014,12590,4743,0,990,15598,6515,18510,1136,284,1338,2638,0,145,0,48146376,91.7,15204727,28.1,91.7,30.0
736
+ 2013-07-29,241832,936,121604,13221,22646,9941,0,3025,23756,10258,27405,2059,432,2207,4128,0,214,0,80951334,83.3,24742453,29.3,83.3,0.0