Redis Increment

Redis Increment

Certified

Increment a Redis JSON number

Runs JSON.NUMINCRBY on the rendered key/path, defaults increment to 1, and can apply an expiration (absolute or relative, not both).

yaml
type: io.kestra.plugin.redis.json.Increment
yaml
id: redis_increment
namespace: company.team

inputs:
    - id: key_name
      type: STRING
      displayName: Key name to increment

tasks:
  - id: increment
    type: io.kestra.plugin.redis.json.Increment
    url: redis://:redis@localhost:6379/0
    key: "{{ inputs.key_name }}"
    path: "$"
Properties

Redis key to increment

Rendered before calling JSON.NUMINCRBY.

JSON path to increment

Required; uses RedisJSON path syntax.

Redis connection string

Default1

Increment amount

Defaults to 1.

Expiration options

Optional TTL settings; choose either duration or absolute date.

Definitions
expirationDatestring

Expiration date

Absolute epoch timestamp; cannot be combined with expirationDuration.

expirationDurationstring

Expiration duration

Relative TTL; cannot be combined with expirationDate.

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

Incremented key

Incremented value