From 35435e11c0d64c78e594d1c28b4027ec65befa5b Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Sun, 15 Dec 2024 10:59:24 +0300 Subject: [PATCH] Performance tuning To decrease the repo queue time, we increase the pool size to 10, and increas RAM accordingly. --- fly.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fly.toml b/fly.toml index 22f414b4..fe285c3a 100644 --- a/fly.toml +++ b/fly.toml @@ -14,6 +14,7 @@ DATABASE_PATH = '/mnt/music_library/music_library_prod.db' PHX_HOST = 'music-library.claudio-ortolina.org' PORT = '8080' LAST_FM_USER = 'cloud8421' +POOL_SIZE = '10' [[mounts]] source = 'music_library' @@ -33,6 +34,6 @@ hard_limit = 1000 soft_limit = 1000 [[vm]] -memory = '512mb' +memory = '1024mb' cpu_kind = 'shared' cpus = 1