Files
music_library/lib/mix/tasks/music_library/prod/db_vacuum.ex
T
2024-10-15 17:25:35 +01:00

20 lines
628 B
Elixir

defmodule Mix.Tasks.MusicLibrary.Prod.DbVacuum do
use Mix.Task
@shortdoc "Force VACUUM the production database"
@moduledoc """
Force VACUUM the production database. This is necessary to make sure that all
changes currently in the WAL are persisted to the sqlite database file.
Requires the `flyctl` CLI to be installed and authenticated.
"""
@impl Mix.Task
def run(_args) do
IO.puts("Running VACUUM on the production database")
command = ~s(bin/music_library rpc 'MusicLibrary.Repo.query\("VACUUM"\)')
System.cmd("flyctl", ["ssh", "console", "--command", command], into: IO.stream())
end
end