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/03/13 20:39:43 UTC

[beam] branch master updated (64c2b41 -> a338431)

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 64c2b41  [BEAM-7923] Streaming support and pipeline pruning when instrumenting a pipeline with interactivity (#11100)
     new c2945b6  Supporting infrastructure for dataframes on beam.
     new 6de32d7  Basic deferred data frame implementation.
     new 94ed5f1  yapf, py2
     new a0b9c69  typings and docs for expressions.py
     new 2dd615a  Minor cleanup, lint.
     new a338431  Merge pull request #10757 from robertwb/dataframe

The 26015 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:
 .../python/apache_beam/dataframe}/__init__.py      |   1 -
 sdks/python/apache_beam/dataframe/expressions.py   | 213 +++++++++++++++++++++
 .../apache_beam/dataframe/expressions_test.py      |  58 ++++++
 sdks/python/apache_beam/dataframe/frame_base.py    | 132 +++++++++++++
 .../apache_beam/dataframe/frame_base_test.py       |  46 +++++
 sdks/python/apache_beam/dataframe/frames.py        | 210 ++++++++++++++++++++
 sdks/python/apache_beam/dataframe/frames_test.py   |  84 ++++++++
 7 files changed, 743 insertions(+), 1 deletion(-)
 copy {.test-infra/jenkins/dependency_check => sdks/python/apache_beam/dataframe}/__init__.py (99%)
 create mode 100644 sdks/python/apache_beam/dataframe/expressions.py
 create mode 100644 sdks/python/apache_beam/dataframe/expressions_test.py
 create mode 100644 sdks/python/apache_beam/dataframe/frame_base.py
 create mode 100644 sdks/python/apache_beam/dataframe/frame_base_test.py
 create mode 100644 sdks/python/apache_beam/dataframe/frames.py
 create mode 100644 sdks/python/apache_beam/dataframe/frames_test.py