Google Cloud Consume

Google Cloud Consume

Certified

Consume messages from Pub/Sub

Pulls messages from a subscription until maxRecords or maxDuration is reached. Writes messages to a Kestra storage file and acks them.

yaml
type: io.kestra.plugin.gcp.pubsub.Consume
yaml
id: gcp_pubsub_consume
namespace: company.team

tasks:
  - id: consume
    type: io.kestra.plugin.gcp.pubsub.Consume
    topic: topic-test
    maxRecords: 10
    projectId: {{ secret('GCP_PROJECT_ID') }}
    subscription: my-subscription
Properties

Subscription

Subscription name; auto-created when autoCreateSubscription is true

Topic name

Pub/Sub topic ID (without project prefix)

Defaulttrue

Auto-create subscription

Create the subscription if missing; default true

The GCP service account to impersonate

Max duration

Duration limit (ISO-8601); stop when reached

Max records

Stop after this many messages

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

The GCP project ID

SubTypestring
Default["https://www.googleapis.com/auth/cloud-platform"]

The GCP scopes to be used

DefaultSTRING
Possible Values
STRINGJSON

Serde type

Serializer/deserializer for message payloads; defaults to STRING

The GCP service account

Consumed message count

Formaturi

Messages file URI

Kestra storage URI of the file containing consumed messages

Unitrecords

Number of records consumed from the Pub/Sub topic.