Redis Publish

Redis Publish

Certified

Publish values to a Redis channel

Serializes values with the selected serde (STRING by default) and publishes each to the rendered channel; accepts inline lists or a Kestra storage URI.

yaml
type: io.kestra.plugin.redis.pubsub.Publish
yaml
id: redis_publish
namespace: company.team

tasks:
  - id: publish
    type: io.kestra.plugin.redis.pubsub.Publish
    url: redis://:redis@localhost:6379/0
    channel: mych
    from:
      - value1
      - value2
    serdeType: JSON
Properties

Redis channel

Rendered before publishing.

Values to publish

String or list; a string may point to a storage URI to stream values.

DefaultSTRING
Possible Values
STRINGJSON

Serialization format

Defaults to STRING; controls encoding before PUBLISH.

Redis connection string

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

Count

The number of values published

Unitrecords

Number of records published to a Redis channel.