
Redis Delete
CertifiedDelete Redis string keys
Redis Delete
Certified
Delete Redis string keys
Runs DEL on the rendered key list, counts deletions, and can fail when not all keys are removed.
yaml
type: io.kestra.plugin.redis.string.DeleteExamples
yaml
id: redis_delete
namespace: company.team
tasks:
- id: delete
type: io.kestra.plugin.redis.string.Delete
url: redis://:redis@localhost:6379/0
keys:
- keyDelete1
- keyDelete2
Properties
keys *Requiredarray
SubTypestring
Keys to delete
Rendered list passed to DEL.
url *Requiredstring
Redis connection string
failedOnMissing booleanstring
Default
falseFail when deletions are missing
Defaults to false; when true, throws if fewer keys are deleted than requested.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
count integer
Deleted count
Total deleted keys.
Metrics
deleted.records.count counter
Unit
recordsNumber of records deleted from Redis.