We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07af57d commit 15fcd33Copy full SHA for 15fcd33
doc/src/sgml/postgres-fdw.sgml
@@ -401,6 +401,16 @@ OPTIONS (ADD password_required 'false');
401
A table-level option overrides a server-level option.
402
The default is <literal>false</literal>.
403
</para>
404
+
405
+ <para>
406
+ In order to ensure that the data being returned from a foreign server
407
+ is consistent, <filename>postgres_fdw</filename> will only open one
408
+ connection for a given foreign server and will run all queries against
409
+ that server sequentially even if there are multiple foreign tables
410
+ involved, unless those tables are subject to different user mappings.
411
+ In such a case, it may be more performant to disable this option to
412
+ eliminate the overhead associated with running queries asynchronously.
413
+ </para>
414
</listitem>
415
</varlistentry>
416
0 commit comments