You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2017/05/08 19:56:54 UTC

[4/4] beam git commit: This closes #2925

This closes #2925


Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/604c2f59
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/604c2f59
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/604c2f59

Branch: refs/heads/master
Commit: 604c2f59e2a928a95106814b0b55b8097dc39faa
Parents: 63c6bea 50a4c56
Author: Ahmet Altay <al...@google.com>
Authored: Mon May 8 12:56:15 2017 -0700
Committer: Ahmet Altay <al...@google.com>
Committed: Mon May 8 12:56:15 2017 -0700

----------------------------------------------------------------------
 .../examples/complete/autocomplete.py           |   4 +-
 .../examples/complete/estimate_pi.py            |   4 +-
 .../examples/complete/game/hourly_team_score.py |   6 +-
 .../examples/complete/game/user_score.py        |   4 +-
 .../apache_beam/examples/complete/tfidf.py      |   4 +-
 .../examples/complete/top_wikipedia_sessions.py |   4 +-
 .../examples/cookbook/bigquery_side_input.py    |   4 +-
 .../apache_beam/examples/cookbook/coders.py     |   4 +-
 .../examples/cookbook/custom_ptransform.py      |   2 +-
 .../examples/cookbook/datastore_wordcount.py    |   6 +-
 .../examples/cookbook/group_with_coder.py       |   4 +-
 .../examples/cookbook/mergecontacts.py          |   4 +-
 .../examples/cookbook/multiple_output_pardo.py  |   4 +-
 .../apache_beam/examples/snippets/snippets.py   |  34 +-
 .../examples/snippets/snippets_test.py          |   2 +-
 sdks/python/apache_beam/examples/wordcount.py   |   4 +-
 .../apache_beam/examples/wordcount_debugging.py |   4 +-
 .../apache_beam/examples/wordcount_minimal.py   |   4 +-
 .../apache_beam/internal/gcp/json_value.py      |   2 +-
 .../apache_beam/internal/gcp/json_value_test.py |   4 +-
 sdks/python/apache_beam/io/filebasedsource.py   |   6 +-
 .../apache_beam/io/filebasedsource_test.py      |   4 +-
 sdks/python/apache_beam/io/fileio.py            |   6 +-
 sdks/python/apache_beam/io/fileio_test.py       |   2 +-
 sdks/python/apache_beam/io/gcp/bigquery.py      |   2 +-
 sdks/python/apache_beam/io/gcp/bigquery_test.py |   2 +-
 sdks/python/apache_beam/options/__init__.py     |  16 +
 .../apache_beam/options/pipeline_options.py     | 627 +++++++++++++++++++
 .../options/pipeline_options_test.py            | 240 +++++++
 .../options/pipeline_options_validator.py       | 199 ++++++
 .../options/pipeline_options_validator_test.py  | 343 ++++++++++
 .../apache_beam/options/value_provider.py       | 103 +++
 .../apache_beam/options/value_provider_test.py  | 145 +++++
 sdks/python/apache_beam/pipeline.py             |  10 +-
 .../runners/dataflow/dataflow_runner.py         |   2 +-
 .../runners/dataflow/dataflow_runner_test.py    |   2 +-
 .../runners/dataflow/internal/apiclient.py      |   8 +-
 .../runners/dataflow/internal/apiclient_test.py |   2 +-
 .../runners/dataflow/internal/dependency.py     |   4 +-
 .../dataflow/internal/dependency_test.py        |   6 +-
 .../runners/dataflow/template_runner_test.py    |   2 +-
 .../runners/dataflow/test_dataflow_runner.py    |   2 +-
 .../apache_beam/runners/direct/direct_runner.py |   4 +-
 .../runners/direct/transform_evaluator.py       |   2 +-
 .../portability/maptask_executor_runner.py      |   2 +-
 sdks/python/apache_beam/runners/runner_test.py  |   2 +-
 sdks/python/apache_beam/test_pipeline.py        |   2 +-
 sdks/python/apache_beam/test_pipeline_test.py   |   2 +-
 sdks/python/apache_beam/transforms/core.py      |   2 +-
 sdks/python/apache_beam/transforms/display.py   |   2 +-
 .../apache_beam/transforms/display_test.py      |   2 +-
 .../python/apache_beam/transforms/ptransform.py |   2 +-
 .../apache_beam/transforms/ptransform_test.py   |   2 +-
 .../typehints/typed_pipeline_test.py            |   2 +-
 .../apache_beam/utils/pipeline_options.py       | 612 +-----------------
 .../apache_beam/utils/pipeline_options_test.py  | 240 -------
 .../utils/pipeline_options_validator.py         | 199 ------
 .../utils/pipeline_options_validator_test.py    | 343 ----------
 sdks/python/apache_beam/utils/value_provider.py |  88 +--
 .../apache_beam/utils/value_provider_test.py    | 145 -----
 60 files changed, 1776 insertions(+), 1718 deletions(-)
----------------------------------------------------------------------