mirror of https://github.com/apache/druid.git
prefer druid.curator.compress to druid.indexer.runner.compressZnodes
This commit is contained in:
parent
8b1edfd464
commit
9bc20ef8bf
|
@ -68,7 +68,7 @@ public class RemoteTaskRunnerFactory implements TaskRunnerFactory
|
||||||
curator,
|
curator,
|
||||||
new SimplePathChildrenCacheFactory
|
new SimplePathChildrenCacheFactory
|
||||||
.Builder()
|
.Builder()
|
||||||
.withCompressed(remoteTaskRunnerConfig.isCompressZnodes())
|
.withCompressed(true)
|
||||||
.build(),
|
.build(),
|
||||||
httpClient,
|
httpClient,
|
||||||
strategy
|
strategy
|
||||||
|
|
|
@ -33,9 +33,6 @@ public class RemoteTaskRunnerConfig
|
||||||
@NotNull
|
@NotNull
|
||||||
private Period taskAssignmentTimeout = new Period("PT5M");
|
private Period taskAssignmentTimeout = new Period("PT5M");
|
||||||
|
|
||||||
@JsonProperty
|
|
||||||
private boolean compressZnodes = false;
|
|
||||||
|
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
private String minWorkerVersion = "0";
|
private String minWorkerVersion = "0";
|
||||||
|
|
||||||
|
@ -48,11 +45,6 @@ public class RemoteTaskRunnerConfig
|
||||||
return taskAssignmentTimeout;
|
return taskAssignmentTimeout;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isCompressZnodes()
|
|
||||||
{
|
|
||||||
return compressZnodes;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getMinWorkerVersion()
|
public String getMinWorkerVersion()
|
||||||
{
|
{
|
||||||
return minWorkerVersion;
|
return minWorkerVersion;
|
||||||
|
|
|
@ -26,12 +26,6 @@ import org.joda.time.Period;
|
||||||
*/
|
*/
|
||||||
public class TestRemoteTaskRunnerConfig extends RemoteTaskRunnerConfig
|
public class TestRemoteTaskRunnerConfig extends RemoteTaskRunnerConfig
|
||||||
{
|
{
|
||||||
@Override
|
|
||||||
public boolean isCompressZnodes()
|
|
||||||
{
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Period getTaskAssignmentTimeout()
|
public Period getTaskAssignmentTimeout()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue