tamnd commited on
Commit
738a07b
·
verified ·
1 Parent(s): c6f9a9d

Add 2013-07-07 — 159.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 **2013-07-06** (712 days), totaling **83,191,728 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 22.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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
 
@@ -71,7 +71,7 @@ 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,051,831 events in 2500 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
@@ -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,051,831 | 2500 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 █████████████████████████████░ 34.3M
141
- 2013 ██████████████████████████████ 34.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 | 178 | 34,838,743 | 195,723 | 10.6 GB | 3.3 GB | 1h48m | 4h30m | 2h20m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████████████░░░ 16.5M
156
- 2013 ██████████████████████████████ 17.8M
157
  ```
158
 
159
 
@@ -178,7 +178,7 @@ duckdb.sql("""
178
  ### Stars per year
179
 
180
  ```
181
- 2011 ████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 █████████████████████████████░ 3.3M
183
  2013 ██████████████████████████████ 3.3M
184
  ```
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 40,957,892 | 49.2% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 4,726,275 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 7,010,383 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,201,039 | 3.8% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 551,102 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 7,936,057 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 2,891,597 | 3.5% | Repository forks |
574
- | `creates` | CreateEvent | 11,545,957 | 13.9% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 672,293 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 4,002 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 865,150 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,631,553 | 2.0% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 76,081 | 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-07** (713 days), totaling **83,351,083 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 22.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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
 
 
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,051,848 events in 2504 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 1,051,848 | 2504 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 █████████████████████████████░ 34.3M
141
+ 2013 ██████████████████████████████ 35.0M
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 | 179 | 34,998,098 | 195,520 | 10.7 GB | 3.3 GB | 1h49m | 4h31m | 2h20m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████████████░░░ 16.5M
156
+ 2013 ██████████████████████████████ 17.9M
157
  ```
158
 
159
 
 
178
  ### Stars per year
179
 
180
  ```
181
+ 2011 ████████████░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 █████████████████████████████░ 3.3M
183
  2013 ██████████████████████████████ 3.3M
184
  ```
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 41,044,102 | 49.2% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 4,734,220 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 7,021,715 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,205,803 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 552,074 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 7,951,396 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 2,898,918 | 3.5% | Repository forks |
574
+ | `creates` | CreateEvent | 11,564,997 | 13.9% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 673,488 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 4,305 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 866,546 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,634,377 | 2.0% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 76,254 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/07/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd21ebf2a2ec4b77afa3f3f19d74ccfb8f4e0dd1fbcd9387251d3db7fa4bc440
3
+ size 49577
data/creates/2013/07/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27c021c7b772b61c1b594b9c533cc921b29b45385027aaf21b5339ba6f0fd450
3
+ size 688023
data/deletes/2013/07/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75c2f713961ddd21f2bcac125e02419bfa4cb4073827fa829149e6a721dfb533
3
+ size 40445
data/forks/2013/07/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5bd2a4195efe49ee2dd756756ef27cf4b9ec0db3ce505cbae530b89f055182b1
3
+ size 188453
data/issue_comments/2013/07/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddf05abf5e7ce6645bdda0e95ae4ed103d1d4c0ede7d2989143fde61ddf84f47
3
+ size 281002
data/issues/2013/07/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a690f2a6fbd46a1180244a3f53b5bc0a20730108b42c359d733ef72760d86fd
3
+ size 205179
data/public_events/2013/07/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8df3c97ea3590f8ddb9f1e7eb0f80bc6dac42e06f54a5aaf4509228bbe92dd99
3
+ size 7929
data/pull_requests/2013/07/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb454d83f5fef5efd00348204b3d7aaf4ca893a3f542999347a7a4c06e98b1f5
3
+ size 922973
data/pushes/2013/07/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea70aeb4757a52dcbe892c80401653795fccb9a9a16e4d708dd5777506014a21
3
+ size 12739010
data/stars/2013/07/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4959b798a7965e883d76267fdfb73a8e72f1dce92e9b2966a7cddf6f55c386df
3
+ size 346936
data/wiki_pages/2013/07/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:802f2b32762ecdd5193ba3ef1bf9485e5ca97f86d03b23b33f24e7fd4b8ef350
3
+ size 210157
stats.csv CHANGED
@@ -710,4 +710,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
710
  2013-07-03,230913,990,116559,12295,20465,9388,0,2668,22285,9924,27114,2000,1241,2221,3495,0,268,0,76924484,131.7,23956175,38.3,131.7,42.6
711
  2013-07-04,203593,774,102079,10559,15977,7179,0,1744,18678,9099,26284,1700,663,1833,6808,0,216,0,63994104,111.8,20260282,28.7,111.8,44.1
712
  2013-07-05,206900,856,105580,15491,19627,7592,0,1942,17023,8627,23097,1593,423,1800,3019,0,230,0,70488202,121.1,21912046,30.9,121.1,33.5
713
- 2013-07-06,137065,483,74613,7083,9772,4001,0,691,12417,6108,16836,970,510,1015,2421,0,145,0,41619586,68.9,13137637,32.5,68.9,0.0
 
 
710
  2013-07-03,230913,990,116559,12295,20465,9388,0,2668,22285,9924,27114,2000,1241,2221,3495,0,268,0,76924484,131.7,23956175,38.3,131.7,42.6
711
  2013-07-04,203593,774,102079,10559,15977,7179,0,1744,18678,9099,26284,1700,663,1833,6808,0,216,0,63994104,111.8,20260282,28.7,111.8,44.1
712
  2013-07-05,206900,856,105580,15491,19627,7592,0,1942,17023,8627,23097,1593,423,1800,3019,0,230,0,70488202,121.1,21912046,30.9,121.1,33.5
713
+ 2013-07-06,137065,483,74613,7083,9772,4001,0,691,12417,6108,16836,970,510,1015,2421,0,145,0,41619586,68.9,13137637,32.5,68.9,41.1
714
+ 2013-07-07,159355,541,86210,7945,11332,4764,0,972,15339,7321,19040,1195,303,1396,2824,0,173,0,49002639,87.7,15679684,25.7,87.7,0.0