-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #416 from rollbar/added-thread-pool
- Loading branch information
Showing
4 changed files
with
112 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import logging | ||
import os | ||
import sys | ||
from concurrent.futures import ThreadPoolExecutor | ||
|
||
_pool = None # type: ThreadPoolExecutor|None | ||
|
||
log = logging.getLogger(__name__) | ||
|
||
|
||
def init_pool(max_workers): | ||
""" | ||
Creates the thread pool with the max workers. | ||
:type max_workers: int|None | ||
:param max_workers: If max_workers is None it will use the logic from the standard library to calculate the number | ||
of threads. However, we ported the logic from Python 3.5 to earlier versions. | ||
""" | ||
if max_workers is None and sys.version_info < (3, 5): | ||
max_workers = (os.cpu_count() or 1) * 5 | ||
|
||
global _pool | ||
_pool = ThreadPoolExecutor(max_workers) | ||
|
||
|
||
def submit(worker, payload_str, access_token): | ||
""" | ||
Submit a new task to the thread pool. | ||
:type worker: function | ||
:type payload_str: str | ||
:type access_token: str | ||
""" | ||
global _pool | ||
if _pool is None: | ||
log.warning('pyrollbar: Thead pool not initialized. Please ensure init_pool() is called prior to submit().') | ||
return | ||
_pool.submit(worker, payload_str, access_token) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters