
Google Cloud DeleteRows
CertifiedDelete rows from a Google Cloud Bigtable table
Google Cloud DeleteRows
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.
type: io.kestra.plugin.gcp.bigtable.DeleteRowsExamples
Delete rows by exact row keys
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
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
instanceId *Requiredstring
The Bigtable instance ID
An instance is a container for your tables within a given GCP project.
projectId *Requiredstring
The GCP project ID
tableId *Requiredstring
The Bigtable table ID to delete rows from
emulatorHost string
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.
impersonatedServiceAccount string
The GCP service account to impersonate
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
rowKeyEnd string
Exclusive end of the row key range to delete
rowKeyPrefix string
Row key prefix to match rows for deletion
Used when rowKeys is not set; takes precedence over rowKeyStart/rowKeyEnd if both are set.
rowKeyStart string
Inclusive start of the row key range to delete
rowKeys array
Exact row keys to delete
Takes precedence over rowKeyStart/rowKeyEnd and rowKeyPrefix if several are set.
scopes array
The GCP scopes to be used
serviceAccount string
The GCP service account
Outputs
rowCount integer
Number of rows deleted