The Spanner JDBC driver (Java Database Connectivity) supports session management statements, which let you modify the state of your connection, execute transactions, and efficiently execute batches of statements.
The following commands apply to PostgreSQL-dialect databases.
Connection statements
The following statements make changes to or display properties of the current connection.
SPANNER.READONLY
A boolean indicating whether or not the connection is in read-only mode. The
default is false
.
SHOW [VARIABLE] SPANNER.READONLY
SET SPANNER.READONLY {TO|=} { true | false }
You can change the value of this property only while there is no active transaction.
The following example shows how to use this property to execute read-only
transactions in Spanner.▶ Example: Read-only transaction (Click to expand)
SET SPANNER.READONLY = TRUE;
-- This transaction is a read-only transaction.
BEGIN TRANSACTION;
-- The following two queries both use the read-only transaction.
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
SELECT Title
FROM Albums
ORDER BY Title;
-- This shows the read timestamp that was used for the two queries.
SHOW SPANNER.READ_TIMESTAMP;
-- This marks the end of the read-only transaction. The next statement starts
-- a new read-only transaction.
COMMIT;
AUTOCOMMIT
A boolean indicating whether or not the connection is in autocommit mode. The
default is true
.
SHOW [VARIABLE] AUTOCOMMIT
SET AUTOCOMMIT {TO|=} { true | false }
You can change the value of this property only when there is no active transaction.
When AUTOCOMMIT
is set to false, a new transaction is initiated automatically
after you execute COMMIT
or ROLLBACK
. The first statement that you execute
starts the transaction.
The following example shows how to use the ▶ Example: Autocommit (Click to expand)
autocommit
property.
-- The default value for AUTOCOMMIT is true.
SHOW AUTOCOMMIT;
-- This insert statement is automatically committed after it is executed, as
-- the connection is in autocommit mode.
INSERT INTO T (id, col_a, col_b) VALUES (1, 100, 1);
-- Turning off autocommit means that a new transaction is automatically started
-- when the next statement is executed.
SET AUTOCOMMIT = FALSE;
-- The following statement starts a new transaction.
INSERT INTO T (id, col_a, col_b) VALUES (2, 200, 2);
-- This statement uses the same transaction as the previous statement.
INSERT INTO T (id, col_a, col_b) VALUES (3, 300, 3);
-- Commit the current transaction with the two INSERT statements.
COMMIT;
-- Transactions can also be executed in autocommit mode by executing the BEGIN
-- statement.
SET AUTOCOMMIT = FALSE;
-- Execute a transaction while in autocommit mode.
BEGIN;
INSERT INTO T (id, col_a, col_b) VALUES (4, 400, 4);
INSERT INTO T (id, col_a, col_b) VALUES (5, 500, 5);
COMMIT;
SPANNER.RETRY_ABORTS_INTERNALLY
A boolean indicating whether the connection automatically retries aborted
transactions. The default is true
.
SHOW [VARIABLE] SPANNER.RETRY_ABORTS_INTERNALLY
SET SPANNER.RETRY_ABORTS_INTERNALLY {TO|=} { true | false }
You can change the value of this property only after a transaction has started
(see BEGIN TRANSACTION
) and before
any statements are executed within the transaction.
When you set SPANNER.RETRY_ABORTS_INTERNALLY
to true, the connection keeps a
checksum of all data that the connection returns to the client application. This
is used to retry the transaction if it is aborted by Spanner.
The default value is true
. We recommend setting this value to false
if
your application already retries aborted transactions.
SPANNER.AUTOCOMMIT_DML_MODE
A STRING
property indicating the autocommit mode for
Data Manipulation Language (DML) statements.
SHOW [VARIABLE] SPANNER.AUTOCOMMIT_DML_MODE
SET SPANNER.AUTOCOMMIT_DML_MODE {TO|=} { 'TRANSACTIONAL' | 'PARTITIONED_NON_ATOMIC' }
The possible values are:
- In
TRANSACTIONAL
mode, the driver executes DML statements as separate atomic transactions. The driver creates a new transaction, executes the DML statement, and either commits the transaction upon successful execution or rolls back the transaction in the case of an error. - In
PARTITIONED_NON_ATOMIC
mode, the driver executes DML statements as partitioned update statements. A partitioned update statement can run as a series of many transactions, each covering a subset of the rows impacted. The partitioned statement provides weakened semantics in exchange for better scalability and performance.
The default is TRANSACTIONAL
.
The following example shows how to execute
Partitioned DML using the
Spanner JDBC driver.▶ Example: Partitioned DML (Click to expand)
-- Change autocommit DML mode to use Partitioned DML.
SET SPANNER.AUTOCOMMIT_DML_MODE = 'PARTITIONED_NON_ATOMIC';
-- Delete all singers that have been marked as inactive.
-- This statement is executed using Partitioned DML.
DELETE
FROM singers
WHERE active=false;
-- Change DML mode back to standard `TRANSACTIONAL`.
SET SPANNER.AUTOCOMMIT_DML_MODE = 'TRANSACTIONAL';
STATEMENT_TIMEOUT
A property of type STRING
indicating the current timeout value for statements.
SHOW [VARIABLE] STATEMENT_TIMEOUT
SET STATEMENT_TIMEOUT {TO|=} { '<int8>{ s | ms | us | ns }' | <int8> | DEFAULT }
The int8
value is a whole number followed by a suffix indicating the time
unit. DEFAULT
means 0 seconds, which is the equivalent of no timeout. An
int8
number without units indicates ms. If a statement timeout value has been
set, statements that take longer than the specified timeout value will cause a
java.sql.SQLTimeoutException
error and invalidate the transaction.
The supported time units are:
s
: secondsms
: millisecondsus
: microsecondsns
: nanoseconds
The default is 0, which means no timeout.
A statement timeout during a transaction invalidates the transaction, all
subsequent statements in the invalidated transaction (except ROLLBACK
) fail,
and the Spanner JDBC driver throws a java.sql.SQLTimeoutException
.
SPANNER.READ_ONLY_STALENESS
A property of type STRING
indicating the current
read-only staleness setting that
Spanner uses for read-only transactions and queries in AUTOCOMMIT
mode.
SHOW [VARIABLE] SPANNER.READ_ONLY_STALENESS SET SPANNER.READ_ONLY_STALENESS {TO|=} staleness_type staleness_type: { 'STRONG' | 'MIN_READ_TIMESTAMP timestamp' | 'READ_TIMESTAMP timestamp' | 'MAX_STALENESS <int8>{ s | ms | us | ns }' | 'EXACT_STALENESS <int8>{ s | ms | us | ns }' }
The read-only staleness value applies to all
subsequent read-only transactions and for all queries in AUTOCOMMIT
mode.
The default is STRONG
.
The timestamp bound options are as follows:
STRONG
tells Spanner to perform a strong read.MAX_STALENESS
defines the time interval Spanner uses to perform a bounded staleness read, relative tonow()
.MIN_READ_TIMESTAMP
defines an absolute time Spanner uses to perform a bounded staleness read.EXACT_STALENESS
defines the time interval Spanner uses to perform an exact staleness read, relative tonow()
.READ_TIMESTAMP
defines an absolute time Spanner uses to perform an exact staleness read.
Timestamps must use the following format:
YYYY-[M]M-[D]DT[[H]H:[M]M:[S]S[.DDDDDD]][timezone]
The supported time units for setting MAX_STALENESS
and EXACT_STALENESS
values are:
s
: secondsms
: millisecondsus
: microsecondsns
: nanoseconds
You can modify the value of this property only while there is no active transaction.
The following example shows how to execute queries using a custom staleness
value with the Spanner JDBC driver.▶ Example: Read-only staleness (Click to expand)
-- Set the read-only staleness to MAX_STALENESS 10 seconds.
SET SPANNER.READ_ONLY_STALENESS = 'MAX_STALENESS 10s';
-- Execute a query in auto-commit mode. This returns results that are up to
-- 10 seconds stale.
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
-- Read-only staleness can also be applied to read-only transactions.
-- MAX_STALENESS is only allowed for queries in autocommit mode.
-- Change the staleness to EXACT_STALENESS and start a read-only transaction.
SET SPANNER.READ_ONLY_STALENESS = 'EXACT_STALENESS 10s';
BEGIN;
SET TRANSACTION READ ONLY;
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
SELECT Title, SingerId
FROM Albums
ORDER BY Title;
COMMIT;
-- Set the read staleness to an exact timestamp.
SET SPANNER.READ_ONLY_STALENESS = 'READ_TIMESTAMP 2024-01-26T10:36:00Z';
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
SPANNER.OPTIMIZER_VERSION
A property of type STRING
indicating the
optimizer version. The version is
either an integer or 'LATEST
'.
SHOW [VARIABLE] SPANNER.OPTIMIZER_VERSION
SET SPANNER.OPTIMIZER_VERSION {TO|=} { 'version'|'LATEST'|'' }
Sets the version of the optimizer to be used for all the following statements on
the connection. If the optimizer version is set to ''
(the empty string), then
Spanner uses the latest version. If no optimizer version is set,
Spanner uses the optimizer version that is set at the database
level.
The default is ''
.
The following example shows how to execute queries using a specific
optimizer version with the
Spanner JDBC driver.▶ Example: Optimizer version (Click to expand)
-- Set the optimizer version to 5 and execute a query.
SET SPANNER.OPTIMIZER_VERSION = '5';
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
-- Execute the same query with the latest optimizer version.
SET SPANNER.OPTIMIZER_VERSION = 'LATEST';
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
-- Revert back to using the default optimizer version that has been set for the
-- database.
SET SPANNER.OPTIMIZER_VERSION = '';
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
SPANNER.OPTIMIZER_STATISTICS_PACKAGE
A property of type STRING
indicating the current
optimizer statistics package
that is used by this connection.
SHOW [VARIABLE] SPANNER.OPTIMIZER_STATISTICS_PACKAGE
SET SPANNER.OPTIMIZER_STATISTICS_PACKAGE {TO|=} { 'package'|'' }
Sets the optimizer statistics package to use for all following statements on
the connection. <package>
must be a valid package name. If no optimizer
statistics package is set, Spanner uses the optimizer statistics
package that is set at the database level.
The default is ''
.
The following example shows how to execute queries using a specific
optimizer statistics package with
the Spanner JDBC driver.▶ Example: Optimizer statistics package (Click to expand)
-- Show the available optimizer statistics packages in this database.
SELECT * FROM INFORMATION_SCHEMA.SPANNER_STATISTICS;
-- Set the optimizer statistics package and execute a query.
SET SPANNER.OPTIMIZER_STATISTICS_PACKAGE = 'auto_20240124_06_47_29UTC';
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
-- Execute the same query with the default optimizer statistics package.
SET SPANNER.OPTIMIZER_STATISTICS_PACKAGE = '';
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
SPANNER.RETURN_COMMIT_STATS
A property of type BOOL
indicating whether statistics should be returned for
transactions on this connection. You can see returned statistics by executing
the SHOW SPANNER.COMMIT_RESPONSE
command.
SHOW [VARIABLE] SPANNER.RETURN_COMMIT_STATS
SET SPANNER.RETURN_COMMIT_STATS {TO|=} { true | false }
The default is false
.
The following example shows how to view commit statistics for a transaction
with the Spanner JDBC driver.▶ Example: Commit statistics (Click to expand)
-- Enable the returning of commit stats.
SET SPANNER.RETURN_COMMIT_STATS = true;
-- Execute a transaction.
BEGIN;
INSERT INTO T (id, col_a, col_b)
VALUES (1, 100, 1), (2, 200, 2), (3, 300, 3);
COMMIT;
-- View the commit response with the transaction statistics for the last
-- transaction that was committed.
SHOW SPANNER.COMMIT_RESPONSE;
SPANNER.RPC_PRIORITY
A property of type STRING
indicating the relative priority for
Spanner requests. The priority acts as a hint to the
Spanner scheduler and doesn't guarantee order of execution.
SHOW [VARIABLE] SPANNER.RPC_PRIORITY
SET SPANNER.RPC_PRIORITY = {'HIGH'|'MEDIUM'|'LOW'|'NULL'}
'NULL'
means that no hint should be included in the request.
The default is 'NULL'
.
You can also use a statement hint to specify the RPC priority:
/*@RPC_PRIORITY=PRIORITY_LOW*/ SELECT * FROM Albums
For more information, see Priority
.
Tags
The following statements manage request and transaction tags.
SPANNER.STATEMENT_TAG
A property of type STRING
that contains the request tag for the next
statement.
SHOW [VARIABLE] SPANNER.STATEMENT_TAG
SET SPANNER.STATEMENT_TAG {TO|=} 'tag-name'
Sets the request tag for the next statement to be executed. Only one
tag can be set per statement. The tag doesn't span multiple statements; it
must be set on a per statement basis. A request tag can be removed by setting it
to the empty string (''
).
The default is ''
.
You can set both transaction tags and statement tags for the same statement.
You can also use a statement hint to add a statement tag:
/*@STATEMENT_TAG='my-tag'*/ SELECT * FROM Albums
For more information, see Troubleshoot with request tags and transaction tags.
The following example shows how to set statement tags with the
Spanner JDBC driver.▶ Example: Statement tags (Click to expand)
-- Set the statement tag that should be included with the next statement.
SET SPANNER.STATEMENT_TAG = 'tag1';
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
-- The statement tag property is cleared after each statement execution.
SHOW SPANNER.STATEMENT_TAG;
-- Set another tag for the next statement.
SET SPANNER.STATEMENT_TAG = 'tag2';
SELECT Title
FROM Albums
ORDER BY Title;
-- Set a statement tag with a query hint.
/*@STATEMENT_TAG='tag3'*/
SELECT TrackNumber, Title
FROM Tracks
WHERE AlbumId=1 AND SingerId=1
ORDER BY TrackNumber;
SPANNER.TRANSACTION_TAG
A property of type STRING
that contains the transaction tag for the next
transaction.
SHOW [VARIABLE] SPANNER.TRANSACTION_TAG
SET SPANNER.TRANSACTION_TAG {TO|=} 'tag-name'
Sets the transaction tag for the current transaction to be executed. Only one
tag can be set per transaction. The tag doesn't span multiple transactions; it
must be set on a per transaction basis. A transaction tag can be removed by
setting it to the empty string (''
). The transaction tag must be set before
any statements have been executed in the transaction.
The default is ''
.
You can set both transaction tags and statement tags for the same statement.
For more information, see Troubleshoot with request tags and transaction tags.
The following example shows how to set transaction tags with the
Spanner JDBC driver.▶ Example: Transaction tags (Click to expand)
BEGIN;
-- Set the transaction tag for the current transaction.
SET SPANNER.TRANSACTION_TAG = 'transaction-tag-1';
-- Set the statement tag that should be included with the next statement.
-- The statement will include both the statement tag and the transaction tag.
SET SPANNER.STATEMENT_TAG = 'select-statement';
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
-- The statement tag property is cleared after each statement execution.
SHOW SPANNER.STATEMENT_TAG;
-- Set another tag for the next statement.
SET SPANNER.STATEMENT_TAG = 'insert-statement';
INSERT INTO T (id, col_a, col_b)
VALUES (1, 100, 1);
COMMIT;
-- The transaction tag property is cleared when the transaction finishes.
SHOW SPANNER.TRANSACTION_TAG;
Transaction statements
The following statements manage and commit Spanner transactions.
TRANSACTION ISOLATION LEVEL
SHOW [VARIABLE] TRANSACTION ISOLATION LEVEL
Returns a result set with one row and one column of type STRING
. Returned
value is always serializable
.
SPANNER.READ_TIMESTAMP
SHOW [VARIABLE] SPANNER.READ_TIMESTAMP
Returns a result set with one row and one column of type TIMESTAMP
containing
the read timestamp of the most recent read-only transaction. This statement
returns a timestamp only when either a read-only transaction is still active and
has executed at least one query, or immediately after a read-only transaction is
committed and before a new transaction starts. Otherwise, the result is NULL
.
The following example shows how to view the last read timestamp for a
read-only operation with the Spanner JDBC driver.▶ Example: Read timestamp (Click to expand)
-- Execute a query in autocommit mode using the default read-only staleness
-- (strong).
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
-- Show the read timestamp that was used for the previous query.
SHOW SPANNER.READ_TIMESTAMP;
-- Set a non-deterministic read-only staleness and execute the same query.
SET SPANNER.READ_ONLY_STALENESS = 'MAX_STALENESS 20s';
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
-- Show the read timestamp that was used for the previous query. The timestamp
-- is determined by Spanner, and is guaranteed to be no less than
-- 20 seconds stale.
SHOW SPANNER.READ_TIMESTAMP;
-- The read timestamp of a read-only transaction can also be retrieved.
SET SPANNER.READ_ONLY_STALENESS = 'STRONG';
BEGIN;
SET TRANSACTION READ ONLY;
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
-- Show the read timestamp of the current read-only transaction. All queries in
-- this transaction will use this read timestamp.
SHOW SPANNER.READ_TIMESTAMP;
SELECT Title
FROM Albums
ORDER BY Title;
-- The read timestamp is the same as for the previous query, as all queries in
-- the same transaction use the same read timestamp.
SHOW SPANNER.READ_TIMESTAMP;
COMMIT;
SPANNER.COMMIT_TIMESTAMP
SHOW [VARIABLE] SPANNER.COMMIT_TIMESTAMP
Returns a result set with one row and one column of type TIMESTAMP
containing
the commit timestamp of the last read-write transaction that
Spanner committed. This statement returns a timestamp only when
you execute it after you commit a read-write transaction and before you execute
any subsequent SELECT
, DML
, or schema change statements. Otherwise, the
result is NULL
.
The following example shows how to view the last commit timestamp for a
write operation with the Spanner JDBC driver.▶ Example: Commit timestamp (Click to expand)
-- Execute a DML statement.
INSERT INTO T (id, col_a, col_b)
VALUES (1, 100, 1), (2, 200, 2), (3, 300, 3);
-- Show the timestamp that the statement was committed.
SHOW SPANNER.COMMIT_TIMESTAMP;
SPANNER.COMMIT_RESPONSE
SHOW [VARIABLE] SPANNER.COMMIT_RESPONSE
Returns a result set with one row and two columns:
COMMIT_TIMESTAMP
(type=TIMESTAMP
) indicates when the most recent transaction was committed.MUTATION_COUNT
(type=INT64
) indicates how many mutations were applied in the committed transaction. This value is always empty when executed on the emulator.
The mutation count is available only if SET SPANNER.RETURN_COMMIT_STATS
was
set to true
prior to the transaction commit.
The following example shows how to view the last commit response for a
write operation with the Spanner JDBC driver.▶ Example: Commit response (Click to expand)
-- Enable returning commit stats in addition to the commit timestamp.
SET SPANNER.RETURN_COMMIT_STATS = true;
-- Execute a DML statement.
INSERT INTO T (id, col_a, col_b)
VALUES (1, 100, 1), (2, 200, 2), (3, 300, 3);
-- Show the timestamp that the statement was committed.
SHOW SPANNER.COMMIT_RESPONSE;
{ START | BEGIN } [ TRANSACTION | WORK ]
{ START | BEGIN } [ TRANSACTION | WORK ] [{ READ ONLY | READ WRITE }]
Starts a new transaction. The keywords TRANSACTION
and WORK
are optional,
equivalent, and have no effect.
- Use
COMMIT
orROLLBACK
to terminate a transaction. - If you have enabled
AUTOCOMMIT
mode, this statement temporarily takes the connection out ofAUTOCOMMIT
mode. The connection returns toAUTOCOMMIT
mode when the transaction ends. - If
READ ONLY
orREAD WRITE
is not specified, the transaction mode is determined by the default transaction mode of the session. This default is set by using theSET SESSION CHARACTERISTICS AS TRANSACTION
command, or by setting theREADONLY
variable.
You can execute this statement only while there is no active transaction.
The following example shows how to start different types of transactions with
the Spanner JDBC driver.▶ Example: BEGIN TRANSACTION (Click to expand)
-- This starts a transaction using the current defaults of this connection.
-- The value of READONLY determines whether the transaction is a
-- read-write or a read-only transaction.
BEGIN;
INSERT INTO T (id, col_a, col_b)
VALUES (1, 100, 1);
COMMIT;
-- Set READONLY to TRUE to use read-only transactions by default.
SET READONLY=TRUE;
-- This starts a read-only transaction.
BEGIN;
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
COMMIT;
-- Add 'READ WRITE' or 'READ ONLY' to the 'BEGIN' command to
-- override the current default of the connection.
SET READONLY=FALSE;
BEGIN READ ONLY;
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
COMMIT;
COMMIT [TRANSACTION | WORK]
COMMIT [ TRANSACTION | WORK ]
Commits the current transaction. The keywords TRANSACTION
and WORK
are
optional and equivalent, and have no effect.
- Committing a read-write transaction makes all updates of this transaction visible to other transactions and releases all of the transaction's locks on Spanner.
- Committing a read-only transaction ends the current read-only transaction. Any
subsequent statement starts a new transaction. There is no semantic difference
between
COMMIT
andROLLBACK
for a read-only transaction.
You can execute this statement only while there is an active transaction.
The following example shows how to commit a transaction with the
Spanner JDBC driver.▶ Example: COMMIT TRANSACTION (Click to expand)
-- Execute a regular read-write transaction.
BEGIN;
INSERT INTO T (id, col_a, col_b)
VALUES (1, 100, 1);
COMMIT;
-- Execute a read-only transaction. Read-only transactions also need to be
-- either committed or rolled back in the Spanner JDBC driver in order
-- to mark the end of the transaction.
BEGIN READ ONLY;
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
COMMIT;
{ ABORT | ROLLBACK } [TRANSACTION | WORK]
{ ABORT | ROLLBACK } [TRANSACTION | WORK]
Performs a ROLLBACK
of the current transaction. The keywords TRANSACTION
and
WORK
are optional and equivalent, and have no effect.
- Performing a
ROLLBACK
of a read-write transaction clears any buffered mutations, rolls back the transaction on Spanner, and releases any locks the transaction held. - Performing a
ROLLBACK
of a read-only transaction ends the current read-only transaction. Any subsequent statements start a new transaction. There is no semantic difference betweenCOMMIT
andROLLBACK
for a read-only transaction on a connection.
You can execute this statement only while there is an active transaction.
The following example shows how to rollback a transaction with the
Spanner JDBC driver.▶ Example: ROLLBACK TRANSACTION (Click to expand)
-- Use ROLLBACK to undo the effects of a transaction.
BEGIN;
INSERT INTO T (id, col_a, col_b)
VALUES (1, 100, 1);
-- This ensures that the insert statement is not persisted in the database.
ROLLBACK;
-- Read-only transactions also need to be either committed or rolled back in the
-- Spanner JDBC driver in order to mark the end of the transaction.
-- There is no semantic difference between rolling back or committing a
-- read-only transaction.
BEGIN READ ONLY;
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
ROLLBACK;
SET TRANSACTION
SET TRANSACTION { READ ONLY | READ WRITE }
Sets the transaction mode for the current transaction.
You can execute this statement only when AUTOCOMMIT
is false
, or if you have
started a transaction by executing BEGIN [TRANSACTION | WORK]
and have not
yet executed any statements in the transaction.
This statement sets the transaction mode for the current transaction only. When
the transaction commits or rolls back, the next transaction uses the default
mode for the connection.
(See SET SESSION CHARACTERISTICS
.)
The following example shows how to set transaction characteristics with the
Spanner JDBC driver.▶ Example: SET TRANSACTION (Click to expand)
-- Start a transaction and set the transaction mode to read-only.
BEGIN;
SET TRANSACTION READ ONLY;
SELECT FirstName, LastName
FROM Singers
ORDER BY LastName;
-- Commit the read-only transaction to mark the end of the transaction.
COMMIT;
-- Start a transaction and set the transaction mode to read-write.
BEGIN;
SET TRANSACTION READ WRITE;
INSERT INTO T (id, col_a, col_b)
VALUES (1, 100, 1);
COMMIT;
SET SESSION CHARACTERISTICS
SET SESSION CHARACTERISTICS AS TRANSACTION { READ ONLY | READ WRITE }
Sets the default transaction mode for transactions in the session to
READ ONLY
or READ WRITE
. This statement is permitted only when there is no
active transaction.
The SET TRANSACTION
command can override this setting.
Batch statements
The following statements manage batches of DDL statements and send those batches to Spanner.
START BATCH DDL
START BATCH DDL
Starts a batch of DDL statements on the connection. All subsequent statements
during the batch must be DDL statements. The DDL statements are buffered locally
and sent to Spanner as one batch when you execute RUN BATCH
.
Executing multiple DDL statements as one batch is typically faster than running
the statements separately.
You can execute this statement only while there is no active transaction.
The following example shows how to execute a DDL batch with the
Spanner JDBC driver.▶ Example: DDL batch (Click to expand)
-- Start a DDL batch. All following statements must be DDL statements.
START BATCH DDL;
-- This statement is buffered locally until RUN BATCH is executed.
CREATE TABLE Singers (
SingerId BIGINT NOT NULL PRIMARY KEY,
FirstName VARCHAR,
LastName VARCHAR
);
-- This statement is buffered locally until RUN BATCH is executed.
CREATE TABLE Albums (
AlbumId BIGINT NOT NULL PRIMARY KEY,
Title VARCHAR,
SingerId BIGINT,
CONSTRAINT fk_albums_singers FOREIGN KEY (SingerId) REFERENCES Singers (SingerId)
);
-- This runs the DDL statements as one batch.
RUN BATCH;
RUN BATCH
RUN BATCH
Sends all buffered DDL statements in the current DDL batch to the database, waits for Spanner to execute these statements, and ends the current DDL batch.
If Spanner cannot execute at least one DDL statement, RUN BATCH
returns an error for the first DDL statement that Spanner cannot
execute. Otherwise, RUN BATCH
returns successfully.
ABORT BATCH
ABORT BATCH
Clears all buffered DDL statements in the current DDL batch and ends the batch.
You can execute this statement only when a DDL batch is active. You can use
ABORT BATCH
regardless of whether or not the batch has buffered DDL
statements. All preceding DDL statements in the batch will be aborted.
The following example shows how to abort a DDL batch with the
Spanner JDBC driver.▶ Example: Abort DDL batch (Click to expand)
-- Start a DDL batch. All following statements must be DDL statements.
START BATCH DDL;
-- The following statements are buffered locally.
CREATE TABLE Singers (
SingerId BIGINT NOT NULL PRIMARY KEY,
FirstName VARCHAR,
LastName VARCHAR
);
-- This statement is buffered locally until RUN BATCH is executed.
CREATE TABLE Albums (
AlbumId BIGINT NOT NULL PRIMARY KEY,
Title VARCHAR,
SingerId BIGINT,
CONSTRAINT fk_albums_singers FOREIGN KEY (SingerId) REFERENCES Singers (SingerId)
);
-- This aborts the DDL batch and removes the DDL statements from the buffer.
ABORT BATCH;
START BATCH DML and RUN BATCH
The following statements batch the two DML statements together and send these in one call to the server. A DML batch can be executed as part of a transaction or in autocommit mode.
START BATCH DML;
INSERT INTO MYTABLE (ID, NAME) VALUES (1, 'ONE');
INSERT INTO MYTABLE (ID, NAME) VALUES (2, 'TWO');
RUN BATCH;
The following example shows how to execute a DML batch with the
Spanner JDBC driver.▶ Example: DML batch (Click to expand)
-- Start a DML batch. All following statements must be a DML statement.
START BATCH DML;
-- The following statements are buffered locally.
INSERT INTO MYTABLE (ID, NAME) VALUES (1, 'ONE');
INSERT INTO MYTABLE (ID, NAME) VALUES (2, 'TWO');
-- This sends the statements to Spanner.
RUN BATCH;
-- DML batches can also be part of a read/write transaction.
BEGIN;
-- Insert a row using a single statement.
INSERT INTO MYTABLE (ID, NAME) VALUES (3, 'THREE');
-- Insert two rows using a batch.
START BATCH DML;
INSERT INTO MYTABLE (ID, NAME) VALUES (4, 'FOUR');
INSERT INTO MYTABLE (ID, NAME) VALUES (5, 'FIVE');
RUN BATCH;
-- Rollback the current transaction. This rolls back both the single DML
-- statement and the DML batch.
ROLLBACK;
Data Boost and partitioned query statements
The partitionQuery API divides a query into smaller pieces, or partitions, and uses multiple machines to fetch the partitions in parallel. Each partition is identified by a partition token. The PartitionQuery API has higher latency than the standard query API, because it is only intended for bulk operations such as exporting or scanning the whole database.
Data Boost lets you execute analytics queries and data exports with near-zero impact to existing workloads on the provisioned Spanner instance. Data Boost only supports partitioned queries.
You can enable Data Boost on the current connection with the
SET SPANNER.DATA_BOOST_ENABLED
statement.
The JDBC driver supports three alternatives for executing partitioned queries:
SET SPANNER.AUTO_PARTITION_MODE = true
RUN PARTITIONED QUERY sql
PARTITION sql
followed by multipleRUN PARTITION 'partition-token'
Each of these methods are described in the following sections.
SPANNER.DATA_BOOST_ENABLED
A property of type BOOL
indicating whether this connection should use
Data Boost for partitioned queries. The default
is false
.
SHOW [VARIABLE] SPANNER.DATA_BOOST_ENABLED
SET SPANNER.DATA_BOOST_ENABLED {TO|=} { true | false }
Sets whether this connection should use Data Boost for partitioned queries.
The default is false
.
The following example shows how to a query using Data Boost with the
Spanner JDBC driver.▶ Example: Execute a query using Data Boost (Click to expand)
-- Enable Data Boost on this connection.
SET SPANNER.DATA_BOOST_ENABLED = true;
-- Execute a partitioned query. Data Boost is only used for partitioned queries.
RUN PARTITIONED QUERY SELECT FirstName, LastName FROM Singers;
For a full example, see PostgreSQL DataBoostExample.
SPANNER.AUTO_PARTITION_MODE
A property of type BOOL
indicating whether the connection automatically uses
partitioned queries for all queries that are executed.
SHOW [VARIABLE] SPANNER.AUTO_PARTITION_MODE
SET SPANNER.AUTO_PARTITION_MODE {TO|=} { true | false}
- Set this variable to
true
if you want the connection to use partitioned query for all queries that are executed. - Also set
SPANNER.DATA_BOOST_ENABLED
totrue
if you want the connection to use Data Boost for all queries.
The default is false
.
This example executes two queries with the Spanner JDBC driver using
Data Boost▶ Example: Execute (Click to expand)
SET SPANNER.AUTO_PARTITION_MODE = true
SET SPANNER.DATA_BOOST_ENABLED = true
SELECT FirstName, LastName FROM Singers
SELECT SingerId, Title FROM Albums
For a full example, see PostgreSQL AutoPartitionModeExample.
RUN PARTITIONED QUERY
RUN PARTITIONED QUERY <sql>
Executes a query as a partitioned query on Spanner. Ensure that
SPANNER.DATA_BOOST_ENABLED
is set to true
to execute the query with
Data Boost:
SET SPANNER.DATA_BOOST_ENABLED = true
RUN PARTITIONED QUERY SELECT FirstName, LastName FROM Singers
The JDBC driver internally partitions the query and executes partitions in
parallel. The results are merged into one result set and returned to the
application. The number of worker threads executing partitions can be set with
the variable SPANNER.MAX_PARTITIONED_PARALLELISM
.
For a full example, see PostgreSQL RunPartitionedQueryExample.
PARTITION <SQL>
PARTITION <sql>
Creates a list of partitions to execute a query against Spanner and
returns these a list of partition tokens. Each partition token can be executed
on a separate JDBC connection on the same or another host using the
RUN PARTITION 'partition-token'
command.
The following example shows how to partition a query and then execute each
partition separately using the Spanner JDBC driver.▶ Example: Partition query (Click to expand)
-- Partition a query. This returns a list of partition tokens that can be
-- executed either on this connection or on any other connection to the same
-- database.
PARTITION SELECT FirstName, LastName FROM Singers;
-- Run the partitions that were returned from the previous statement.
RUN PARTITION 'partition-token-1';
RUN PARTITION 'partition-token-2';
For a full example, see PostgreSQL PartitionQueryExample.
RUN PARTITION 'partition-token'
RUN PARTITION 'partition-token'
Executes a query partition that has previously been returned by the PARTITION
command. The command can be executed on any JDBC connection that is connected to
the same database as the database that created the partition tokens.
For a full example, see PostgreSQL PartitionQueryExample.
SPANNER.MAX_PARTITIONED_PARALLELISM
A property of type int8
indicating the number of worker threads the
Spanner JDBC driver uses to execute partitions. This value is used for:
SPANNER.AUTO_PARTITION_MODE = true
RUN PARTITIONED QUERY sql
SHOW [VARIABLE] SPANNER.MAX_PARTITIONED_PARALLELISM
SET SPANNER.MAX_PARTITIONED_PARALLELISM = <int8>
Sets the maximum number of worker threads that the Spanner JDBC driver
can use to execute partitions. Setting this value to 0
instructs the
Spanner JDBC driver to use the number of CPU cores on the client
machine as the maximum.
The default is 0
.
Savepoint commands
The following statements enable and disable emulated
savepoints
in transactions. You can create a savepoint by calling the
java.sql.Connection#setSavepoint()
method.
The Spanner JDBC driver emulates savepoints to support frameworks that rely on these for nested transactions. Savepoints are emulated by keeping track of a running checksum for the results that have been returned by statements in the transaction. When rolling back to a savepoint, the Spanner JDBC driver rolls back the transaction, and then retries the transaction up to the point where the savepoint was set. The checksum of the retry is compared to the checksum of the initial transaction to verify that the same results were returned.
SPANNER.SAVEPOINT_SUPPORT
SHOW [VARIABLE] SPANNER.SAVEPOINT_SUPPORT
SET SPANNER.SAVEPOINT_SUPPORT {TO|=} { 'DISABLED' | 'FAIL_AFTER_ROLLBACK' | 'ENABLED' }
A property of type STRING
indicating the current SAVEPOINT_SUPPORT
configuration. Possible values are:
DISABLED
: All savepoint commands are disabled and will fail.FAIL_AFTER_ROLLBACK
: Savepoint commands are enabled. Rolling back to a savepoint rolls back the entire transaction. The transaction fails if you try to use the transaction after rolling back to a savepoint.ENABLED
: All savepoint commands are enabled. Rolling back to a savepoint will rollback the transaction and retry is performed to the savepoint. This operation fails with anAbortedDueToConcurrentModificationException
error if the underlying data that has been used by the transaction up to the savepoint has changed.
The default value is FAIL_AFTER_ROLLBACK
.
You can change the value of this variable only while there is no active transaction.
The following example shows how to enable and disable savepoints support in
the Spanner JDBC driver.▶ Example: Savepoint support (Click to expand)
try (Connection connection =
DriverManager.getConnection(
String.format(
"jdbc:cloudspanner:/projects/%s/instances/%s/databases/%s",
"my-project", "my-instance", "my-database"))) {
// Savepoints can only be used when AutoCommit=false.
connection.setAutoCommit(false);
// Disables setting a savepoint.
connection.createStatement().execute("SET SPANNER.SAVEPOINT_SUPPORT='DISABLED'");
// The following statement fails because savepoints have been disabled.
connection.setSavepoint("my_savepoint1");
// Enables setting a savepoint and releasing a savepoint.
// Rolling back to a savepoint is disabled.
connection.createStatement().execute("SET SPANNER.SAVEPOINT_SUPPORT='FAIL_AFTER_ROLLBACK'");
Savepoint mySavepoint2 = connection.setSavepoint("my_savepoint2");
connection.createStatement().execute("insert into my_table (id, value) values (1, 'One')");
connection.releaseSavepoint(mySavepoint2);
connection.commit();
// Enables setting, releasing and rolling back to a savepoint.
connection.createStatement().execute("SET SPANNER.SAVEPOINT_SUPPORT='ENABLED'");
Savepoint mySavepoint3 = connection.setSavepoint("my_savepoint3");
connection.createStatement().execute("insert into my_table (id, value) values (2, 'Two')");
connection.rollback(mySavepoint3);
}
What's next
Learn how to connect JDBC to a PostgreSQL-dialect database.