Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix test failures by bumping default Hadoop version to 2.7.6. #36

Merged
merged 2 commits into from
Apr 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ git:
jdk:
- oraclejdk8
env:
- HADOOP_VERSION=2.7.5
- HADOOP_VERSION=2.7.6
- HADOOP_VERSION=2.8.3
script: "./gradlew test --stacktrace --info -Ddyno.hadoop.bin.version=${HADOOP_VERSION}"
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
* being available ({@code truncate} is generally required to run Dynamometer).
*
* You can optionally specify which version of HDFS should be started within
* the Dynamometer cluster; the default is 2.7.5. This can be adjusted by setting
* the {@value HADOOP_BIN_VERSION_KEY} property. This will automatically download
* the Dynamometer cluster; the default is {@value HADOOP_BIN_VERSION_DEFAULT}. This can be adjusted
* by setting the {@value HADOOP_BIN_VERSION_KEY} property. This will automatically download
* the correct Hadoop tarball for the specified version. It downloads from an Apache
* mirror (by default {@value DynoInfraUtils#APACHE_DOWNLOAD_MIRROR_DEFAULT}); which mirror
* is used can be controlled with the {@value DynoInfraUtils#APACHE_DOWNLOAD_MIRROR_KEY}
Expand All @@ -86,7 +86,7 @@ public class TestDynamometerInfra {

private static final String HADOOP_BIN_PATH_KEY = "dyno.hadoop.bin.path";
private static final String HADOOP_BIN_VERSION_KEY = "dyno.hadoop.bin.version";
private static final String HADOOP_BIN_VERSION_DEFAULT = "2.7.5";
private static final String HADOOP_BIN_VERSION_DEFAULT = "2.7.6";
private static final String FSIMAGE_FILENAME = "fsimage_0000000000000061740";
private static final String VERSION_FILENAME = "VERSION";

Expand Down