This is an automated email from the ASF dual-hosted git repository.
lcwik pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.
from 0b78d91 [BEAM-8612] Convert []beam.T to the underlying type []T when
passed to a universal type. (#10066)
new e9f766f [BEAM-8151, BEAM-7848] Add an UnboundedThreadPoolExecutor
implementation.
new 1b62310 [BEAM-8151, BEAM-7848] Swap to using a thread pool which is
unbounded and shrinks when threads are idle.
new e265826 Merge pull request #9477 from lukecwik/python
The 23981 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../runners/portability/artifact_service_test.py | 6 +-
.../runners/portability/expansion_service_test.py | 4 +-
.../runners/portability/fn_api_runner.py | 30 +---
.../runners/portability/local_job_service.py | 6 +-
.../runners/portability/portable_stager_test.py | 4 +-
.../apache_beam/runners/worker/data_plane_test.py | 4 +-
.../apache_beam/runners/worker/log_handler_test.py | 4 +-
.../apache_beam/runners/worker/sdk_worker.py | 14 +-
.../apache_beam/runners/worker/sdk_worker_main.py | 2 +-
.../apache_beam/runners/worker/sdk_worker_test.py | 4 +-
.../apache_beam/runners/worker/worker_pool_main.py | 4 +-
.../apache_beam/utils/thread_pool_executor.py | 170 +++++++++++++++++++++
.../apache_beam/utils/thread_pool_executor_test.py | 106 +++++++++++++
sdks/python/scripts/generate_pydoc.sh | 1 +
14 files changed, 308 insertions(+), 51 deletions(-)
create mode 100644 sdks/python/apache_beam/utils/thread_pool_executor.py
create mode 100644 sdks/python/apache_beam/utils/thread_pool_executor_test.py