This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch nightly-refs/heads/master
in repository https://gitbox.apache.org/repos/asf/beam.git
from 1540776dc30 Fix IndexOutOfBoundsException invoking expansion service
(#34428)
add 404170a351e Remove myself from java reviewers and focus on python and
go. (#34741)
add 908d43e65ca Setting num_bytes to DEFAULT_READ_BUFFER_SIZE if it is
None originally (#34475)
add f2819ca987b Bump cloud.google.com/go/spanner from 1.79.0 to 1.80.0 in
/sdks (#34745)
add a71dd28aec7 Deep copy PipelineOptions and keep the input intact.
(#34723)
add d3b526ad260 Bump cloud.google.com/go/storage from 1.51.0 to 1.52.0 in
/sdks (#34742)
add ae7bf20db96 Add option to pickler dumps() for best-effort determinism
(#34698)
add a2fcbd95287 Only declare state backed iterables on code channel.
add 82540a889aa Merge pull request #34740 Only declare state backed
iterables on code channel.
No new revisions were added by this update.
Summary of changes:
.github/REVIEWERS.yml | 2 +-
sdks/go.mod | 4 +-
sdks/go.sum | 12 +-
.../apache_beam/internal/cloudpickle_pickler.py | 10 +-
.../internal/cloudpickle_pickler_test.py | 4 +
sdks/python/apache_beam/internal/dill_pickler.py | 17 +-
sdks/python/apache_beam/internal/pickler.py | 11 +-
sdks/python/apache_beam/internal/pickler_test.py | 47 ++++
sdks/python/apache_beam/internal/set_pickler.py | 164 ++++++++++++
.../apache_beam/internal/set_pickler_test.py | 278 +++++++++++++++++++++
sdks/python/apache_beam/io/filesystem.py | 2 +-
sdks/python/apache_beam/io/filesystem_test.py | 15 ++
sdks/python/apache_beam/pipeline.py | 10 +-
.../runners/interactive/interactive_beam_test.py | 16 +-
.../python/apache_beam/runners/pipeline_context.py | 1 +
.../portability/fn_api_runner/translations.py | 15 +-
sdks/python/apache_beam/transforms/ptransform.py | 11 +-
17 files changed, 593 insertions(+), 26 deletions(-)
create mode 100644 sdks/python/apache_beam/internal/set_pickler.py
create mode 100644 sdks/python/apache_beam/internal/set_pickler_test.py