ReadRows

ReadRows

Certified

Read rows from a Google Cloud Bigtable table.

yaml
type: io.kestra.plugin.gcp.bigtable.ReadRows
yaml
id: bigtable_read_rows
namespace: company.team

tasks:
  - id: read
    type: io.kestra.plugin.gcp.bigtable.ReadRows
    projectId: "{{ secret('GCP_PROJECT_ID') }}"
    instanceId: my-instance
    tableId: sensor-readings
    rowKeyPrefix: "device-42#"
    fetchType: STORE

yaml
id: bigtable_read_one_row
namespace: company.team

tasks:
  - id: read
    type: io.kestra.plugin.gcp.bigtable.ReadRows
    projectId: "{{ secret('GCP_PROJECT_ID') }}"
    instanceId: my-instance
    tableId: sensor-readings
    rowKeyStart: "device-42#001"
    rowKeyEnd: "device-42#002"
    fetchType: FETCH_ONE
Properties
DefaultSTORE
Possible Values
STOREFETCHFETCH_ONENONE
SubTypestring
SubTypeobject
Formaturi