-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathghtorrent-data.json
More file actions
120 lines (96 loc) · 3.04 KB
/
Copy pathghtorrent-data.json
File metadata and controls
120 lines (96 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
// Size: 1.6 GB
"users.csv": [
"id", "login", "company", "created_at", "type", "fake", "deleted", "long", "lat", "country_code", "state", "city", "location"
],
// Size: 588.7 MB
"followers.csv": [
"follower_id", "user_id", "created_at"
],
// Size: 16.1 MB
"organization_members": [
"org_id", "user_id", "created_at"
],
////////////////////////////////////////////////////////////
// Size: 11.1 GB
// Issue: description contains free text
"projects.csv": [
"id", "url", "owner_id", "name", "description", "language", "created_at", "forked_from", "deleted", "updated_at"
],
// Size: 89.8 GB
"project_commits.csv": [
"project_id", "commit_id",
],
// Size: 4.3 GB
"project_languages.csv": [
"project_id", "language", "bytes", "created_at"
],
// Size: 491.8 MB
// Useless Column: 4 (ext_ref_id)
"project_members.csv": [
"repo_id", "user_id", "created_at", "ext_ref_id"
],
// Size: 6.6 GB
// Useless table?
"repo_labels.csv": [
"id", "repo_id", "name"
],
// Size: 2.9 GB
// What are now called stars were previously known as watchers
"watchers.csv": [
"repo_id", "user_id", "created_at"
],
////////////////////////////////////////////////////////////
// Size: 68.8 GB
// Useless Column: 2 (sha)
"commits.csv": [
"id", "sha", "author_id", "committer_id", "project_id", "created_at"
],
// Size: 731.6 MB
// Issue: body contains free text
"commit_comments.csv": [
"id", "commit_id", "user_id", "body", "line", "position", "comment_id", "created_at"
],
// Size: 13.7 GB
// Useless table?
"commit_parents.csv": [
"commit_id", "parent_id"
],
////////////////////////////////////////////////////////////
// Size: 3.0 GB
"issues.csv": [
"id", "repo_id", "reporter_id", "assignee_id", "pull_request", "pull_request_id", "created_at", "issue_id"
],
// Size: 4.1 GB
"issue_comments.csv": [
"issue_id", "user_id", "comment_id", "created_at"
],
// Size: 4.9 GB
// Useless Column: 5 (action_specific)
"issue_events.csv": [
"event_id", "issue_id", "actor_id", "action", "action_specific", "created_at"
],
// Size: 262.6 MB
// Useless table?
"issue_labels": [
"label_id", "issue_id"
],
////////////////////////////////////////////////////////////
// Size: 1.2 GB
"pull_requests.csv": [
"id", "head_repo_id", "base_repo_id", "head_commit_id", "base_commit_id", "pullreq_id", "intra_branch"
],
// Size: 2.7 GB
// Issue: body contains free text
"pull_request_comments.csv": [
"pull_request_id", "user_id", "comment_id", "position", "body", "commit_id", "created_at"
],
// Size: 2.3 GB
"pull_request_commits.csv": [
"pull_request_id", "commit_id"
],
// Size: 3.5 GB
"pull_request_history.csv": [
"id", "pull_request_id", "created_at", "action", "actor_id"
],
}