mirror of https://github.com/apache/druid.git
make memcached host configurable for benchmarking
This commit is contained in:
parent
e34944b1c5
commit
2118252ef2
|
@ -46,7 +46,7 @@ public class MemcachedCacheBrokerBenchmark extends SimpleBenchmark
|
|||
.setTranscoder(transcoder)
|
||||
.setShouldOptimize(true)
|
||||
.build(),
|
||||
AddrUtil.getAddresses("localhost:11211")
|
||||
AddrUtil.getAddresses(System.getProperty("druid.bard.cache.hosts", "localhost:11211"))
|
||||
);
|
||||
|
||||
broker = new MemcachedCacheBroker(
|
||||
|
|
Loading…
Reference in New Issue