You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ke...@apache.org on 2018/11/02 23:06:32 UTC

[beam] branch master updated (0c22f83 -> 55423f3)

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

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


    from 0c22f83  Merge pull request #6924 from charlesccychen/fix-ne
     add 3627020  [BEAM-5951] Remove unsupported/unsupportable assertions from Nexmark
     add a62314e  [BEAM-5817] Add Java only BoundedSideInputJoin benchmark and tests to Nexmark (not wired up fully)
     new 55423f3  Merge pull request #6905: [BEAM-5817] Add Java only BoundedSideInputJoin benchmark to Nexmark

The 1 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:
 .../beam/sdk/nexmark/NexmarkConfiguration.java     |  15 ++
 .../apache/beam/sdk/nexmark/NexmarkLauncher.java   |   8 +
 .../apache/beam/sdk/nexmark/NexmarkQueryName.java  |   5 +-
 .../org/apache/beam/sdk/nexmark/NexmarkUtils.java  | 121 ++++++++++++
 .../{Query1.java => BoundedSideInputJoin.java}     |  58 +++---
 ...y1Model.java => BoundedSideInputJoinModel.java} |  24 ++-
 .../beam/sdk/nexmark/queries/NexmarkQuery.java     |  22 +++
 .../sdk/nexmark/queries/NexmarkQueryModel.java     |  17 +-
 .../beam/sdk/nexmark/queries/Query0Model.java      |   2 +-
 .../beam/sdk/nexmark/queries/Query1Model.java      |   2 +-
 .../beam/sdk/nexmark/queries/Query2Model.java      |   2 +-
 .../beam/sdk/nexmark/queries/Query7Model.java      |   2 +-
 .../apache/beam/sdk/nexmark/NexmarkUtilsTest.java  |  67 +++++++
 .../nexmark/queries/BoundedSideInputJoinTest.java  | 206 +++++++++++++++++++++
 14 files changed, 501 insertions(+), 50 deletions(-)
 copy sdks/java/testing/nexmark/src/main/java/org/apache/beam/sdk/nexmark/queries/{Query1.java => BoundedSideInputJoin.java} (52%)
 copy sdks/java/testing/nexmark/src/main/java/org/apache/beam/sdk/nexmark/queries/{Query1Model.java => BoundedSideInputJoinModel.java} (76%)
 create mode 100644 sdks/java/testing/nexmark/src/test/java/org/apache/beam/sdk/nexmark/NexmarkUtilsTest.java
 create mode 100644 sdks/java/testing/nexmark/src/test/java/org/apache/beam/sdk/nexmark/queries/BoundedSideInputJoinTest.java


[beam] 01/01: Merge pull request #6905: [BEAM-5817] Add Java only BoundedSideInputJoin benchmark to Nexmark

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 55423f3c63bc5ff3ca6f3dcf607aaaa10788bb48
Merge: 0c22f83 a62314e
Author: Kenn Knowles <ke...@kennknowles.com>
AuthorDate: Fri Nov 2 16:06:25 2018 -0700

    Merge pull request #6905: [BEAM-5817] Add Java only BoundedSideInputJoin benchmark to Nexmark

 .../beam/sdk/nexmark/NexmarkConfiguration.java     |  15 ++
 .../apache/beam/sdk/nexmark/NexmarkLauncher.java   |   8 +
 .../apache/beam/sdk/nexmark/NexmarkQueryName.java  |   5 +-
 .../org/apache/beam/sdk/nexmark/NexmarkUtils.java  | 121 ++++++++++++
 .../sdk/nexmark/queries/BoundedSideInputJoin.java  |  83 +++++++++
 ...y1Model.java => BoundedSideInputJoinModel.java} |  24 ++-
 .../beam/sdk/nexmark/queries/NexmarkQuery.java     |  22 +++
 .../sdk/nexmark/queries/NexmarkQueryModel.java     |  17 +-
 .../beam/sdk/nexmark/queries/Query0Model.java      |   2 +-
 .../beam/sdk/nexmark/queries/Query1Model.java      |   2 +-
 .../beam/sdk/nexmark/queries/Query2Model.java      |   2 +-
 .../beam/sdk/nexmark/queries/Query7Model.java      |   2 +-
 .../apache/beam/sdk/nexmark/NexmarkUtilsTest.java  |  67 +++++++
 .../nexmark/queries/BoundedSideInputJoinTest.java  | 206 +++++++++++++++++++++
 14 files changed, 550 insertions(+), 26 deletions(-)