Google Cloud BatchDml

Google Cloud BatchDml

Certified

Execute multiple DML statements atomically

Executes multiple INSERT, UPDATE, or DELETE statements in a single read-write transaction.

yaml
type: io.kestra.plugin.gcp.spanner.BatchDml

Execute batch DML statements

yaml
id: spanner_batch_dml
namespace: company.team

tasks:
  - id: batch_update
    type: io.kestra.plugin.gcp.spanner.BatchDml
    projectId: "{{ secret('GCP_PROJECT_ID') }}"
    instanceId: my-instance
    databaseId: my-database
    statements:
      - "UPDATE users SET active = true WHERE signup_date > '2023-01-01'"
      - "DELETE FROM temp_sessions WHERE expires_at < CURRENT_TIMESTAMP()"
Properties

The Spanner database ID

The Spanner instance ID

The GCP project ID

SubTypestring

The list of SQL DML statements to execute

Statements are executed sequentially without parameter bindings. Parameterized batch DML is not supported.

Spanner emulator host (host: port), for local testing only

When set, the task connects to a local Spanner emulator instead of the real Spanner service.

The GCP service account to impersonate

Reference (ref) of the pluginDefaults to apply to this task.

SubTypestring

The GCP scopes to be used

The GCP service account

SubTypeinteger

List of counts of affected rows for each statement

Total number of rows affected by all statements combined