Redis Delete

Redis Delete

Certified

Delete Redis JSON keys or paths

Runs JSON.DEL for each rendered key and JSON path (defaults to $ when paths are empty), sums deleted elements, and can fail when nothing is removed.

yaml
type: io.kestra.plugin.redis.json.Delete
yaml
id: redis_json_delete
namespace: company.team

tasks:
  - id: delete
    type: io.kestra.plugin.redis.json.Delete
    url: redis://:redis@localhost:6379/0
    failedOnMissing: true
    keys:
      keyDelete1:
         - path1
         - path2
Properties

Keys and JSON paths to delete

Map of key → paths; each path list defaults to $ to drop the whole value.

Redis connection string

Defaultfalse

Fail when deletions are missing

Defaults to false; when true, throws if fewer items are deleted than requested.

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

Deleted count

Total number of deleted elements across all keys/paths.

Unitrecords

Number of records deleted from Redis.