tamnd commited on
Commit
b2042f9
·
verified ·
1 Parent(s): 2753929

Add 2015-08-03 — 603.7K events, 14 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 **2015-04-14** to **2015-08-02** (111 days), totaling **57,105,638 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 17.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.2 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
 
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
 
@@ -104,12 +104,12 @@ duckdb.sql("""
104
  ## Events per year
105
 
106
  ```
107
- 2015 ██████████████████████████████ 57.1M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 111 | 57,105,638 | 514,465 | 17.7 GB | 9.2 GB | 1h19m | 12h50m | 2h25m |
113
 
114
 
115
  ### Pushes per year
@@ -117,7 +117,7 @@ duckdb.sql("""
117
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
118
 
119
  ```
120
- 2015 ██████████████████████████████ 27.6M
121
  ```
122
 
123
 
@@ -584,20 +584,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
- | `pushes` | PushEvent | 27,628,728 | 48.4% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 2,666,822 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 5,244,121 | 9.2% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,860,109 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 958,463 | 1.7% | Line-level PR comments |
592
- | `stars` | WatchEvent | 5,092,126 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,912,309 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 8,096,367 | 14.2% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 1,266,870 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 191,655 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 350,686 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 521,694 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 260,567 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 55,121 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
 
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 **2015-04-14** to **2015-08-03** (112 days), totaling **57,709,348 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 17.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.3 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
 
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
 
 
104
  ## Events per year
105
 
106
  ```
107
+ 2015 ██████████████████████████████ 57.7M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 112 | 57,709,348 | 515,262 | 17.9 GB | 9.3 GB | 1h20m | 12h57m | 2h27m |
113
 
114
 
115
  ### Pushes per year
 
117
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
118
 
119
  ```
120
+ 2015 ██████████████████████████████ 27.9M
121
  ```
122
 
123
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 27,912,965 | 48.4% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 2,698,263 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 5,304,433 | 9.2% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,892,677 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 970,767 | 1.7% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 5,145,451 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,931,830 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 8,180,180 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 1,279,935 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 193,794 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 354,120 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 526,322 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 262,917 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 55,694 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbea73ec858794b4b0a52074a7d2c39b0afcd38c56e988d73f6d64d70f5cc703
3
+ size 484896
data/creates/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea0a83c668189008db3a11116639fdee0be375584399e1e8f6c380690ced696e
3
+ size 3094543
data/deletes/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:630918303202c4890b0506f951909e0cfdcf16e0ba8245d648c9c5346177da54
3
+ size 445674
data/forks/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce6c70d024228fb02477942c78c0fa181184d763a9a3e7ac136ac2a9b3ebcb07
3
+ size 2217131
data/issue_comments/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:469d26292b1b68188366d60e3eafff2b156108fc0700c378e64d2de1923f8d9f
3
+ size 11050603
data/issues/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:336d8ed0caa23375f0c9ff784d52c39b2d8c54f5a42dcb621cb8454e3ae4721f
3
+ size 8398409
data/members/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb2d6388322889f736ce78155b16d9a8c7c1dae9ddb2f14635a6c9bb34b6381a
3
+ size 102587
data/pr_review_comments/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53a4820566b72ccd686db8ae021a4ef57bd1211aee61dde5848a64062514b754
3
+ size 4248888
data/public_events/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9177d4242e4d765a30a2f603a29441147936662dd383dbe8ca296cd384d2c1d
3
+ size 26216
data/pull_requests/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6795124478d59295aa9569d3f65b61975e70177d593a7d75f3829a6b870a027b
3
+ size 5767757
data/pushes/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ceeecc3e85a4b9d1c12692cad429b9c052a7ab938b04433977611691c61c2d29
3
+ size 69937727
data/releases/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62b8da6a5eccdb6738336b866c9b0b4ce93ff282ecdc8b2e730495ec28ff434a
3
+ size 301912
data/stars/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ccc4941a2d38a13b9d7db3fc16f0ea156919670ed22b55be8bfd53c3b029538
3
+ size 1847336
data/wiki_pages/2015/08/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c95e89883350b0974cf93564e4c70d9f35fb91cc62857ef139cd0120cf4cab7b
3
+ size 341336
stats.csv CHANGED
@@ -109,4 +109,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
109
  2015-07-30,653601,0,319166,29389,63201,35205,0,13705,58243,20414,85572,13468,2362,4064,5513,2788,511,0,253447077,443.6,115802246,40.6,443.6,53.4
110
  2015-07-31,588460,0,284724,28452,56593,32135,0,11445,52723,18730,76832,13575,2342,3475,4600,2332,502,0,229954312,439.3,105624542,38.5,439.3,82.2
111
  2015-08-01,350293,0,178670,16204,27240,14719,0,3518,31754,11322,51073,7716,1437,1769,2981,1562,328,0,116625451,252.9,58879722,35.0,252.9,28.4
112
- 2015-08-02,357759,0,185599,17471,28378,15253,0,4292,31977,10856,49929,6677,1218,1692,2982,1121,314,0,120377063,261.4,60056098,31.1,261.4,0.0
 
 
109
  2015-07-30,653601,0,319166,29389,63201,35205,0,13705,58243,20414,85572,13468,2362,4064,5513,2788,511,0,253447077,443.6,115802246,40.6,443.6,53.4
110
  2015-07-31,588460,0,284724,28452,56593,32135,0,11445,52723,18730,76832,13575,2342,3475,4600,2332,502,0,229954312,439.3,105624542,38.5,439.3,82.2
111
  2015-08-01,350293,0,178670,16204,27240,14719,0,3518,31754,11322,51073,7716,1437,1769,2981,1562,328,0,116625451,252.9,58879722,35.0,252.9,28.4
112
+ 2015-08-02,357759,0,185599,17471,28378,15253,0,4292,31977,10856,49929,6677,1218,1692,2982,1121,314,0,120377063,261.4,60056098,31.1,261.4,118.2
113
+ 2015-08-03,603710,0,284237,31441,60312,32568,0,12304,53325,19521,83813,13065,2139,3434,4628,2350,573,0,235592743,432.7,108265015,34.5,432.7,0.0