You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Augur NEW Release v0.76.1
1
+
# Augur NEW Release v0.76.2
2
2
3
3
Augur is primarily a data engineering tool that makes it possible for data scientists to gather open source software community data. Less data carpentry for everyone else!
4
4
The primary way of looking at Augur data is through [8Knot](https://github.com/oss-aspen/8knot) ... A public instance of 8Knot is available at https://metrix.chaoss.io ... That is tied to a public instance of Augur at https://ai.chaoss.io
@@ -10,7 +10,7 @@ The primary way of looking at Augur data is through [8Knot](https://github.com/o
10
10
## NEW RELEASE ALERT!
11
11
### [If you want to jump right in, updated docker build/compose and bare metal installation instructions are available here](docs/new-install.md)
12
12
13
-
Augur is now releasing a dramatically improved new version to the main branch. It is also available here: https://github.com/chaoss/augur/releases/tag/v0.76.1
13
+
Augur is now releasing a dramatically improved new version to the main branch. It is also available here: https://github.com/chaoss/augur/releases/tag/v0.76.2
14
14
15
15
- The `main` branch is a stable version of our new architecture, which features:
16
16
- Dramatic improvement in the speed of large scale data collection (100,000+ repos). All data is obtained for 100k+ repos within 2 weeks.
MAX ( C.data_collection_date ) AS most_recent_collection
112
+
FROM
113
+
(
114
+
SELECT A.rg_name AS rg_name,
115
+
A.repo_group_id AS repo_group_id,
116
+
b.repo_name AS repo_name,
117
+
b.repo_id AS repo_id,
118
+
b.repo_git AS repo_git,
119
+
b.forked_from AS forked_from,
120
+
b.repo_archived AS repo_archived
121
+
FROM
122
+
repo_groups A,
123
+
repo b
124
+
WHERE
125
+
A.repo_group_id = b.repo_group_id
126
+
ORDER BY
127
+
rg_name,
128
+
repo_name
129
+
) d,
130
+
(
131
+
SELECT DISTINCT
132
+
f.repo_id,
133
+
f.NAME,
134
+
f.libyear,
135
+
f.data_collection_date
136
+
FROM
137
+
( SELECT repo_id, NAME, MAX ( data_collection_date ) AS data_collection_date FROM augur_data.repo_deps_libyear WHERE repo_id = :repo_id GROUP BY repo_id, NAME ORDER BY NAME ) e,
138
+
augur_data.repo_deps_libyear f
139
+
WHERE
140
+
e.data_collection_date = f.data_collection_date and
MAX ( C.data_collection_date ) AS most_recent_collection
181
+
FROM
182
+
(
183
+
SELECT A.rg_name AS rg_name,
184
+
A.repo_group_id AS repo_group_id,
185
+
b.repo_name AS repo_name,
186
+
b.repo_id AS repo_id,
187
+
b.repo_git AS repo_git,
188
+
b.forked_from AS forked_from,
189
+
b.repo_archived AS repo_archived
190
+
FROM
191
+
repo_groups A,
192
+
repo b
193
+
WHERE
194
+
A.repo_group_id = b.repo_group_id
195
+
ORDER BY
196
+
rg_name,
197
+
repo_name
198
+
) d,
199
+
(
200
+
SELECT DISTINCT
201
+
f.repo_id,
202
+
f.NAME,
203
+
f.libyear,
204
+
f.data_collection_date
205
+
FROM
206
+
( SELECT repo_id, NAME, MAX ( data_collection_date ) AS data_collection_date FROM augur_data.repo_deps_libyear GROUP BY repo_id, NAME ORDER BY NAME ) e,
207
+
augur_data.repo_deps_libyear f
208
+
WHERE
209
+
e.data_collection_date = f.data_collection_date and
0 commit comments