This is a foreign data wrapper (FDW) to connect PostgreSQL to GridDB. This FDW works with PostgreSQL 13, 14, 15, 16, 17 and confirmed with GridDB 5.5.0.
- Features
- Supported platforms
- Installation
- Usage
- Functions
- Identifier case handling
- Generated columns
- Character set handling
- Examples
- Limitations
- Tests
- Contributing
- Useful links
- License
-
Support
SELECT. ForSELECT, you can enable partial execution mode as follows:SET griddbfdw.enable_partial_execution TO TRUE; -
Support
INSERT,DELETE,UPDATE
For PostgreSQL version 14 or later:
- Support bulk
INSERTby usingbatch_sizeoption. - Support list cached connections to foreign servers by using function
griddb_get_connection(). - Support discard cached connections to foreign servers by using function
griddb_disconnect('server_name'),griddb_disconnect_all(). - Support deparse
ANY/ALL ARRAYwith the argument is constant.
For PostgreSQL version 16 or later:
- Support Bulk INSERT with COPY command
-
Support function push down in
WHEREclause:- Common functions of Postgres and GridDB (same as for PostgreSQL):
char_length,concat,lower,upper,substr,round,ceiling,ceil,floor. - Unique function of Griddb:
to_timestamp_ms,to_epoch_ms,array_length,element,timestamp,timestampadd,timestampdiff,time_next,time_next_only,time_prev,time_prev_only,time_interpolated,time_sampling,max_rows,min_rows,now. - For the push down of
now()andtimestamp()function, please add prefixgriddb_for these functions. Example:now()->griddb_now()
- Common functions of Postgres and GridDB (same as for PostgreSQL):
-
Support
LIMIT...OFFSETpushdown when havingLIMITclause only or bothLIMITandOFFSET. -
Support
ORDER BYpushdown with column, exceptORDER BY column ASC NULLS FIRST,ORDER BY column DESC NULLS LASTandORDER BYfunctions/formulas -
Support aggregation push down:
- Common functions of Postgres and Griddb are pushed down:
min,max,count(*),sum,avg,variance,stddev. - Unique function of Griddb are pushed down:
time_avg
- Common functions of Postgres and Griddb are pushed down:
-
Support push down
ANY/ALL ARRAYwith the argument is constant.
Also see Limitations.
griddb_fdw was developed on Linux, and should run on any
reasonably POSIX-compliant system.
Prerequisites:
GridDB's C client library. This library can be downloaded from the GridDB website on github.
-
Download GridDB's C client and unpack it into
griddb_fdwdirectory as griddb.Build GridDB's C client
gridstore.hshould be ingriddb_fdw/griddb/client/c/include.libgridstore.soshould be ingriddb/bin.
-
Build and install griddb_fdw
Change into the griddb_fdw source directory.
$ make $ make install
If you want to build griddb_fdw in a source tree of PostgreSQL, use
$ make NO_PGXS=1
griddb_fdw accepts the following options via the CREATE SERVER command:
-
keep_connections as boolean, optional, default
trueControls whether griddb_fdw keeps the connections to the foreign server open so that the subsequent queries can re-use them. If set to off, all connections to the foreign server will be discarded at the end of transaction. Losed connections will be re-established when they are necessary by future queries using a foreign table.
-
host as string, optional
GridDB notification address.
-
port as interger, optional
GridDB notification port.
-
database as string, optional, default
publicGridDB database name.
-
clustername as string, optional, no default
GridDB cluster name.
-
notification_member as string, optional
If you want to use fixed list mode instead of multicast mode, you have to specify
notification_memberinstead ofhostandport:notification_member '10.18.18.18:10001' -
updatable as boolean, optional, default
true -
batch_size as integer, optional, default
1
griddb_fdw accepts the following options via the CREATE USER MAPPING
command:
-
username as string, no default
The griddb username to connect as.
-
password as string, no default
The griddb user's password.
griddb_fdw accepts the following table-level options via the
CREATE FOREIGN TABLE command.
-
table_name as string, default name of foreign table
-
updatable as boolean, optional, default value comes from similar foreign server option
-
use_remote_estimate as boolean, optional
-
batch_size as integer, optional, default value comes from similar foreign server option
-
fdw_startup_cost as interger, optional
-
fdw_tuple_cost as integer, optional
The following column-level options are available:
-
column_name as string, optional, default name of foreign column
-
rowkey as boolean, optional, default
false
griddb_fdw supports IMPORT FOREIGN SCHEMA
(when running with PostgreSQL 9.5 or later) and accepts the following custom options:
-
recreate as boolean, optional, default
falseIf 'true', table schema will be updated.
griddb_fdw yet don't support the foreign data wrapper TRUNCATE API, available
from PostgreSQL 14.
As well as the standard griddb_fdw_handler() and griddb_fdw_validator()
functions, griddb_fdw provides the following user-callable utility functions:
Functions from this FDW in PostgreSQL catalog are yet not described.
griddb_get_connection()
griddb_disconnect('server_name')
griddb_disconnect_all()
PostgreSQL folds identifiers to lower case by default. Rules and problems with GridDB identifiers yet not tested and described.
GridDB does not support generated column, so data will be generated at FDW layer.
griddb_fdw supports generated columns in foreign tables based on output of GridDB. Example:
CREATE FOREIGN TABLE grem1 (
id serial OPTIONS (rowkey 'true'),
a int,
b int GENERATED ALWAYS as (a * 2) STORED
)
SERVER griddb_svr
OPTIONS(
table_name 'gloc1'
);For more details on generated columns see:
Yet not described.
Once for a database you need, as PostgreSQL superuser.
CREATE EXTENSION griddb_fdw;Once for a foreign datasource you need, as PostgreSQL superuser.
CREATE SERVER griddb_svr
FOREIGN DATA WRAPPER griddb_fdw
OPTIONS(
host '239.0.0.1',
port '31999',
clustername 'ktymCluster',
database 'public'
);Once for a normal user (non-superuser) in PostgreSQL, as PostgreSQL superuser. It is a good idea to use a superuser only where really necessary, so let's allow a normal user to use the foreign server (this is not required for the example to work, but it's security recomedation).
GRANT USAGE ON FOREIGN SERVER sqlite_server TO pguser;Where pguser is a sample user for works with foreign server (and foreign tables).
Create an appropriate user mapping:
CREATE USER MAPPING
FOR pguser
SERVER griddb_svr
OPTIONS (
username 'username',
password 'password'
);Where pguser is a sample user for works with foreign server (and foreign tables).
All CREATE FOREIGN TABLE SQL commands can be executed as a normal PostgreSQL user if there were correct GRANT USAGE ON FOREIGN SERVER. No need PostgreSQL supersuer for security reasons but also works with PostgreSQL supersuer.
Create a foreign table referencing the griddb table fdw_test:
CREATE FOREIGN TABLE ft1 (
c1 text,
c2 float,
c3 integer
)
SERVER griddb_svr;Query the foreign table.
SELECT * FROM ft1;The container must have rowkey on GridDB in order to execute update and delete query.
IMPORT FOREIGN SCHEMA public
FROM SERVER griddb_svr
INTO public
OPTIONS (
recreate 'true'
);After schema is imported, we can access tables.
To use CREATE FOREIGN TABLE is not recommended.
- Record is updated by
INSERTcommand if a record with same rowkey as new record exists in GridDB. In this case,griddb_fdwraises the warning.
INSERT INTO ft1 VALUES(100, 'AAA');
INSERT INTO ft1 VALUES(100, 'BBB'); -- Same as "UPDATE ft1 SET b = 'BBB' WHERE a = 100;"- Don't support
ON CONFLICT. PostgreSQL has upsert (update or insert) feature. When inserting a new row into the table, PostgreSQL will update the row if it already exists, otherwise, PostgreSQL inserts the new row. However,griddb_fdwdoes not support the upsert feature now. For example, it shows an error message if user executes the following query.
INSERT INTO ft1(c1, c2) VALUES(11, 12) ON CONFLICT DO NOTHING;- Don't support
RETURNING. Returning is way to obtain data if rows are modified byINSERT,UPDATE, andDELETEcommands.griddb_fdwdoes not support this feature.
INSERT INTO ft1 (c0, c1) VALUES (1, 2) RETURNING c0, c1;- Don't support DIRECT MODIFICATION
- Don't support push down
LIMIT TO|EXCEPTfilter inIMPORT FOREIGN SCHEMA. These filters will run locally.griddb_fdwmakesCREATE FOREIGN TABLEstatements for all existed tables in remote server, and then PostgreSQL's core checksLIMIT TOorEXCEPTconditions. - Don't support
SAVEPOINT. Savepoint does not work, warning is returned.
- Do not push down
ANY/ALLARRAYwith the argument is subquery. - GridDB does not support
numericdata type as PostgreSQL. Therefore, it can not store numbers with too high precision and scale.
GridDB can set a rowkey attribute to the 1st column.
griddb_fdw uses it for identifying a record.
- It is required that a container have the rowkey attribute for executing
UPDATEorDELETE. - It is not supported to update a rowkey-column.
- It requires to get record locks in a transaction.
- Records are locked by the other foreign table which links the same container in GridDB.
If such query is executed, it is no response.
Example1:
Foreign table ft1 and ft2 are linked to same container in GridDB.
BEGIN;
SELECT * FROM ft1 FOR UPDATE;
SELECT * FROM ft2 FOR UPDATE; -- No responseExample2:
BEGIN;
SELECT * FROM ft1, ft2 WHERE ft1.a = ft2.a FOR UPDATE; -- No responseThis is because GridDB manages a transaction by container unit and griddb_fdw creates GSContainer instances for each foreign tables even if the container is same in GridDB.
griddb_fdw is assumed that a column structure on PostgreSQL is same as that of griddb.
It is recommended to create a schema on PostgreSQL by IMPORT FOREIGN SCHEMA.
griddb_fdw might return an error when DML is executed.
For example, container on GridDB has 3 columns. The 1st column is "c1" as integer, the 2nd is "c2" as float, and the 3rd is "c3" as text.
Schema must be created as
CREATE FOREIGN TABLE ft1 (
c1 integer,
c2 float,
c3 text
)
SERVER griddb_svr;You should not execute following queries.
Types are not match.
CREATE FOREIGN TABLE ft1 (
c1 text,
c2 float,
c3 integer
)
SERVER griddb_svr;There is unknown column.
Even if unknown column is dropped, GridDB cannot access ft1 correctly.
CREATE FOREIGN TABLE ft1 (
c0 integer,
c1 integer,
c2 float,
c3 text
)
SERVER griddb_svr;
ALTER FOREIGN TABLE ft1 DROP COLUMN c0;Tests for group of PostgreSQL versions are provided. There is no testing for different GridDB versions. See test.sh and expected.
Opening issues and pull requests on GitHub are welcome.
Reference FDW realisation, postgres_fdw
- https://www.postgresql.org/docs/current/ddl-foreign-data.html
- https://www.postgresql.org/docs/current/sql-createforeigndatawrapper.html
- https://www.postgresql.org/docs/current/sql-createforeigntable.html
- https://www.postgresql.org/docs/current/sql-importforeignschema.html
- https://www.postgresql.org/docs/current/fdwhandler.html
- https://www.postgresql.org/docs/current/postgres-fdw.html
Copyright (c) 2018, TOSHIBA CORPORATION Copyright (c) 2011-2016, EnterpriseDB Corporation
Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and the following two paragraphs appear in all copies.
See the LICENSE file for full details.
