-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Reduce the number of fetches when harvesting one package #464
Comments
Sample log from processing a maven package: 3 maven fetches were dispatched.
|
qtomlinson
changed the title
Fetch triggered multiple times when harvesting one package
Reduce the number of round trips to repository when harvesting one package
Feb 22, 2022
qtomlinson
changed the title
Reduce the number of round trips to repository when harvesting one package
Reduce the number of fetches when harvesting one package
Mar 1, 2022
For example, when harvesting a maven central component, the following fetches were incurred:
Of the six fetches, two fetches (one to the maven central repository and one to git source repository) are necessary. |
Work involved:
|
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Package fetch from repository is triggered multiple times during harvesting one package. The fetch is currently dispatched once per processor (e.g. licensee or scancode). A package is processed by 3 processors at the moment, resulting in 3 round trips to the repository. Presumably, only one fetch from the repository is necessary.
The text was updated successfully, but these errors were encountered: