Skip to content

Commit f93a49f

Browse files
added limitation and edited install in 14 and 13
1 parent aa89bae commit f93a49f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

product_docs/docs/epas/13/epas_guide/14_edb_clone_schema.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ In addition, the following limitations apply:
6363
- For remote cloning, if an object in the source schema is dependent upon an extension, then this extension must be created in the public schema of the remote database before invoking the remote cloning function.
6464
- At most, 16 copy jobs can run in parallel to clone schemas, whereas each job can have at most 16 worker processes to copy table data in parallel.
6565
- Queries being run by background workers cannot be cancelled.
66+
- Non-blocking cloning functions such as `localcopyschema_nb` and `remotecopyschema_nb` must be performed by a superuser. Only blocking cloning functions like `localcopyschema` and `remotecopyschema` can be performed by a non-superuser. Although these functions don't enforce the superuser requirement, using them as a non-superuser can lead to unexpected behavior.
6667

6768
The following section describes how to set up EDB Clone Schema on the databases.
6869

@@ -190,7 +191,7 @@ This command also drops the `edb_cloneschema` extension.
190191
**Step 2:** Install the extensions using the following commands:
191192

192193
```text
193-
CREATE EXTENSION parallel_clone SCHEMA public;
194+
CREATE EXTENSION parallel_clone;
194195

195196
CREATE EXTENSION edb_cloneschema;
196197
```

product_docs/docs/epas/14/epas_guide/14_edb_clone_schema.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ The following limitations apply:
6666
- For remote cloning, if an object in the source schema depends on an extension, then you must create this extension in the public schema of the remote database before invoking the remote cloning function.
6767
- At most, 16 copy jobs can run in parallel to clone schemas. Each job can have at most 16 worker processes to copy table data in parallel.
6868
- You can't cancel queries run by background workers.
69+
- Non-blocking cloning functions such as `localcopyschema_nb` and `remotecopyschema_nb` must be performed by a superuser. Only blocking cloning functions like `localcopyschema` and `remotecopyschema` can be performed by a non-superuser. Although these functions don't enforce the superuser requirement, using them as a non-superuser can lead to unexpected behavior.
6970

7071
## Setup process
7172

@@ -178,7 +179,7 @@ Install the EDB Clone Schema on any database to be used as the source or target
178179

179180

180181
```text
181-
CREATE EXTENSION parallel_clone SCHEMA public;
182+
CREATE EXTENSION parallel_clone;
182183
183184
CREATE EXTENSION edb_cloneschema;
184185
```

0 commit comments

Comments
 (0)