This is an automated email from the ASF dual-hosted git repository.
udim pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.
from 8239ffa Merge pull request #11312 from [BEAM-9577] Plumb resources
through Python job service and runner.
add a35afef [BEAM-9529] Remove datastore.v1, googledatastore (#11175)
No new revisions were added by this update.
Summary of changes:
CHANGES.md | 8 +
ownership/PYTHON_DEPENDENCY_OWNERS.yaml | 6 -
.../examples/cookbook/datastore_wordcount.py | 131 +++---
.../cookbook/datastore_wordcount_it_test.py | 19 +-
.../apache_beam/examples/snippets/snippets.py | 23 +-
.../apache_beam/examples/snippets/snippets_test.py | 10 +-
.../apache_beam/io/gcp/datastore/v1/__init__.py | 17 -
.../apache_beam/io/gcp/datastore/v1/datastoreio.py | 516 ---------------------
.../io/gcp/datastore/v1/datastoreio_test.py | 313 -------------
.../io/gcp/datastore/v1/fake_datastore.py | 111 -----
.../apache_beam/io/gcp/datastore/v1/helper.py | 335 -------------
.../apache_beam/io/gcp/datastore/v1/helper_test.py | 296 ------------
.../io/gcp/datastore/v1/query_splitter.py | 283 -----------
.../io/gcp/datastore/v1/query_splitter_test.py | 244 ----------
.../datastore/{v1 => v1new}/adaptive_throttler.py | 2 +-
.../{v1 => v1new}/adaptive_throttler_test.py | 2 +-
.../gcp/datastore/v1new/datastore_write_it_test.py | 3 +-
.../io/gcp/datastore/v1new/datastoreio.py | 16 +-
.../io/gcp/datastore/v1new/datastoreio_test.py | 60 ++-
.../io/gcp/datastore/v1new/query_splitter_test.py | 102 ++--
.../apache_beam/io/gcp/datastore/v1new/types.py | 20 +-
.../io/gcp/datastore/v1new/types_test.py | 3 +-
.../io/gcp/datastore/{v1 => v1new}/util.py | 0
.../io/gcp/datastore/{v1 => v1new}/util_test.py | 2 +-
.../io/gcp/datastore_write_it_pipeline.py | 213 ---------
.../apache_beam/io/gcp/datastore_write_it_test.py | 86 ----
sdks/python/container/base_image_requirements.txt | 2 -
sdks/python/scripts/generate_pydoc.sh | 4 -
sdks/python/setup.py | 4 -
sdks/python/tox.ini | 6 -
30 files changed, 220 insertions(+), 2617 deletions(-)
delete mode 100644 sdks/python/apache_beam/io/gcp/datastore/v1/__init__.py
delete mode 100644 sdks/python/apache_beam/io/gcp/datastore/v1/datastoreio.py
delete mode 100644
sdks/python/apache_beam/io/gcp/datastore/v1/datastoreio_test.py
delete mode 100644
sdks/python/apache_beam/io/gcp/datastore/v1/fake_datastore.py
delete mode 100644 sdks/python/apache_beam/io/gcp/datastore/v1/helper.py
delete mode 100644 sdks/python/apache_beam/io/gcp/datastore/v1/helper_test.py
delete mode 100644
sdks/python/apache_beam/io/gcp/datastore/v1/query_splitter.py
delete mode 100644
sdks/python/apache_beam/io/gcp/datastore/v1/query_splitter_test.py
rename sdks/python/apache_beam/io/gcp/datastore/{v1 =>
v1new}/adaptive_throttler.py (98%)
rename sdks/python/apache_beam/io/gcp/datastore/{v1 =>
v1new}/adaptive_throttler_test.py (97%)
rename sdks/python/apache_beam/io/gcp/datastore/{v1 => v1new}/util.py (100%)
rename sdks/python/apache_beam/io/gcp/datastore/{v1 => v1new}/util_test.py
(98%)
delete mode 100644
sdks/python/apache_beam/io/gcp/datastore_write_it_pipeline.py
delete mode 100644 sdks/python/apache_beam/io/gcp/datastore_write_it_test.py