diff --git a/engine/configs/config.example.logical_generic.yml b/engine/configs/config.example.logical_generic.yml index 0033fad377e5f043a312e4d190e3c548fa51aa4b..6e23fb09bb8ff98c4e243609ade7d31dd3da3f1a 100644 --- a/engine/configs/config.example.logical_generic.yml +++ b/engine/configs/config.example.logical_generic.yml @@ -122,7 +122,7 @@ databaseConfigs: &db_configs # Adding shared preload libraries, make sure that there are "pg_stat_statements, auto_explain, logerrors" in the list. # They are needed for query analysis and DB migration testing. # Note, if you are using PostgreSQL 9.6 and older, remove the logerrors extension from the list since it is not supported. - shared_preload_libraries: "pg_stat_statements, auto_explain, logerrors" + shared_preload_libraries: "pg_stat_statements, pg_stat_kcache, auto_explain, logerrors" # work_mem and all the Query Planning parameters – copy the values from the source. # Detailed guide: https://postgres.ai/docs/how-to-guides/administration/postgresql-configuration#postgresql-configuration-in-clones work_mem: "100MB" diff --git a/engine/configs/config.example.logical_rds_iam.yml b/engine/configs/config.example.logical_rds_iam.yml index a7a27d55718d46671f2997418308df35dc15f280..33e3223ece437ec77ca984f24206339cda621a41 100644 --- a/engine/configs/config.example.logical_rds_iam.yml +++ b/engine/configs/config.example.logical_rds_iam.yml @@ -122,7 +122,7 @@ databaseConfigs: &db_configs # Adding shared preload libraries, make sure that there are "pg_stat_statements, auto_explain, logerrors" in the list. # It is necessary to perform query and db migration analysis. # Note, if you are using PostgreSQL 9.6 and older, remove the logerrors extension from the list since it is not supported. - shared_preload_libraries: "pg_stat_statements, auto_explain, logerrors" + shared_preload_libraries: "pg_stat_statements, pg_stat_kcache, auto_explain, logerrors" # work_mem and all the Query Planning parameters – copy the values from the source. # To do it, use this query: # select format($$%s = '%s'$$, name, setting) diff --git a/engine/configs/config.example.physical_generic.yml b/engine/configs/config.example.physical_generic.yml index 30f31ece47dcab085268220478e01e46cbafccb4..df15ee63f8e1bfdccfa9759b3e4ec5397cdd24b6 100644 --- a/engine/configs/config.example.physical_generic.yml +++ b/engine/configs/config.example.physical_generic.yml @@ -122,7 +122,7 @@ databaseConfigs: &db_configs # Adding shared preload libraries, make sure that there are "pg_stat_statements, auto_explain, logerrors" in the list. # It is necessary to perform query and db migration analysis. # Note, if you are using PostgreSQL 9.6 and older, remove the logerrors extension from the list since it is not supported. - shared_preload_libraries: "pg_stat_statements, auto_explain, logerrors" + shared_preload_libraries: "pg_stat_statements, pg_stat_kcache, auto_explain, logerrors" # work_mem and all the Query Planning parameters – copy the values from the source. # To do it, use this query: # select format($$%s = '%s'$$, name, setting) diff --git a/engine/configs/config.example.physical_pgbackrest.yml b/engine/configs/config.example.physical_pgbackrest.yml index 5aef0675b3bc3efda20187bb1a5672272f844b71..0a1642b944e817df7c0748ca6ca78026da4cf522 100644 --- a/engine/configs/config.example.physical_pgbackrest.yml +++ b/engine/configs/config.example.physical_pgbackrest.yml @@ -122,7 +122,7 @@ databaseConfigs: &db_configs # Adding shared preload libraries, make sure that there are "pg_stat_statements, auto_explain, logerrors" in the list. # It is necessary to perform query and db migration analysis. # Note, if you are using PostgreSQL 9.6 and older, remove the logerrors extension from the list since it is not supported. - shared_preload_libraries: "pg_stat_statements, auto_explain, logerrors" + shared_preload_libraries: "pg_stat_statements, pg_stat_kcache, auto_explain, logerrors" # work_mem and all the Query Planning parameters – copy the values from the source. # To do it, use this query: # select format($$%s = '%s'$$, name, setting) diff --git a/engine/configs/config.example.physical_walg.yml b/engine/configs/config.example.physical_walg.yml index 4b7090fb5062b161414bb193111aa204c13af02b..1dc860bf5732021ac6f3d783f6c118ffe770a741 100644 --- a/engine/configs/config.example.physical_walg.yml +++ b/engine/configs/config.example.physical_walg.yml @@ -122,7 +122,7 @@ databaseConfigs: &db_configs # Adding shared preload libraries, make sure that there are "pg_stat_statements, auto_explain, logerrors" in the list. # It is necessary to perform query and db migration analysis. # Note, if you are using PostgreSQL 9.6 and older, remove the logerrors extension from the list since it is not supported. - shared_preload_libraries: "pg_stat_statements, auto_explain, logerrors" + shared_preload_libraries: "pg_stat_statements, pg_stat_kcache, auto_explain, logerrors" # work_mem and all the Query Planning parameters – copy the values from the source. # To do it, use this query: # select format($$%s = '%s'$$, name, setting)