-
Notifications
You must be signed in to change notification settings - Fork 193
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
Feature request: tablespace mapping in barman-cloud-restore #330
Comments
amenonsen
added a commit
that referenced
this issue
Jul 22, 2021
Each tablespace has a name, an oid, and a location (directory), and there is a symbolic link from $PGDATA/pg_tblspc/$oid to the location. barman-cloud-backup uploads a $oid.tar file for each tablespace, and records the properties of each tablespace in backup_info.tablespaces. Until now, barman-cloud-restore knew only how to download $oid.tar and extract its contents to the original location. Here we add a couple of new features: 1. You may optionally specify `--tablespace name:/new/location` to extract a given tablespace to a different location (you can repeat this option multiple times) 2. After downloading and extracting $oid.tar to the desired location, we now recreate the symbolic link from $PGDATA/pg_tblspc/$oid to that directory. Closes #343 Closes #330
amenonsen
added a commit
that referenced
this issue
Jul 23, 2021
Each tablespace has a name, an oid, and a location (directory), and there is a symbolic link from $PGDATA/pg_tblspc/$oid to the location. barman-cloud-backup uploads a $oid.tar file for each tablespace, and records the properties of each tablespace in backup_info.tablespaces. Until now, barman-cloud-restore knew only how to download $oid.tar and extract its contents to the original location. Here we add a couple of new features: 1. You may optionally specify `--tablespace name:/new/location` to extract a given tablespace to a different location (you can repeat this option multiple times) 2. After downloading and extracting $oid.tar to the desired location, we now recreate the symbolic link from $PGDATA/pg_tblspc/$oid to that directory. Closes #343 Closes #330
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently barman 1.12 supports tablespace mapping in
barman recover
command through option--tablespace
. It seems thatbarman-cloud-restore
doesn't have the same capability. Could you please evaluate the feasibility of that?The text was updated successfully, but these errors were encountered: