Skip to content
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 build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
}
}

def hadoopVersion = '2.7.4'
def hadoopVersion = '2.7.5'
ext.deps = [
hadoop: [
hdfs: "org.apache.hadoop:hadoop-hdfs:${hadoopVersion}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
* 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.4. This can be adjusted by setting
* 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 correct Hadoop tarball for the specified version. It downloads from an Apache
* mirror (by default {@value DynoInfraUtils#APACHE_DOWNLOAD_MIRROR_DEFAULT}); which mirror
Expand All @@ -79,7 +79,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.4";
private static final String HADOOP_BIN_VERSION_DEFAULT = "2.7.5";
private static final String FSIMAGE_FILENAME = "fsimage_0000000000000061740";
private static final String VERSION_FILENAME = "VERSION";

Expand Down