In our organization, we are running Postgres 14.5. There is requirement from our team to enable logical replication for few tables. Current WAL_Level is "Replica".
Now, I need change this to "logical" to enable logical replication. My doubt is, if the WAL_Level is changed to "logical", do I need to do any regular maintenance post the change. I am asking this doubt from SQL server perspective. In SQL Server, when the recovery model of database is changed to "Full", we have to run the transactional log backup at regular interval, otherwise the log file will keep growing. Same way, do we need to run any task to keep the size the database under control.
Note: Please let me know, are there any other maintenances that I need to do perform regarding this change.