tamnd commited on
Commit
7774ee8
·
verified ·
1 Parent(s): dc91543

Add 2011-08-29 — 63.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-08-28** (139 days), totaling **7,104,226 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 1.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 625.4 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,30 +71,30 @@ 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** — 778,652 events in 4688 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 174
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 155
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 133
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 93
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 110
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 153
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 145
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 231
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 288
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 369
93
- 16:00 █░░░░��░░░░░░░░░░░░░░░░░░░░░░░░ 479
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
- 19:00 █████████████████████████████░ 315.8K
97
- 20:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 15.8K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 7.1M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 139 | 7,104,226 | 51,109 | 1.2 GB | 625.4 MB | 29m39s | 27m21s | 1h01m |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 354.5K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 174.7K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 730.3K
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 | 3,374,894 | 47.5% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 354,511 | 5.0% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 401,692 | 5.7% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 174,738 | 2.5% | PR lifecycle events |
554
- | `stars` | WatchEvent | 730,303 | 10.3% | Repository stars |
555
- | `forks` | ForkEvent | 197,239 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 859,841 | 12.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 81,549 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 93,245 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 150,677 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 39,664 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 6,267 | 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-08-30** (141 days), totaling **7,230,481 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 1.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 637.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** — 781,477 events in 4704 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 174
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 155
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 93
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 110
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 153
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 147
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 231
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 288
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 371
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 481
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
+ 19:00 █████████████████████████████░ 315.9K
97
+ 20:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 18.6K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 7.2M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 141 | 7,230,481 | 51,280 | 1.3 GB | 637.0 MB | 30m36s | 27m38s | 1h01m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 362.4K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 178.7K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 745.2K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 3,438,060 | 47.5% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 362,446 | 5.0% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 412,050 | 5.7% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 178,673 | 2.5% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 745,209 | 10.3% | Repository stars |
555
+ | `forks` | ForkEvent | 201,180 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 875,297 | 12.1% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 82,959 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 94,795 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 153,372 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 40,397 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 6,437 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/08/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:135d29a6af5ac452dfb4587da26961cc9488bec6aba7e96d173dacf6ac17c13c
3
+ size 40018
data/creates/2011/08/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39a9eb42edbb46871aa090c66c17fd0692726ff38c378bb2e78da207fe08ff7a
3
+ size 315047
data/deletes/2011/08/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:837c25ef8116ddbe3956fc100931ad2699928bac459c8056218c5136c3553451
3
+ size 24842
data/forks/2011/08/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad62b7486993d13c572ac30e7f35492390a0c2c59277b8aa3a2ce0d81f2d4fb5
3
+ size 93695
data/issues/2011/08/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5556bc4dab9dc4af80f503b0648669e92b28c6971ac830f2739616571f1e782d
3
+ size 128273
data/members/2011/08/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1783049eb54ef4dc78004cd00865fc6d846830a4e3c19b8556901348a1056e0b
3
+ size 17518
data/public_events/2011/08/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3ada211435aecfee080c3ada02e32fb6c4e9c1c54da6414e673bb061d596ad5
3
+ size 6174
data/pull_requests/2011/08/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b8235a515455f2e59d8bba036666f41bb06bbb6be63fa4b6131a0f592b6fe37
3
+ size 114872
data/pushes/2011/08/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9608fea2cc7ac3ffeab6fa1ceccd260f62e3c5f7c518633a47572aad45c1a23
3
+ size 4938416
data/stars/2011/08/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:735bcee36eee9b5799e29de2b31d1f1a1d879ea0983585fcbea84a3945059828
3
+ size 210737
data/wiki_pages/2011/08/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1315b04e81a9213a0d1632f8f552ee90c048c35526deec15cab87196f30255f7
3
+ size 98193
stats.csv CHANGED
@@ -137,4 +137,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
137
  2011-08-25,60887,0,30997,3351,4897,2024,0,0,7065,1960,7600,577,0,729,1284,333,70,0,11228802,8.9,5808356,18.1,8.9,27.2
138
  2011-08-26,56696,0,28739,3079,4280,1825,0,0,6734,1851,7053,725,0,725,1303,320,62,0,10570210,7.6,5633764,17.3,7.6,21.9
139
  2011-08-27,39226,0,20392,2160,2681,1032,0,0,4697,1359,4959,430,0,510,746,214,46,0,7038033,5.4,3832513,14.9,5.4,28.3
140
- 2011-08-28,40998,0,21296,2203,2778,1146,0,0,4951,1551,5173,456,0,409,806,184,45,0,7203720,4.9,3900883,16.3,4.9,0.0
 
 
 
137
  2011-08-25,60887,0,30997,3351,4897,2024,0,0,7065,1960,7600,577,0,729,1284,333,70,0,11228802,8.9,5808356,18.1,8.9,27.2
138
  2011-08-26,56696,0,28739,3079,4280,1825,0,0,6734,1851,7053,725,0,725,1303,320,62,0,10570210,7.6,5633764,17.3,7.6,21.9
139
  2011-08-27,39226,0,20392,2160,2681,1032,0,0,4697,1359,4959,430,0,510,746,214,46,0,7038033,5.4,3832513,14.9,5.4,28.3
140
+ 2011-08-28,40998,0,21296,2203,2778,1146,0,0,4951,1551,5173,456,0,409,806,184,45,0,7203720,4.9,3900883,16.3,4.9,22.3
141
+ 2011-08-29,63244,0,31840,4291,5340,1907,0,0,7322,1811,7541,628,0,833,1274,368,89,0,11468336,8.8,5987785,29.3,8.8,0.0
142
+ 2011-08-30,63011,0,31326,3644,5018,2028,0,0,7584,2130,7915,782,0,717,1421,365,81,0,11598521,8.2,6165324,28.0,8.3,0.0