summaryrefslogtreecommitdiff
path: root/src/exchange/exchange.conf
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-05-02 21:09:07 +0200
committerChristian Grothoff <christian@grothoff.org>2022-05-02 21:09:07 +0200
commit65943dcb13192e1d36f14b69b731f9aca4205fb0 (patch)
tree06930cedb5777beabd7518ce8f0d661f779881c8 /src/exchange/exchange.conf
parent31e554ad4626fe68dbffb9e5d5e31661d52d6747 (diff)
downloadexchange-65943dcb13192e1d36f14b69b731f9aca4205fb0.tar.gz
exchange-65943dcb13192e1d36f14b69b731f9aca4205fb0.tar.bz2
exchange-65943dcb13192e1d36f14b69b731f9aca4205fb0.zip
-payment router skeleton
Diffstat (limited to 'src/exchange/exchange.conf')
-rw-r--r--src/exchange/exchange.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/exchange/exchange.conf b/src/exchange/exchange.conf
index 92de5e31c..9c68208ac 100644
--- a/src/exchange/exchange.conf
+++ b/src/exchange/exchange.conf
@@ -47,6 +47,8 @@ BASE_URL = http://localhost:8081/
# How long should the aggregator sleep if it has nothing to do?
AGGREGATOR_IDLE_SLEEP_INTERVAL = 60 s
+ROUTER_IDLE_SLEEP_INTERVAL = 60 s
+
# How long should the transfer tool
# sleep if it has nothing to do?
TRANSFER_IDLE_SLEEP_INTERVAL = 60 s
@@ -66,6 +68,17 @@ CLOSER_IDLE_SLEEP_INTERVAL = 60 s
# aggregation logic will break badly!
AGGREGATOR_SHARD_SIZE = 2147483648
+# Values of 0 or above 2^31 disable sharding, which
+# is a sane default for most use-cases.
+# When changing this value, you MUST stop all
+# aggregators and manually run
+#
+# $ taler-exchange-dbinit -s
+#
+# against the exchange's database. Otherwise, the
+# aggregation logic will break badly!
+ROUTER_SHARD_SIZE = 2147483648
+
# How long should wirewatch sleep if it has nothing to do?
# (Set very aggressively here for the demonstrators to be
# super fast.)