tamnd commited on
Commit
a6f2529
·
verified ·
1 Parent(s): 43f9b90

Add 2011-08-13 — 37.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-12** (123 days), totaling **6,272,929 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 547.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,26 +71,26 @@ 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** — 737,865 events in 4479 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 164
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 148
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 121
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 100
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 128
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 114
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 91
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 91
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 106
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 139
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 147
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 189
90
- 13:00 █░░░░��░░░░░░░░░░░░░░░░░░░░░░░░ 222
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 278
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 362
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 470
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 ███████████████████████████░░░ 291.0K
@@ -136,7 +136,7 @@ duckdb.sql("""
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 123 | 6,272,929 | 50,999 | 1.1 GB | 547.7 MB | 24m27s | 25m16s | 54m31s |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 305.9K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 150.0K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 632.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 | 2,954,622 | 47.1% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 305,869 | 4.9% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 334,106 | 5.3% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 150,035 | 2.4% | PR lifecycle events |
554
- | `stars` | WatchEvent | 632,305 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 170,433 | 2.7% | Repository forks |
556
- | `creates` | CreateEvent | 757,733 | 12.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 72,330 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 82,346 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 132,888 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 35,261 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 5,395 | 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-13** (124 days), totaling **6,310,177 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 551.3 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** — 737,899 events in 4496 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 165
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 150
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 122
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 100
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 128
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 91
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 91
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 106
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 139
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 148
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 189
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 223
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 279
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 362
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 472
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 ███████████████████████████░░░ 291.0K
 
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 124 | 6,310,177 | 50,888 | 1.1 GB | 551.3 MB | 24m44s | 25m21s | 54m54s |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 307.9K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 151.2K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 636.1K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 2,974,250 | 47.1% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 307,930 | 4.9% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 336,754 | 5.3% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 151,168 | 2.4% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 636,133 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 171,665 | 2.7% | Repository forks |
556
+ | `creates` | CreateEvent | 762,686 | 12.1% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 72,717 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 82,871 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 133,511 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 35,458 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 5,428 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:918107d13f491ad7cf1647c9e8c26b5f255ecf2799cca66987130539b6bf274c
3
+ size 28145
data/creates/2011/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:844d3a7cf7dae551b7e9006654cd863714a771a81e9341b4f1c045f69a9d6e51
3
+ size 201120
data/deletes/2011/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af9219f9092094ca0a9505b5502d266f46bac6bec975ab58a5d9279229027d5d
3
+ size 15852
data/forks/2011/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ce51ab49f0a19b84d346af96eece849127024fff24162594025e9be60725fa5
3
+ size 66773
data/issues/2011/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1b54e93dca17b3712ca53be3ac21ac606bbfd97471b1aed5c6b2c0de8713bbe
3
+ size 71901
data/members/2011/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:face232bbb436f2609c685f6376813819b5c49d16a85d52e436499eb7b1c367a
3
+ size 11553
data/public_events/2011/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13045e0e914b87b7c0a7de31723632414a657c796822be95a96b480da7a3af32
3
+ size 3821
data/pull_requests/2011/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f49126ed43ea946a760195915f46877b73d538737ec3ca0a7d3ba3a37aea9ce
3
+ size 74152
data/pushes/2011/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba7e4461d2e9b9572e16d1ccc747fed732a578e35fd4de23377e53daab717fc5
3
+ size 3187096
data/stars/2011/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f19127d7ca3b96c1faf7aa4a9c1ae65bd7a3dc485640cb40a365195099619235
3
+ size 115488
data/wiki_pages/2011/08/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f695aa77c59d29547c715f749dfed0e97ca2b5c1448c916a8985b37873f8f491
3
+ size 55240
stats.csv CHANGED
@@ -121,4 +121,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
121
  2011-08-09,61446,0,31078,3155,4796,1914,0,0,6129,1916,8507,1166,0,914,1474,334,63,0,11183311,22.4,5876753,18.1,22.4,39.3
122
  2011-08-10,53141,0,27264,2943,4118,1734,0,0,6036,1818,6167,634,0,820,1308,250,49,0,9954929,20.8,5433167,18.4,20.8,31.1
123
  2011-08-11,56769,0,29210,3143,4193,1779,0,0,6385,1864,7388,660,0,733,1073,278,63,0,10719929,20.9,5778697,17.2,20.9,24.6
124
- 2011-08-12,52939,0,26876,2935,4672,1714,0,0,6066,1608,6161,827,0,793,1007,225,55,0,9792195,11.9,5242366,18.9,11.9,0.0
 
 
121
  2011-08-09,61446,0,31078,3155,4796,1914,0,0,6129,1916,8507,1166,0,914,1474,334,63,0,11183311,22.4,5876753,18.1,22.4,39.3
122
  2011-08-10,53141,0,27264,2943,4118,1734,0,0,6036,1818,6167,634,0,820,1308,250,49,0,9954929,20.8,5433167,18.4,20.8,31.1
123
  2011-08-11,56769,0,29210,3143,4193,1779,0,0,6385,1864,7388,660,0,733,1073,278,63,0,10719929,20.9,5778697,17.2,20.9,24.6
124
+ 2011-08-12,52939,0,26876,2935,4672,1714,0,0,6066,1608,6161,827,0,793,1007,225,55,0,9792195,11.9,5242366,18.9,11.9,22.9
125
+ 2011-08-13,37248,0,19628,2061,2648,1133,0,0,3828,1232,4953,387,0,525,623,197,33,0,6835656,4.7,3831141,16.3,4.7,0.0