mirror of
https://git.sr.ht/~magic_rb/cluster
synced 2024-11-24 00:56:16 +01:00
Transfer Matrix Synapse to PostgreSQL from SQLite
Signed-off-by: main <magic_rb@redalder.org>
This commit is contained in:
parent
b9511f05da
commit
28a55269d3
|
@ -1,5 +1,39 @@
|
||||||
{ nglib, nixpkgs }:
|
{ nglib, nixpkgs }:
|
||||||
nglib.makeSystem {
|
{
|
||||||
|
postgresql = nglib.makeSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
name = "nixng-synapse-postgresql";
|
||||||
|
inherit nixpkgs;
|
||||||
|
config = { pkgs, config, ... }:
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
dumb-init = {
|
||||||
|
enable = true;
|
||||||
|
type.services = {};
|
||||||
|
};
|
||||||
|
services.postgresql = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.postgresql_12;
|
||||||
|
|
||||||
|
initialScript = "/secrets/init.sql";
|
||||||
|
enableTCPIP = true;
|
||||||
|
|
||||||
|
authentication = "host all all all md5";
|
||||||
|
|
||||||
|
ensureDatabases = { "synapse" = { ENCODING = "UTF8"; TEMPLATE = "template0"; }; };
|
||||||
|
ensureExtensions = {};
|
||||||
|
ensureUsers = [
|
||||||
|
{ name = "synapse"; ensurePermissions = {
|
||||||
|
"DATABASE \"synapse\"" = "ALL PRIVILEGES";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
synapse = nglib.makeSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
name = "synapse";
|
name = "synapse";
|
||||||
inherit nixpkgs;
|
inherit nixpkgs;
|
||||||
|
@ -48,7 +82,7 @@ nglib.makeSystem {
|
||||||
|
|
||||||
disable_existing_loggers = false;
|
disable_existing_loggers = false;
|
||||||
};
|
};
|
||||||
synapseConfig = (pkgs.formats.yaml {}).generate "conduit.yaml"
|
synapseConfig = (pkgs.formats.yaml {}).generate "synapse.yaml"
|
||||||
{
|
{
|
||||||
server_name = "matrix.redalder.org";
|
server_name = "matrix.redalder.org";
|
||||||
report_stats = "yes";
|
report_stats = "yes";
|
||||||
|
@ -74,12 +108,6 @@ nglib.makeSystem {
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
database =
|
|
||||||
{
|
|
||||||
name = "sqlite3";
|
|
||||||
compress = false;
|
|
||||||
args.database = "/var/lib/synapse/sqlite.db";
|
|
||||||
};
|
|
||||||
log_config = logConfig;
|
log_config = logConfig;
|
||||||
trusted_key_servers =
|
trusted_key_servers =
|
||||||
[
|
[
|
||||||
|
@ -91,8 +119,43 @@ nglib.makeSystem {
|
||||||
signing_key_path = "/var/lib/synapse/signing.key";
|
signing_key_path = "/var/lib/synapse/signing.key";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
pkgs.writeShellScript "conduit"
|
pkgs.writeShellScript "synapse"
|
||||||
''
|
''
|
||||||
|
if [ -f "/var/lib/synapse/sqlite.db" ] && ! [ -f "/var/lib/synapse/migration_done" ]
|
||||||
|
then
|
||||||
|
echo "Beginning migration from SQLite to PostgeSQL!"
|
||||||
|
|
||||||
|
cat > /tmp/synapse_postgres.yaml <<EOF
|
||||||
|
database:
|
||||||
|
name: psycopg2
|
||||||
|
args:
|
||||||
|
user: synapse
|
||||||
|
password: ''${PSQL_PASSWORD}
|
||||||
|
database: synapse
|
||||||
|
host: 127.0.0.1
|
||||||
|
cp_min: 5
|
||||||
|
cp_max: 10
|
||||||
|
$(cat ${synapseConfig})
|
||||||
|
EOF
|
||||||
|
|
||||||
|
for ((i=0; i<5; i++))
|
||||||
|
do
|
||||||
|
${pkgs.matrix-synapse.python.withPackages (_: [ (pkgs.python3.pkgs.toPythonModule pkgs.matrix-synapse) ] ++ pkgs.matrix-synapse.propagatedBuildInputs)}/bin/python ${pkgs.matrix-synapse}/lib/python*/site-packages/synapse/_scripts/synapse_port_db.py \
|
||||||
|
--sqlite-database "/var/lib/synapse/sqlite.db" \
|
||||||
|
--postgres-config "/tmp/synapse_postgres.yaml"
|
||||||
|
[ $? -eq 0 ] && touch /var/lib/synapse/migration_done && break
|
||||||
|
|
||||||
|
echo "Migration attempt ''${i}/5 failed! Retrying in 30 seconds..."
|
||||||
|
sleep 30
|
||||||
|
|
||||||
|
if ((5 == i))
|
||||||
|
then
|
||||||
|
echo "Migration failed!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
[ -e /var/lib/synapse/signing.key ] || \
|
[ -e /var/lib/synapse/signing.key ] || \
|
||||||
${pkgs.matrix-synapse}/bin/synapse_homeserver \
|
${pkgs.matrix-synapse}/bin/synapse_homeserver \
|
||||||
--config-path ${synapseConfig} \
|
--config-path ${synapseConfig} \
|
||||||
|
@ -108,4 +171,5 @@ nglib.makeSystem {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -75,15 +75,16 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1659247306,
|
"lastModified": 1667091930,
|
||||||
"narHash": "sha256-7HnMAj+OzChKVZWp5bqnTTXfKsGSIymryLOHek0bDBE=",
|
"narHash": "sha256-GLefEUOPtBb0Xj4MS6NkGFceThzJ0uMd3VVUJHyI390=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "NixNG",
|
"repo": "NixNG",
|
||||||
"rev": "043a9a5353501b017adaa3730f09074d2f4c9514",
|
"rev": "6e0bcffbbf814dea4ae91892f255b5c65d21b23e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
|
"ref": "postgres-db-settings",
|
||||||
"repo": "NixNG",
|
"repo": "NixNG",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,7 +47,8 @@
|
||||||
home-assistantPostgresql = (import ./containers/home-assistant.nix base).postgresql;
|
home-assistantPostgresql = (import ./containers/home-assistant.nix base).postgresql;
|
||||||
reicio = import ./containers/reicio.nix base;
|
reicio = import ./containers/reicio.nix base;
|
||||||
baikal = import ./containers/baikal.nix base;
|
baikal = import ./containers/baikal.nix base;
|
||||||
conduit = import ./containers/conduit.nix base;
|
conduit = (import ./containers/conduit.nix base).synapse;
|
||||||
|
conduitPostgresql = (import ./containers/conduit.nix base).postgresql;
|
||||||
mautrix-facebook = import ./containers/mautrix-facebook.nix base;
|
mautrix-facebook = import ./containers/mautrix-facebook.nix base;
|
||||||
heisenbridge = import ./containers/heisenbridge.nix base;
|
heisenbridge = import ./containers/heisenbridge.nix base;
|
||||||
};
|
};
|
||||||
|
|
|
@ -23,6 +23,31 @@ resource "nomad_volume" "matrix-synapse" {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
resource "nomad_volume" "matrix-postgresql" {
|
||||||
|
type = "csi"
|
||||||
|
plugin_id = "org.democratic-csi.nfs"
|
||||||
|
volume_id = "matrix-postgresql"
|
||||||
|
name = "matrix-postgresql"
|
||||||
|
external_id = "matrix-postgresql"
|
||||||
|
|
||||||
|
capability {
|
||||||
|
access_mode = "single-node-writer"
|
||||||
|
attachment_mode = "file-system"
|
||||||
|
}
|
||||||
|
|
||||||
|
context = {
|
||||||
|
server = "blowhole.hosts.in.redalder.org"
|
||||||
|
share = "/var/nfs/matrix/postgresql"
|
||||||
|
node_attach_driver = "nfs"
|
||||||
|
provisioner_driver = "node-manual"
|
||||||
|
}
|
||||||
|
|
||||||
|
mount_options {
|
||||||
|
fs_type = "nfs"
|
||||||
|
mount_flags = [ "nfsvers=3", "hard", "async" ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
resource "nomad_volume" "matrix-registrations" {
|
resource "nomad_volume" "matrix-registrations" {
|
||||||
type = "csi"
|
type = "csi"
|
||||||
plugin_id = "org.democratic-csi.nfs"
|
plugin_id = "org.democratic-csi.nfs"
|
||||||
|
|
|
@ -165,6 +165,15 @@ EOF
|
||||||
access_mode = "single-node-writer"
|
access_mode = "single-node-writer"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
volume "matrix-postgresql" {
|
||||||
|
type = "csi"
|
||||||
|
source = "matrix-postgresql"
|
||||||
|
read_only = false
|
||||||
|
|
||||||
|
attachment_mode = "file-system"
|
||||||
|
access_mode = "single-node-writer"
|
||||||
|
}
|
||||||
|
|
||||||
volume "matrix-registrations" {
|
volume "matrix-registrations" {
|
||||||
type = "csi"
|
type = "csi"
|
||||||
source = "matrix-registrations"
|
source = "matrix-registrations"
|
||||||
|
@ -213,6 +222,43 @@ EOF
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
task "postgresql" {
|
||||||
|
driver = "docker"
|
||||||
|
|
||||||
|
volume_mount {
|
||||||
|
volume = "matrix-postgresql"
|
||||||
|
destination = "/var/lib/postgresql"
|
||||||
|
read_only = false
|
||||||
|
}
|
||||||
|
|
||||||
|
config {
|
||||||
|
nix_flake_ref = "${var.flake_ref}#nixngSystems.conduitPostgresql.config.system.build.toplevel"
|
||||||
|
nix_flake_sha = var.flake_sha
|
||||||
|
entrypoint = [ "init" ]
|
||||||
|
}
|
||||||
|
|
||||||
|
resources {
|
||||||
|
cpu = 500
|
||||||
|
memory = 128
|
||||||
|
memory_max = 256
|
||||||
|
}
|
||||||
|
|
||||||
|
template {
|
||||||
|
data = <<EOF
|
||||||
|
alter user synapse with encrypted password '{{ with secret "kv/data/matrix/synapse" }}{{ .Data.data.pgpass }}{{ end }}';
|
||||||
|
\c synapse;
|
||||||
|
SELECT setval('application_services_txn_id_seq', (
|
||||||
|
SELECT GREATEST(MAX(txn_id), 0) FROM application_services_txns
|
||||||
|
));
|
||||||
|
EOF
|
||||||
|
destination = "secrets/init.sql"
|
||||||
|
}
|
||||||
|
|
||||||
|
vault {
|
||||||
|
policies = ["matrix-synapse-policy"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
task "synapse" {
|
task "synapse" {
|
||||||
driver = "docker"
|
driver = "docker"
|
||||||
|
|
||||||
|
@ -246,9 +292,29 @@ EOF
|
||||||
template {
|
template {
|
||||||
data = <<EOF
|
data = <<EOF
|
||||||
{{ with secret "kv/data/matrix/synapse" }}
|
{{ with secret "kv/data/matrix/synapse" }}
|
||||||
|
PSQL_PASSWORD={{ .Data.data.pgpass }}
|
||||||
|
{{ end }}
|
||||||
|
EOF
|
||||||
|
destination = "secrets/environment"
|
||||||
|
env = true
|
||||||
|
perms = "400"
|
||||||
|
}
|
||||||
|
|
||||||
|
template {
|
||||||
|
data = <<EOF
|
||||||
|
{{ with secret "kv/data/matrix/synapse" }}
|
||||||
registration_shared_secret: "{{ .Data.data.registration_shared_secret }}"
|
registration_shared_secret: "{{ .Data.data.registration_shared_secret }}"
|
||||||
macaroon_secret_key: "{{ .Data.data.macaroon_secret_key }}"
|
macaroon_secret_key: "{{ .Data.data.macaroon_secret_key }}"
|
||||||
form_secret: "{{ .Data.data.form_secret }}"
|
form_secret: "{{ .Data.data.form_secret }}"
|
||||||
|
database:
|
||||||
|
name: "psycopg2"
|
||||||
|
args:
|
||||||
|
user: "synapse"
|
||||||
|
password: "{{ .Data.data.pgpass }}"
|
||||||
|
database: "synapse"
|
||||||
|
host: "127.0.0.1"
|
||||||
|
cp_min: 5
|
||||||
|
cp_max: 10
|
||||||
{{ end }}
|
{{ end }}
|
||||||
EOF
|
EOF
|
||||||
destination = "/secrets/extra.yaml"
|
destination = "/secrets/extra.yaml"
|
||||||
|
|
|
@ -236,7 +236,7 @@ EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
config {
|
config {
|
||||||
nix_flake_ref = "${var.flake_ref}#nixngSystems.home-assistant.postgresql.config.system.build.toplevel"
|
nix_flake_ref = "${var.flake_ref}#nixngSystems.home-assistantPostgresql.config.system.build.toplevel"
|
||||||
nix_flake_sha = var.flake_sha
|
nix_flake_sha = var.flake_sha
|
||||||
entrypoint = [ "init" ]
|
entrypoint = [ "init" ]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue