Google Cloud DeleteRows

Google Cloud DeleteRows

Certified

Delete rows from a Google Cloud Bigtable table

Deletes rows either by an explicit list of row keys, or by a row key range (rowKeyStart/rowKeyEnd) or prefix (rowKeyPrefix). At least one mode must be configured; if several are set, rowKeys takes precedence, then the prefix, then the range.

yaml
type: io.kestra.plugin.gcp.bigtable.DeleteRows

Delete rows by exact row keys

yaml
id: bigtable_delete_rows
namespace: company.team

tasks:
  - id: delete
    type: io.kestra.plugin.gcp.bigtable.DeleteRows
    projectId: "{{ secret('GCP_PROJECT_ID') }}"
    instanceId: my-instance
    tableId: events
    rowKeys:
      - row-001
      - row-002

Delete all rows matching a row key prefix

yaml
id: bigtable_delete_rows_prefix
namespace: company.team

tasks:
  - id: delete
    type: io.kestra.plugin.gcp.bigtable.DeleteRows
    projectId: "{{ secret('GCP_PROJECT_ID') }}"
    instanceId: my-instance
    tableId: events
    rowKeyPrefix: "stale-device#"
Properties

The Bigtable instance ID

An instance is a container for your tables within a given GCP project.

The GCP project ID

The Bigtable table ID to delete rows from

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

When set, the task connects to a local Bigtable emulator instead of the real Bigtable service, using plaintext transport and no credentials. Not intended for production use.

The GCP service account to impersonate

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

Exclusive end of the row key range to delete

Row key prefix to match rows for deletion

Used when rowKeys is not set; takes precedence over rowKeyStart/rowKeyEnd if both are set.

Inclusive start of the row key range to delete

SubTypestring

Exact row keys to delete

Takes precedence over rowKeyStart/rowKeyEnd and rowKeyPrefix if several are set.

SubTypestring

The GCP scopes to be used

The GCP service account

Number of rows deleted