Lister is deployed and ingestion started for the svn and git repositories [1]softwareheritage-scheduler=> select now(), visit_type, count(*) from listed_origins lo inner join listers l on l.id=lo.
lister_id where l.name='sourceforge' group by visit_type;
+-------------------------------+------------+--------+
| now | visit_type | count |
+-------------------------------+------------+--------+
| 2021-06-11 10:27:19.039597+00 | svn | 101661 |
| 2021-06-11 10:27:19.039597+00 | hg | 27521 |
| 2021-06-11 10:27:19.039597+00 | git | 180504 |
| 2021-06-11 10:27:19.039597+00 | cvs | 28622 |
| 2021-06-11 10:27:19.039597+00 | bzr | 290 |
+-------------------------------+------------+--------+
(5 rows)
Time: 295.770 ms
We need some more work for the mercurial loader and then start the ingestion for the mercurial repositories.
This will track both the ingestion monitoring and the remaining actions to trigger the hg ingestion.
[1]
```
softwareheritage-scheduler=> select now(), visit_type, count(*) from listed_origins lo inner join listers l on l.id=lo.
lister_id where l.name='sourceforge' group by visit_type;
+-------------------------------+------------+--------+
| now | visit_type | count |
+-------------------------------+------------+--------+
| 2021-06-11 10:27:19.039597+00 | svn | 101661 |
| 2021-06-11 10:27:19.039597+00 | hg | 27521 |
| 2021-06-11 10:27:19.039597+00 | git | 180504 |
| 2021-06-11 10:27:19.039597+00 | cvs | 28622 |
| 2021-06-11 10:27:19.039597+00 | bzr | 290 |
+-------------------------------+------------+--------+
(5 rows)
Time: 295.770 ms
```