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/05 18:26:13 UTC

[beam] branch master updated (87cd769 -> 560a579)

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 87cd769  Merge pull request #6947: Fix website link-checking
     add 45eb62c  [BEAM-5961] Add test for Nexmark main; catches BEAM-5960
     add 7fe59e4  [BEAM-5817] Rollforward Nexmark BoundedSideInputJoin with fixes
     new 560a579  Merge pull request #6933: [BEAM-5961] Nexmark rollforward new query with test of Nexmark main

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:
 .../java/org/apache/beam/sdk/nexmark/Main.java     |  11 +-
 .../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}     |  63 ++++---
 ...y1Model.java => BoundedSideInputJoinModel.java} |  22 ++-
 .../beam/sdk/nexmark/queries/NexmarkQuery.java     |  22 +++
 .../org/apache/beam/sdk/nexmark/MainTest.java}     |  23 ++-
 .../apache/beam/sdk/nexmark/NexmarkUtilsTest.java  |  67 +++++++
 .../nexmark/queries/BoundedSideInputJoinTest.java  | 207 +++++++++++++++++++++
 11 files changed, 521 insertions(+), 43 deletions(-)
 copy sdks/java/testing/nexmark/src/main/java/org/apache/beam/sdk/nexmark/queries/{Query1.java => BoundedSideInputJoin.java} (51%)
 copy sdks/java/testing/nexmark/src/main/java/org/apache/beam/sdk/nexmark/queries/{Query1Model.java => BoundedSideInputJoinModel.java} (77%)
 copy sdks/java/{extensions/euphoria/src/test/java/org/apache/beam/sdk/extensions/euphoria/core/translate/TestUtils.java => testing/nexmark/src/test/java/org/apache/beam/sdk/nexmark/MainTest.java} (59%)
 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 #6933: [BEAM-5961] Nexmark rollforward new query with test of Nexmark main

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 560a5799fbebb37f66dbd73346a6d54924ae3558
Merge: 87cd769 7fe59e4
Author: Kenn Knowles <ke...@kennknowles.com>
AuthorDate: Mon Nov 5 10:26:07 2018 -0800

    Merge pull request #6933: [BEAM-5961] Nexmark rollforward new query with test of Nexmark main

 .../java/org/apache/beam/sdk/nexmark/Main.java     |  11 +-
 .../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  |  88 +++++++++
 .../nexmark/queries/BoundedSideInputJoinModel.java |  81 ++++++++
 .../beam/sdk/nexmark/queries/NexmarkQuery.java     |  22 +++
 .../java/org/apache/beam/sdk/nexmark/MainTest.java |  37 ++++
 .../apache/beam/sdk/nexmark/NexmarkUtilsTest.java  |  67 +++++++
 .../nexmark/queries/BoundedSideInputJoinTest.java  | 207 +++++++++++++++++++++
 11 files changed, 657 insertions(+), 5 deletions(-)