tamnd commited on
Commit
46d0fa7
·
1 Parent(s): a5001a8

Add 2011-07-15 — 49.2K 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 **2011-07-14** (106 days), totaling **5,410,592 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 978.5 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 465.1 MB 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,29 +71,29 @@ 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-27** — 525,367 events in 3115 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 91
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 100
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 72
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 60
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 78
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 68
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 58
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 68
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 75
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 113
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 104
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 99
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 144
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 282
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 397
94
- 17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.4K
95
- 18:00 █████��████████████████████████ 323.0K
96
- 19:00 ███████░░░░░░░░░░░░░░░░░░░░░░░ 79.8K
97
  20:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 5.4M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 106 | 5,410,592 | 51,043 | 978.5 MB | 465.1 MB | 19m35s | 20m50s | 44m13s |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 257.5K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 124.1K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 539.7K
167
  ```
168
 
169
 
@@ -547,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
- | `pushes` | PushEvent | 2,511,813 | 46.4% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 257,545 | 4.8% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 267,499 | 4.9% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 124,131 | 2.3% | PR lifecycle events |
554
- | `stars` | WatchEvent | 539,733 | 10.0% | Repository stars |
555
- | `forks` | ForkEvent | 143,366 | 2.6% | Repository forks |
556
- | `creates` | CreateEvent | 647,577 | 12.0% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 61,138 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 69,501 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 113,540 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 30,641 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 4,502 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
 
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 **2011-07-15** (107 days), totaling **5,459,824 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 987.3 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 470.0 MB 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-27** — 613,192 events in 3592 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 110
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 111
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 86
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 67
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 92
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 89
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 72
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 77
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 84
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 125
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 119
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 116
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 158
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 181
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 248
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 310
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 428
94
+ 17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.5K
95
+ 18:00 █████████████████████████████ 323.1K
96
+ 19:00 ███████████████░░░░░░░░░░░░░░░ 167.1K
97
  20:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 5.5M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 107 | 5,459,824 | 51,026 | 987.3 MB | 470.0 MB | 19m53s | 20m58s | 44m36s |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 260.0K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 125.6K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 545.1K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 2,537,540 | 46.5% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 260,043 | 4.8% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 270,775 | 5.0% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 125,552 | 2.3% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 545,056 | 10.0% | Repository stars |
555
+ | `forks` | ForkEvent | 145,105 | 2.7% | Repository forks |
556
+ | `creates` | CreateEvent | 654,112 | 12.0% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 61,747 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 70,158 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 114,611 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 30,968 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 4,551 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c2dacbd6feb99d2bab1fbbfc76bdceaffc93c445adce7a0d37c24a79cb6307f
3
+ size 34655
data/creates/2011/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a56a76e46d121136308a0de48e3ea003214741e832ab986621799db8b1bd4fc
3
+ size 277279
data/deletes/2011/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6aaa6b47141f9f283975d045cff33dda1dd6d3afacbd1207bbd0b48660de050
3
+ size 20515
data/forks/2011/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05df476dee9a7d813ea71c33656f19405e644a03a1a2ae4dd8e1c087cdb0dfb3
3
+ size 86382
data/issues/2011/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b980f977b48d85a22ada632e50b8ab6d2c174649c879f2ade8021fb9bce94bb0
3
+ size 86919
data/members/2011/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b850fc34453f249bfbb1926f5ae52410c0c034d4d4e9034a6cff9b2c13109305
3
+ size 16437
data/public_events/2011/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30d0cad37c76c8a3e195c2861e1daf519082525e357524ec079ab15f8ec2cd89
3
+ size 4414
data/pull_requests/2011/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97e163e27e62476d16a41bf0c1cb02bb7230c537116c15d5700da6e0f3a2b2eb
3
+ size 88107
data/pushes/2011/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3a021aa6357d2e775e450a22aa2ab61ca289268d67802f020891fddbcfb4826
3
+ size 4290964
data/stars/2011/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09e54e96729f049fc0e1abe46022125c401f3f857d07ada5f942146fb37c0e6d
3
+ size 163484
data/wiki_pages/2011/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f98df3281d382e0d91611c21ab7b5d73d58788e4eb57f4e0b8f919464597b747
3
+ size 81878
stats.csv CHANGED
@@ -104,4 +104,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
104
  2011-07-11,53097,0,28106,2883,3861,1681,0,0,5832,1578,6364,498,0,703,1168,368,55,0,9988279,6.3,5512333,17.8,6.3,29.8
105
  2011-07-12,57108,0,29815,3021,4101,1780,0,0,6166,1665,7266,664,0,832,1443,296,59,0,10750976,6.4,5629137,23.1,6.4,29.0
106
  2011-07-13,55698,0,28918,3104,4087,1807,0,0,5841,1725,6864,666,0,938,1367,325,56,0,10420914,6.0,5662833,17.6,6.0,31.6
107
- 2011-07-14,53800,0,26717,3721,4197,1597,0,0,5249,1519,8046,606,0,768,1071,263,46,0,9527821,7.5,5297329,21.0,7.5,0.0
 
 
104
  2011-07-11,53097,0,28106,2883,3861,1681,0,0,5832,1578,6364,498,0,703,1168,368,55,0,9988279,6.3,5512333,17.8,6.3,29.8
105
  2011-07-12,57108,0,29815,3021,4101,1780,0,0,6166,1665,7266,664,0,832,1443,296,59,0,10750976,6.4,5629137,23.1,6.4,29.0
106
  2011-07-13,55698,0,28918,3104,4087,1807,0,0,5841,1725,6864,666,0,938,1367,325,56,0,10420914,6.0,5662833,17.6,6.0,31.6
107
+ 2011-07-14,53800,0,26717,3721,4197,1597,0,0,5249,1519,8046,606,0,768,1071,263,46,0,9527821,7.5,5297329,21.0,7.5,23.1
108
+ 2011-07-15,49232,0,25727,2498,3276,1421,0,0,5323,1739,6535,609,0,657,1071,327,49,0,9235370,7.6,5151034,18.4,7.6,0.0