Repository: samza Updated Branches: refs/heads/master 3375c7116 -> d1653aad0
Updated test build and README versions to next version Updated the versions used in smoke tests and the README for overnight tests to point to the next release. Using 0.13.1 instead of 0.13.1-SNAPSHOT here since these tests are usually run against the release branch when release testing, where the version doesn't have -SNAPSHOT in it. Author: Prateek Maheshwari <[email protected]> Reviewers: Jacob Maes <[email protected]> Closes #224 from prateekm/version-update Project: http://git-wip-us.apache.org/repos/asf/samza/repo Commit: http://git-wip-us.apache.org/repos/asf/samza/commit/d1653aad Tree: http://git-wip-us.apache.org/repos/asf/samza/tree/d1653aad Diff: http://git-wip-us.apache.org/repos/asf/samza/diff/d1653aad Branch: refs/heads/master Commit: d1653aad07207db1ca088e6a53e353ec9fe14c47 Parents: 3375c71 Author: Prateek Maheshwari <[email protected]> Authored: Wed Jun 14 15:18:45 2017 -0700 Committer: Jacob Maes <[email protected]> Committed: Wed Jun 14 15:18:45 2017 -0700 ---------------------------------------------------------------------- RELEASE.md | 3 ++- samza-test/src/main/config/join/README | 8 ++++---- samza-test/src/main/python/configs/tests.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/samza/blob/d1653aad/RELEASE.md ---------------------------------------------------------------------- diff --git a/RELEASE.md b/RELEASE.md index aef06ad..2f38c8d 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -26,7 +26,8 @@ And before you proceed, do the following steps: * checkout the $VERSION branch * update the gradle.properties s.t. the following property is $VERSION w/o the suffix '-SNAPSHOT': version=$VERSION - * change the samza_executable variable in samza-test/src/main/python/configs/tests.json to point to a Samza version w/o the suffix '-SNAPSHOT' + * change the samza_executable variable in samza-test/src/main/python/configs/tests.json to $VERSION w/o the suffix '-SNAPSHOT'. + * change the samza-test versions in samza-test/src/main/config/join/README to $VERSION w/o the suffix '-SNAPSHOT'. * push the changes to the $VERSION branch Validate that all Samza source files have proper license information in their header. http://git-wip-us.apache.org/repos/asf/samza/blob/d1653aad/samza-test/src/main/config/join/README ---------------------------------------------------------------------- diff --git a/samza-test/src/main/config/join/README b/samza-test/src/main/config/join/README index 53e0bf1..01a354b 100644 --- a/samza-test/src/main/config/join/README +++ b/samza-test/src/main/config/join/README @@ -44,17 +44,17 @@ Deploy Zookeeper, YARN and Kafka: > cd $HELLO_SAMZA_SRC > for i in zookeeper kafka yarn; do ./bin/grid install $i; ./bin/grid start > $i; done -Update the "yarn.package.path" to $DEPLOY_DIR/samza-test_2.11-0.13.0.tgz +Update the "yarn.package.path" to $DEPLOY_DIR/samza-test_2.11-0.13.1-SNAPSHOT.tgz > cd $SAMZA_SRC > vi samza-test/src/main/config/join/common.properties -yarn.package.path=file:///path/to/samza-hello-samza/deploy/samza-test_2.11-0.13.0.tgz +yarn.package.path=file:///path/to/samza-hello-samza/deploy/samza-test_2.11-0.13.1-SNAPSHOT.tgz Then release and extract the test tarball: > cd $SAMZA_SRC > ./gradlew releaseTestJobs -> cp samza-test/build/distributions/samza-test_2.11-0.13.0.tgz $DEPLOY_DIR +> cp samza-test/build/distributions/samza-test_2.11-0.13.1-SNAPSHOT.tgz $DEPLOY_DIR > mkdir $DEPLOY_DIR/samza -> tar -xvf $DEPLOY_DIR/samza-test_2.11-0.13.0.tgz -C $DEPLOY_DIR/samza +> tar -xvf $DEPLOY_DIR/samza-test_2.11-0.13.1-SNAPSHOT.tgz -C $DEPLOY_DIR/samza Finally, create the kafka topics and start the samza jobs: > ./bin/setup-int-test.sh $DEPLOY_DIR http://git-wip-us.apache.org/repos/asf/samza/blob/d1653aad/samza-test/src/main/python/configs/tests.json ---------------------------------------------------------------------- diff --git a/samza-test/src/main/python/configs/tests.json b/samza-test/src/main/python/configs/tests.json index a9f7881..0d37c30 100644 --- a/samza-test/src/main/python/configs/tests.json +++ b/samza-test/src/main/python/configs/tests.json @@ -1,5 +1,5 @@ { - "samza_executable": "samza-test_2.11-0.13.0-SNAPSHOT.tgz", + "samza_executable": "samza-test_2.11-0.13.1-SNAPSHOT.tgz", "samza_install_path": "deploy/smoke_tests", "samza_config_factory": "org.apache.samza.config.factories.PropertiesConfigFactory" }
