You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ro...@apache.org on 2020/08/21 21:24:04 UTC

[beam] branch master updated (60c1e8d -> c9bed1e)

This is an automated email from the ASF dual-hosted git repository.

robertwb pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.


    from 60c1e8d  [BEAM-10703] Prepare Dataflow Java runner for shardable states (#12578)
     add c9bed1e  [BEAM-10549] Improve runtime type checking performance for the Python SDK (#12352)

No new revisions were added by this update.

Summary of changes:
 .../apache_beam/examples/snippets/snippets.py      |   3 +-
 .../python/apache_beam/options/pipeline_options.py |   7 +
 sdks/python/apache_beam/pipeline.py                |  16 ++
 sdks/python/apache_beam/runners/common.py          |   3 +
 .../apache_beam/runners/worker/bundle_processor.py |   3 +-
 .../apache_beam/runners/worker/opcounters.pxd      |   2 +
 .../apache_beam/runners/worker/opcounters.py       |  26 ++-
 .../apache_beam/runners/worker/operations.py       |  66 +++++--
 .../tools/runtime_type_check_microbenchmark.py     | 131 +++++++++++++
 sdks/python/apache_beam/transforms/core.py         |   5 +
 sdks/python/apache_beam/transforms/ptransform.py   |   8 +
 .../apache_beam/transforms/ptransform_test.py      |  44 +++--
 sdks/python/apache_beam/typehints/typecheck.py     |  78 +++++++-
 .../apache_beam/typehints/typecheck_test_py3.py    | 208 ++++++++++++++++++++-
 .../apache_beam/typehints/typed_pipeline_test.py   |   8 +-
 .../typehints/typed_pipeline_test_py3.py           |   8 +-
 .../en/documentation/sdks/python-type-safety.md    |  10 +-
 17 files changed, 580 insertions(+), 46 deletions(-)
 create mode 100644 sdks/python/apache_beam/tools/runtime_type_check_microbenchmark.py