-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to change pg_pathman schema from public #149
Comments
Hi @p2p-mdurbha,
Could you show the error messages? I'm sure that your problem is negligible. We have tests that dump/restore the database using pg_dump, and everything seems to work fine.
This is not supported. Current design implies that pg_pathman's objects should not be moved after the extension has been created. |
Here are the errors. I realize these are non-critical errors, but these errors cause post-refresh steps to not execute. So I have to address them. pg_restore: [archiver (db)] could not execute query: ERROR: event trigger "pathman_ddl_trigger" already exists pg_restore: [archiver (db)] could not execute query: ERROR: policy "allow_select" for table "pathman_config" already exists |
I suspect you're using Ansible, right? In that case you could hide non-zero exit code, for example: pg_restore ... || true |
I cannot hide errors, incase there are genuine errors that need to be addressed.
Is there a way to drop this trigger, or just assign the pg_pathman plugin to another schema? Thanks very much. |
True, but in a sense it's a genuine error. You see, the problem is that PostgreSQL doesn't understand that our row level security rule (RLS) and event trigger belong to pg_pathman. That's why It's a true error, but it's not important. You have to solve it somehow, though. Unfortunately, I haven't heard of a nicer way to do this. By the way, what are you trying to achieve by dumping/restoring the DB?
No and no. You can't change pg_pathman's schema, and you can't separately drop its trigger. |
What would be the impact of dropping the pg_pathman extension and re-creating it under a new schema on Production? Would I lose all the partitioning information that currently exists? Does it cause any data corruption or data loss? |
@p2p-mdurbha Do you have only range-partitioned tables? If so, then you should be able to drop extension and then recreate it on new database and then add all partitioned tables to |
@funbringer, just want to clarify if I understood you correctly: if I installed pg_pathman into public schema on server1 and took a backup to restore into another server (server2) without any errors I must manually remove pg_pathman on server2 before initiate the restore, otherwise restore will fail with errors mentioned above. |
I guess you got it wrong. What I said means that pg_restore will always complain about these objects if you dump whole DB with pg_pathman installed. The reason is that pg_pathman creates RLS policies in its install script, and pg_dump emits duplicate I'm going to investigate pg_dump's source code and send a patch to pgsql-hackers. Stay tuned. |
My research has led me to the following conclusion: you can safely drop policies before dumping your DB, since they'll be restored by the There's no point in writing a patch to solve original issue with RLS policies, though. It just so happens that tables which belong to extensions are not protected from potentially harmful actions, e.g. |
Problem description
Hello, I am trying to refresh a prod database to test using pg_dump/pg_restore. Unfortunately, my pg_restore fails with "...already exists" error for pg_pathman objects. So I am trying to move the pg_pathman extension from public to a different schema (so that I can exclude it in the pg_dump).
However, my query fails with the error below -
postgres@mdtest2=# alter extension pg_pathman set schema extensions;
ERROR: extension "pg_pathman" does not support SET SCHEMA
How can I accomplish this? I am concerned about dropping and re-creating pg_pathman extension, as I have several partitioned tables in this Production environment.
Can you please help?
Thanks
Environment
emr_prod=# select * from pg_extension;
extname | extowner | extnamespace | extrelocatable | extversion | extconfig | extcondition
--------------------+----------+--------------+----------------+------------+-------------------+--------------
plpgsql | 10 | 11 | f | 1.0 | |
adminpack | 10 | 11 | f | 1.0 | |
ltree | 10 | 2200 | t | 1.0 | |
pg_buffercache | 10 | 2200 | t | 1.1 | |
pg_pathman | 10 | 2200 | f | 1.4 | {8738685,8738694} | {"",""}
pg_stat_statements | 10 | 2200 | t | 1.3 | |
pg_trgm | 10 | 2200 | t | 1.1 | |
pgcrypto | 10 | 2200 | t | 1.2 | |
(8 rows)
emr_prod=# select version();
version
PostgreSQL 9.6.7 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-16), 64-bit
emr_prod=# SELECT pgpro_version();
ERROR: function pgpro_version() does not exist
emr_prod=# SELECT get_pathman_lib_version();
get_pathman_lib_version
10409
(1 row)
The text was updated successfully, but these errors were encountered: