m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorMagdalena GrodziƄska <mag.grodzinska@gmail.com>2020-01-11 20:16:30 +0100
committerGitHub <noreply@github.com>2020-01-11 20:16:30 +0100
commit9cf66b17165e3b4251dce84500e60f5ef090ba30 (patch)
tree2dbde10b659e953b0509d68ded30f9d0c9289869 /build.gradle
parent55be079e9b183c430662606548548ef935bbdf40 (diff)
parent7750ea278b5f77be07c4eea214cadfa631b26afa (diff)
Merge pull request #101 from m-chrzan/add_addr_config
Add flags to configure udup server addr
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle33
1 files changed, 25 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle
index 66c50d1..13be045 100644
--- a/build.gradle
+++ b/build.gradle
@@ -30,22 +30,37 @@ ext.gossipPeriod = {
return System.getProperty("gossipPeriod") ?: 5 * 1000
}
-ext.UDUPHostname = {
+ext.UDUPServerHostname = {
return System.getProperty("hostname") ?: "localhost"
}
-ext.port = {
+ext.UDUPServerPort = {
return System.getProperty("port") ?: 5999;
}
-ext.timeout = {
+ext.UDUPServerTimeout = {
return System.getProperty("timeout") ?: 5000;
}
-ext.bufsize = {
+ext.UDUPServerBufsize = {
return System.getProperty("bufsize") ?: 512;
}
+/*
+Possible options:
+RoundRobinExp
+RoundRobinUniform
+RandomExp
+RandomUniform
+ */
+ext.zoneSelectionStrategy = {
+ return System.getProperty("zoneStrategy") ?: "RandomUniform"
+}
+
+ext.zonePath = {
+ return System.getProperty("zonePath") ?: "/uw/violet07"
+}
+
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
@@ -89,10 +104,12 @@ task runAgent(type: JavaExec) {
systemProperty 'freshness_period', freshnessPeriod()
systemProperty 'query_period', queryPeriod()
systemProperty 'gossip_period', gossipPeriod()
- systemProperty 'UDUPServer.hostname', UDUPHostname()
- systemProperty 'UDUPServer.port', port()
- systemProperty 'UDUPServer.timeout', port()
- systemProperty 'UDUPServer.bufsize', port()
+ systemProperty 'UDUPServer.hostname', UDUPServerHostname()
+ systemProperty 'UDUPServer.port', UDUPServerPort()
+ systemProperty 'UDUPServer.timeout', UDUPServerTimeout()
+ systemProperty 'UDUPServer.bufsize', UDUPServerBufsize()
+ systemProperty 'Gossip.zone_strategy', zoneSelectionStrategy()
+ systemProperty 'zone_path', zonePath()
}
task runClient(type: JavaExec) {