tamnd commited on
Commit
fd3225e
·
verified ·
1 Parent(s): dc1e79a

Add 2011-07-28 — 56.4K 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-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,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** — 684,722 events in 4047 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 127
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 121
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 103
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 83
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 109
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 98
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 85
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 84
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 96
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 130
88
  11:00 █░░░░��░░░░░░░░░░░░░░░░░░░░░░░░ 132
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 204
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 260
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 337
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 449
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.5K
95
  18:00 ██████████████████████████████ 323.2K
96
- 19:00 ██████████████████████░░░░░░░░ 238.2K
97
  20:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -131,39 +131,39 @@ duckdb.sql("""
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 | 44m54s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 2.5M
146
  ```
147
 
148
 
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,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
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
 
 
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-31** (111 days), totaling **5,640,021 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 1019.1 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 487.7 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** — 684,798 events in 4089 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 130
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 124
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 105
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 83
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 109
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 100
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 85
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 86
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 97
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134
88
  11:00 █░░░░��░░░░░░░░░░░░░░░░░░░░░░░░ 132
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 180
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 204
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 260
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 338
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 451
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.5K
95
  18:00 ██████████████████████████████ 323.2K
96
+ 19:00 ██████████████████████░░░░░░░░ 238.3K
97
  20:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 5.6M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 111 | 5,640,021 | 50,811 | 1019.1 MB | 487.7 MB | 21m02s | 21m54s | 44m54s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 2.6M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 269.3K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 130.8K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 564.8K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 2,631,507 | 46.7% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 269,342 | 4.8% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 283,935 | 5.0% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 130,779 | 2.3% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 564,783 | 10.0% | Repository stars |
555
+ | `forks` | ForkEvent | 150,561 | 2.7% | Repository forks |
556
+ | `creates` | CreateEvent | 677,433 | 12.0% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 64,123 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 72,757 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 118,510 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 31,952 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 4,733 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:855568593adf33aaa5126b93fb96cf6e8d363819a5f4cb793e84c35173cd4a6d
3
+ size 42832
data/creates/2011/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad531b011b12103acd02232f72f513a8d24df42a712c969ef417a8b276c98609
3
+ size 274527
data/deletes/2011/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d647a6d3006026f79c290864e954c4afbe00ae1abc79e3508ba43b3e5d9f1e2a
3
+ size 23012
data/forks/2011/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45a790d7e921e470b199aff791a7caddc214f9e6bc5dcf03a731ff8ab5267b59
3
+ size 91465
data/issues/2011/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2ab134c18a68bc981bac42bcdbb0cb5f1d6ffe7e70062e3feebe878d6c2cdfd
3
+ size 103676
data/members/2011/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd78c2b5b40df095e8d1c412dc79e527395669e941bd16f60dcf389cfb72ad6f
3
+ size 16293
data/public_events/2011/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3beccc214674fc9cf3d8e2e8cd781ba114bf1780586ee7a83343862c0f6ad48b
3
+ size 4461
data/pull_requests/2011/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db82ef00c3c26d8a9bf2dab89214052ed266f1ed68cfbde3f87f84bbe5c89321
3
+ size 113544
data/pushes/2011/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b4dbf736d9f85e1a7135ed402af1e056c60e8e9144226fd91ad736d80cfb17e
3
+ size 5093398
data/stars/2011/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7f5d05e282dbf55f2c164cc89628b4ba65f52d7415abcc56211eb3167a46533
3
+ size 194189
data/wiki_pages/2011/07/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f9a454abbf51a23014d750e750cdca0530841216b8e34247f808608fe6ef6b6
3
+ size 79319
stats.csv CHANGED
@@ -106,3 +106,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,18.7
 
 
 
 
 
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,18.7
109
+ 2011-07-28,56358,0,29500,3021,4520,1871,0,0,6379,1716,6503,615,0,875,998,313,47,0,10706435,17.1,6036716,22.1,17.1,0.0
110
+ 2011-07-29,54127,0,27086,2985,4143,1605,0,0,5667,1663,7901,694,0,753,1281,276,73,0,9881968,15.5,5375448,16.2,15.5,0.0
111
+ 2011-07-30,32233,0,17422,1519,2118,841,0,0,3509,926,4293,272,0,442,639,225,27,0,5963077,11.1,3373933,14.9,11.1,0.0
112
+ 2011-07-31,37479,0,19959,1774,2379,910,0,0,4172,1151,4624,795,0,529,981,170,35,0,6799231,12.1,3776481,15.8,12.1,0.0