We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ParallelTaskHandler
TaskClient
TaskRunner
Currently, TaskHandler spawn a bunch of processes, capable of running tasks in parallel.
TaskHandler
Each of these TaskRunners instantiate an ApiClient at each request, due to pickle issues.
ApiClient
pickle
Research required to understand alternatives.
The text was updated successfully, but these errors were encountered:
One possible solution: Instantiate ApiClient at TaskHandler and share between TaskRunners, by overriding pickle.
Sorry, something went wrong.
Removed threadpool from ApiClient, still remaining to remove threadpool from urllib3 at RestClient
urllib3
RestClient
Issue will be continued here: #97
No branches or pull requests
Currently,
TaskHandler
spawn a bunch of processes, capable of running tasks in parallel.Each of these
TaskRunner
s instantiate anApiClient
at each request, due topickle
issues.Research required to understand alternatives.
The text was updated successfully, but these errors were encountered: