57.4. Foreign Data Wrapper Query Planning#
The FDW callback functionsGetForeignRelSize
,GetForeignPaths
,GetForeignPlan
,PlanForeignModify
,GetForeignJoinPaths
,GetForeignUpperPaths
, andPlanDirectModify
must fit into the workings of thePostgreSQL planner. Here are some notes about what they must do.
The information inroot
andbaserel
can be used to reduce the amount of information that has to be fetched from the foreign table (and therefore reduce the cost).baserel->baserestrictinfo
is particularly interesting, as it contains restriction quals (WHERE
clauses) that should be used to filter the rows to be fetched. (The FDW itself is not required to enforce these quals, as the core executor can check them instead.)baserel->reltarget->exprs
can be used to determine which columns need to be fetched; but note that it only lists columns that have to be emitted by theForeignScan
plan node, not columns that are used in qual evaluation but not output by the query.
Various private fields are available for the FDW planning functions to keep information in. Generally, whatever you store in FDW private fields should be palloc'd, so that it will be reclaimed at the end of planning.
baserel->fdw_private
is avoid
pointer that is available for FDW planning functions to store information relevant to the particular foreign table. The core planner does not touch it except to initialize it to NULL when theRelOptInfo
node is created. It is useful for passing information forward fromGetForeignRelSize
toGetForeignPaths
and/orGetForeignPaths
toGetForeignPlan
, thereby avoiding recalculation.
GetForeignPaths
can identify the meaning of different access paths by storing private information in thefdw_private
field ofForeignPath
nodes.fdw_private
is declared as aList
pointer, but could actually contain anything since the core planner does not touch it. However, best practice is to use a representation that's dumpable bynodeToString
, for use with debugging support available in the backend.
GetForeignPlan
can examine thefdw_private
field of the selectedForeignPath
node, and can generatefdw_exprs
andfdw_private
lists to be placed in theForeignScan
plan node, where they will be available at execution time. Both of these lists must be represented in a form thatcopyObject
knows how to copy. Thefdw_private
list has no other restrictions and is not interpreted by the core backend in any way. Thefdw_exprs
list, if not NIL, is expected to contain expression trees that are intended to be executed at run time. These trees will undergo post-processing by the planner to make them fully executable.
InGetForeignPlan
, generally the passed-in target list can be copied into the plan node as-is. The passedscan_clauses
list contains the same clauses asbaserel->baserestrictinfo
, but may be re-ordered for better execution efficiency. In simple cases the FDW can just stripRestrictInfo
nodes from thescan_clauses
list (usingextract_actual_clauses
) and put all the clauses into the plan node's qual list, which means that all the clauses will be checked by the executor at run time. More complex FDWs may be able to check some of the clauses internally, in which case those clauses can be removed from the plan node's qual list so that the executor doesn't waste time rechecking them.
As an example, the FDW might identify some restriction clauses of the formforeign_variable
=
sub_expression
, which it determines can be executed on the remote server given the locally-evaluated value of thesub_expression
. The actual identification of such a clause should happen duringGetForeignPaths
, since it would affect the cost estimate for the path. The path'sfdw_private
field would probably include a pointer to the identified clause'sRestrictInfo
node. ThenGetForeignPlan
would remove that clause fromscan_clauses
, but add thesub_expression
tofdw_exprs
to ensure that it gets massaged into executable form. It would probably also put control information into the plan node'sfdw_private
field to tell the execution functions what to do at run time. The query transmitted to the remote server would involve something likeWHERE
, with the parameter value obtained at run time from evaluation of theforeign_variable
= $1fdw_exprs
expression tree.
Any clauses removed from the plan node's qual list must instead be added tofdw_recheck_quals
or rechecked byRecheckForeignScan
in order to ensure correct behavior at theREAD COMMITTED
isolation level. When a concurrent update occurs for some other table involved in the query, the executor may need to verify that all of the original quals are still satisfied for the tuple, possibly against a different set of parameter values. Usingfdw_recheck_quals
is typically easier than implementing checks insideRecheckForeignScan
, but this method will be insufficient when outer joins have been pushed down, since the join tuples in that case might have some fields go to NULL without rejecting the tuple entirely.
AnotherForeignScan
field that can be filled by FDWs isfdw_scan_tlist
, which describes the tuples returned by the FDW for this plan node. For simple foreign table scans this can be set toNIL
, implying that the returned tuples have the row type declared for the foreign table. A non-NIL
value must be a target list (list ofTargetEntry
s) containing Vars and/or expressions representing the returned columns. This might be used, for example, to show that the FDW has omitted some columns that it noticed won't be needed for the query. Also, if the FDW can compute expressions used by the query more cheaply than can be done locally, it could add those expressions tofdw_scan_tlist
. Note that join plans (created from paths made byGetForeignJoinPaths
) must always supplyfdw_scan_tlist
to describe the set of columns they will return.
The FDW should always construct at least one path that depends only on the table's restriction clauses. In join queries, it might also choose to construct path(s) that depend on join clauses, for exampleforeign_variable
=
local_variable
. Such clauses will not be found inbaserel->baserestrictinfo
but must be sought in the relation's join lists. A path using such a clause is called a“parameterized path”. It must identify the other relations used in the selected join clause(s) with a suitable value ofparam_info
; useget_baserel_parampathinfo
to compute that value. InGetForeignPlan
, thelocal_variable
portion of the join clause would be added tofdw_exprs
, and then at run time the case works the same as for an ordinary restriction clause.
If an FDW supports remote joins,GetForeignJoinPaths
should produceForeignPath
s for potential remote joins in much the same way asGetForeignPaths
works for base tables. Information about the intended join can be passed forward toGetForeignPlan
in the same ways described above. However,baserestrictinfo
is not relevant for join relations; instead, the relevant join clauses for a particular join are passed toGetForeignJoinPaths
as a separate parameter (extra->restrictlist
).
An FDW might additionally support direct execution of some plan actions that are above the level of scans and joins, such as grouping or aggregation. To offer such options, the FDW should generate paths and insert them into the appropriateupper relation. For example, a path representing remote aggregation should be inserted into theUPPERREL_GROUP_AGG
relation, usingadd_path
. This path will be compared on a cost basis with local aggregation performed by reading a simple scan path for the foreign relation (note that such a path must also be supplied, else there will be an error at plan time). If the remote-aggregation path wins, which it usually would, it will be converted into a plan in the usual way, by callingGetForeignPlan
. The recommended place to generate such paths is in theGetForeignUpperPaths
callback function, which is called for each upper relation (i.e., each post-scan/join processing step), if all the base relations of the query come from the same FDW.
PlanForeignModify
and the other callbacks described inSection 57.2.4 are designed around the assumption that the foreign relation will be scanned in the usual way and then individual row updates will be driven by a localModifyTable
plan node. This approach is necessary for the general case where an update requires reading local tables as well as foreign tables. However, if the operation could be executed entirely by the foreign server, the FDW could generate a path representing that and insert it into theUPPERREL_FINAL
upper relation, where it would compete against theModifyTable
approach. This approach could also be used to implement remoteSELECT FOR UPDATE
, rather than using the row locking callbacks described inSection 57.2.6. Keep in mind that a path inserted intoUPPERREL_FINAL
is responsible for implementingall behavior of the query.
When planning anUPDATE
orDELETE
,PlanForeignModify
andPlanDirectModify
can look up theRelOptInfo
struct for the foreign table and make use of thebaserel->fdw_private
data previously created by the scan-planning functions. However, inINSERT
the target table is not scanned so there is noRelOptInfo
for it. TheList
returned byPlanForeignModify
has the same restrictions as thefdw_private
list of aForeignScan
plan node, that is it must contain only structures thatcopyObject
knows how to copy.
INSERT
with anON CONFLICT
clause does not support specifying the conflict target, as unique constraints or exclusion constraints on remote tables are not locally known. This in turn implies thatON CONFLICT DO UPDATE
is not supported, since the specification is mandatory there.