The gp_parallel_retrieve_cursor
module is a Greenplum Database-specific cursor implementation loosely based on the PostgreSQL cursor.
This topic includes the following sections:
- About the gp_parallel_retrieve_cursor Module
- Limiting the Number of Concurrently Open Cursors
- Additional Module Documentation
The gp_parallel_retrieve_cursor
module is installed when you install Greenplum Database. Before you can use any of the functions or views defined in the module, you must register the gp_parallel_retrieve_cursor
extension in each database where you want to use the functionality:
Refer to for more information.
About the gp_parallel_retrieve_cursor Module
You use a cursor to retrieve a smaller number of rows at a time from a larger query. When you declare a parallel retrieve cursor, the Greenplum Database Query Dispatcher (QD) dispatches the query plan to each Query Executor (QE), and creates an endpoint on each QE before it executes the query. An endpoint is a query result source for a parallel retrieve cursor on a specific QE. Instead of returning the query result to the QD, an endpoint retains the query result for retrieval via a different process: a direct connection to the endpoint. You open a special retrieve mode connection, called a retrieve session, and use the new RETRIEVE
SQL command to retrieve query results from each parallel retrieve cursor endpoint. You can retrieve from parallel retrieve cursor endpoints on demand and in parallel.
The gp_parallel_retrieve_cursor
module provides the following functions and views that you can use to examine and manage parallel retrieve cursors and endpoints:
You will perform the following tasks when you use a Greenplum Database parallel retrieve cursor to read query results in parallel from Greenplum segments:
- Declare the parallel retrieve cursor.
- .
- Open a retrieve connection to each endpoint.
- .
- Wait for data retrieval to complete.
- .
- Close the parallel retrieve cursor.
In addition to the above, you may optionally choose to open a utility-mode connection to an endpoint to .
You a cursor to retrieve a smaller number of rows at a time from a larger query. When you declare a parallel retrieve cursor, you can retrieve the query results directly from the Greenplum Database segments.
The syntax for declaring a parallel retrieve cursor is similar to that of declaring a regular cursor; you must additionally include the PARALLEL RETRIEVE
keywords in the command. You can declare a parallel retrieve cursor only within a transaction, and the cursor name that you specify when you declare the cursor must be unique within the transaction.
For example, the following commands begin a transaction and declare a parallel retrieve cursor named prc1
to retrieve the results from a specific query:
BEGIN;
DECLARE prc1 PARALLEL RETRIEVE CURSOR FOR <query>;
Greenplum Database creates the endpoint(s) on the QD or QEs, depending on the query parameters:
Greenplum Database creates an endpoint on the QD when the query results must be gathered by the master. For example, this
DECLARE
statement requires that the master gather the query results:DECLARE c1 PARALLEL RETRIEVE CURSOR FOR SELECT * FROM t1 ORDER BY a;
Note
You may choose to run the
EXPLAIN
command on the parallel retrieve cursor query to identify when motion is involved. Consider using a regular cursor for such queries.When the query involves direct dispatch to a segment (the query is filtered on the distribution key), Greenplum Database creates the endpoint(s) on specific segment host(s). For example, this
DECLARE
statement may result in the creation of single endpoint:DECLARE c2 PARALLEL RETRIEVE CURSOR FOR SELECT * FROM t1 WHERE a=1;
The DECLARE
command returns when the endpoints are ready and query execution has begun.
Listing a Parallel Retrieve Cursor’s Endpoints
You can obtain the information that you need to initiate a retrieve connection to an endpoint by invoking the gp_get_endpoints()
function or examining the gp_endpoints
view in a session on the Greenplum Database master host:
SELECT * FROM gp_get_endpoints();
SELECT * FROM gp_endpoints;
These commands return the list of endpoints in a table with the following columns:
Refer to the view reference page for more information about the endpoint attributes returned by these commands.
After you declare a parallel retrieve cursor, you can open a retrieve session to each endpoint. Only a single retrieve session may be open to an endpoint at any given time.
Retrieve session authentication does not depend on the pg_hba.conf
file, but rather on an authentication token (auth_token
) generated by Greenplum Database.
Note
Because Greenplum Database skips
pg_hba.conf
-controlled authentication for a retrieve session, for security purposes you may invoke only theRETRIEVE
command in the session.
When you initiate a retrieve session to an endpoint:
- The user that you specify for the retrieve session must be the session user that declared the parallel retrieve cursor (the
username
returned bygp_endpoints
). This user must have Greenplum Database login privileges. - You specify the
hostname
andport
returned bygp_endpoints
for the endpoint. - You authenticate the retrieve session by specifying the returned for the endpoint via the
PGPASSWORD
environment variable, or when prompted for the retrieve sessionPassword
. - You must specify the server configuration parameter on the connection request, and set the value to
true
.
For example, if you are initiating a retrieve session via psql
:
PGOPTIONS='-c gp_retrieve_conn=true' psql -h <hostname> -p <port> -U <username> -d <dbname>
To distinguish a retrieve session from other sessions running on a segment host, Greenplum Database includes the [retrieve]
tag on the ps
command output display for the process.
Retrieving Data From the Endpoint
Once you establish a retrieve session, you retrieve the tuples associated with a query result on that endpoint using the command.
You can specify a (positive) number of rows to retrieve, or ALL
rows:
RETRIEVE 7 FROM ENDPOINT prc10000003300000003;
RETRIEVE ALL FROM ENDPOINT prc10000003300000003;
Greenplum Database returns an empty set if there are no more rows to retrieve from the endpoint.
Use the gp_wait_parallel_retrieve_cursor()
function to display the the status of data retrieval from a parallel retrieve cursor, or to wait for all endpoints to finishing retrieving the data. You invoke this function in the transaction block in which you declared the parallel retrieve cursor.
gp_wait_parallel_retrieve_cursor()
returns true
only when all tuples are fully retrieved from all endpoints. In all other cases, the function returns false
and may additionally throw an error.
The function signatures of gp_wait_parallel_retrieve_cursor()
follow:
You must identify the name of the cursor when you invoke this function. The timeout argument is optional:
- The default timeout is
0
seconds: Greenplum Database checks the retrieval status of all endpoints and returns the result immediately. - A timeout value of
-1
seconds instructs Greenplum to block until all data from all endpoints has been retrieved, or block until an error occurs. - The function reports the retrieval status after a timeout occurs for any other positive timeout value that you specify.
gp_wait_parallel_retrieve_cursor()
returns when it encounters one of the following conditions:
- All data has been retrieved from all endpoints.
- A timeout has occurred.
- An error has occurred.
Handling Data Retrieval Errors
An error can occur in a retrieve sesson when:
- You cancel or interrupt the retrieve operation.
- The endpoint is only partially retrieved when the retrieve session quits.
When an error occurs in a specific retrieve session, Greenplum Database removes the endpoint from the QE. Other retrieve sessions continue to function as normal.
If you close the transaction before fully retrieving from all endpoints, or if gp_wait_parallel_retrieve_cursor()
returns an error, Greenplum Database terminates all remaining open retrieve sessions.
When you have completed retrieving data from the parallel retrieve cursor, close the cursor and end the transaction:
CLOSE prc1;
END;
When you close a parallel retrieve cursor, Greenplum Database terminates any open retrieve sessions associated with the cursor.
On closing, Greenplum Database frees all resources associated with the parallel retrieve cursor and its endpoints.
Listing Segment-Specific Retrieve Session Information
You can obtain information about all retrieve sessions to a specific QE endpoint by invoking the gp_get_segment_endpoints()
function or examining the gp_segment_endpoints
view:
SELECT * FROM gp_get_segment_endpoints();
SELECT * FROM gp_segment_endpoints;
These commands provide information about the retrieve sessions associated with a QE endpoint for all active parallel retrieve cursors declared by the current session user. When the Greenplum Database superuser invokes the command, it returns the retrieve session information for all endpoints on the QE created for all parallel retrieve cursors declared by all users.
You can obtain segment-specific retrieve session information in two ways: from the QD, or via a utility-mode connection to the endpoint:
QD example:
SELECT * from gp_dist_random('gp_segment_endpoints');
Display the information filtered to a specific segment:
SELECT * from gp_dist_random('gp_segment_endpoints') WHERE gp_segment_id = 0;
Example utilizing a utility-mode connection to the endpoint:
$ PGOPTIONS='-c gp_session_role=utility' psql -h sdw3 -U localuser -p 6001 -d testdb
testdb=> SELECT * from gp_segment_endpoints;
The commands return endpoint and retrieve session information in a table with the following columns:
Refer to the gp_segment_endpoints view reference page for more information about the endpoint attributes returned by these commands.
Limiting the Number of Concurrently Open Cursors
By default, Greenplum Database does not limit the number of parallel retrieve cursors that are active in the cluster (up to the maximum value of 1024). The Greenplum Database superuser can set the gp_max_parallel_cursors server configuration parameter to limit the number of open cursors.
The gp_parallel_retrieve_cursor
module has the following limitations:
- The Greenplum Query Optimizer (GPORCA) does not support queries on a parallel retrieve cursor.
- Greenplum Database ignores the
BINARY
clause when you declare a parallel retrieve cursor. - Parallel retrieve cursors cannot be declared
WITH HOLD
. - Parallel retrieve cursors do not support the
FETCH
and cursor operations. - Parallel retrieve cursors are not supported in SPI; you cannot declare a parallel retrieve cursor in a PL/pgSQL function.
Additional Module Documentation
Refer to the gp_parallel_retrieve_cursor
in the Greenplum Database github
repository for additional information about this module. You can also find parallel retrieve cursor programming examples in the repository.
Create a parallel retrieve cursor and use it to pull query results from a Greenplum Database cluster:
Register the
gp_parallel_retrieve_cursor
extension if it does not already exist:CREATE EXTENSION IF NOT EXISTS gp_parallel_retrieve_cursor;
Start the transaction:
Declare a parallel retrieve cursor named
prc1
for aSELECT *
query on a table:DECLARE prc1 PARALLEL RETRIEVE CURSOR FOR SELECT * FROM t1;
Obtain the endpoints for this parallel retrieve cursor:
SELECT * FROM gp_endpoints WHERE cursorname='prc1';
gp_segment_id | auth_token | cursorname | sessionid | hostname | port | username | state | endpointname
---------------+----------------------------------+------------+-----------+----------+------+----------+-------+----------------------
2 | 39a2dc90a82fca668e04d04e0338f105 | prc1 | 51 | sdw1 | 6000 | bill | READY | prc10000003300000003
3 | 1a6b29f0f4cad514a8c3936f9239c50d | prc1 | 51 | sdw1 | 6001 | bill | READY | prc10000003300000003
4 | 1ae948c8650ebd76bfa1a1a9fa535d93 | prc1 | 51 | sdw2 | 6000 | bill | READY | prc10000003300000003
5 | f10f180133acff608275d87966f8c7d9 | prc1 | 51 | sdw2 | 6001 | bill | READY | prc10000003300000003
6 | dda0b194f74a89ed87b592b27ddc0e39 | prc1 | 51 | sdw3 | 6000 | bill | READY | prc10000003300000003
7 | 037f8c747a5dc1b75fb10524b676b9e8 | prc1 | 51 | sdw3 | 6001 | bill | READY | prc10000003300000003
8 | c43ac67030dbc819da9d2fd8b576410c | prc1 | 51 | sdw4 | 6000 | bill | READY | prc10000003300000003
9 | e514ee276f6b2863142aa2652cbccd85 | prc1 | 51 | sdw4 | 6001 | bill | READY | prc10000003300000003
(8 rows)
Wait until all endpoints are fully retrieved:
SELECT gp_wait_parallel_retrieve_cursor( 'prc1', -1 );
For each endpoint:
Open a retrieve session. For example, to open a retrieve session to the segment instance running on
sdw3
, port number6001
, run the following command in a different terminal window; when prompted for the password, provide theauth_token
identified in row 7 of thegp_endpoints
output:$ PGOPTIONS='-c gp_retrieve_conn=true' psql -h sdw3 -U localuser -p 6001 -d testdb
Password:
Retrieve data from the endpoint:
-- Retrieve 7 rows of data from this session
RETRIEVE 7 FROM ENDPOINT prc10000003300000003
-- Retrieve the remaining rows of data from this session
RETRIEVE ALL FROM ENDPOINT prc10000003300000003
-
\q
In the original
psql
session (the session in which you declared the parallel retrieve cursor), verify that thegp_wait_parallel_retrieve_cursor()
function returnedt
. Then close the cursor and complete the transaction: