feat(compute01): Add postgres config
Some checks failed
build configuration / build_vault01 (push) Successful in 1m4s
build configuration / build_rescue01 (push) Successful in 1m6s
build configuration / build_storage01 (push) Successful in 1m8s
build configuration / build_web02 (push) Successful in 1m18s
build configuration / build_compute01 (push) Successful in 1m21s
lint / check (push) Successful in 24s
build configuration / build_web01 (push) Successful in 1m31s
build configuration / push_to_cache (push) Has been cancelled
Some checks failed
build configuration / build_vault01 (push) Successful in 1m4s
build configuration / build_rescue01 (push) Successful in 1m6s
build configuration / build_storage01 (push) Successful in 1m8s
build configuration / build_web02 (push) Successful in 1m18s
build configuration / build_compute01 (push) Successful in 1m21s
lint / check (push) Successful in 24s
build configuration / build_web01 (push) Successful in 1m31s
build configuration / push_to_cache (push) Has been cancelled
This commit is contained in:
parent
ed567cf432
commit
4e7b3154da
2 changed files with 29 additions and 0 deletions
|
@ -20,6 +20,7 @@ lib.extra.mkConfig {
|
||||||
"nextcloud"
|
"nextcloud"
|
||||||
"outline"
|
"outline"
|
||||||
"plausible"
|
"plausible"
|
||||||
|
"postgresql"
|
||||||
"rstudio-server"
|
"rstudio-server"
|
||||||
"satosa"
|
"satosa"
|
||||||
"signald"
|
"signald"
|
||||||
|
|
28
machines/compute01/postgresql.nix
Normal file
28
machines/compute01/postgresql.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.postgresql = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
package = pkgs.postgresql_14;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
checkpoint_completion_target = 0.90625;
|
||||||
|
default_statistics_target = 100;
|
||||||
|
effective_cache_size = "32GB";
|
||||||
|
effective_io_concurrency = 200;
|
||||||
|
maintenance_work_mem = "2GB";
|
||||||
|
max_connections = 500;
|
||||||
|
max_parallel_maintenance_workers = 4;
|
||||||
|
max_parallel_workers = 12;
|
||||||
|
max_parallel_workers_per_gather = 4;
|
||||||
|
max_wal_size = "4GB";
|
||||||
|
max_worker_processes = 12;
|
||||||
|
min_wal_size = "1GB";
|
||||||
|
random_page_cost = 1.125;
|
||||||
|
shared_buffers = "16GB";
|
||||||
|
wal_buffers = "16MB";
|
||||||
|
work_mem = "83886kB";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue