From cd2d867c11d9ef722a47c2385c40eb7e75376742 Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 9 May 2020 12:30:15 +0900 Subject: [PATCH] Increase BSQ explorer TMPFS allocation to 2GB for growing datastore --- seednode/bisq.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seednode/bisq.service b/seednode/bisq.service index 8d4e508641..bda7fe9799 100644 --- a/seednode/bisq.service +++ b/seednode/bisq.service @@ -31,7 +31,7 @@ ExecStart=/bin/sh __BISQ_HOME__/__BISQ_REPO_NAME__/${BISQ_ENTRYPOINT} \ ExecStop=/bin/kill -9 ${MAINPID} Restart=on-failure -ExecStartPre=+/bin/bash -c "if [ $BISQ_DUMP_BLOCKCHAIN = true ];then mount -t tmpfs none -o size=812M,uid=bisq,gid=bisq $BISQ_HOME/$BISQ_APP_NAME/$BISQ_BASE_CURRENCY/db/json;else true;fi" +ExecStartPre=+/bin/bash -c "if [ $BISQ_DUMP_BLOCKCHAIN = true ];then mount -t tmpfs none -o size=2000M,uid=bisq,gid=bisq $BISQ_HOME/$BISQ_APP_NAME/$BISQ_BASE_CURRENCY/db/json;else true;fi" ExecStopPost=+/bin/bash -c "if [ $BISQ_DUMP_BLOCKCHAIN = true ];then umount $BISQ_HOME/$BISQ_APP_NAME/$BISQ_BASE_CURRENCY/db/json;else true;fi" User=bisq