Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve execution speed (e.g. use asyncio) #10

Open
bittner opened this issue Mar 14, 2019 · 0 comments
Open

Improve execution speed (e.g. use asyncio) #10

bittner opened this issue Mar 14, 2019 · 0 comments
Labels
enhancement New feature or request

Comments

@bittner
Copy link
Contributor

bittner commented Mar 14, 2019

Due to GitLab's API design the CLI makes a lot of separate queries, which slows down the execution time. This is typically at least O(n ²) time due to nested loops combined with general slowness as API calls to an external service are performed each time.

This can most probably not be fixed via algorithmic changes, but requires parallelization. We may tackle this using Python's asyncio module. See the recording of Michael Kennedy's webinar for a good intro.

@bittner bittner added the enhancement New feature or request label Mar 14, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant