RedisStream
Input plugin : RedisStream [Streaming]â
- Author: InterestingLab
- Homepage: https://interestinglab.github.io/seatunnel-docs
- Version: 1.1.0
Descriptionâ
Read data from Redis.
Optionsâ
name | type | required | default value |
---|---|---|---|
host | string | yes | - |
prefKey | string | yes | - |
queue | string | yes | - |
password | string | no | - |
maxTotal | number | no | 200 |
maxIdle | number | no | 200 |
maxWaitMillis | number | no | 2000 |
connectionTimeout | number | no | 5000 |
soTimeout | number | no | 5000 |
maxAttempts | number | no | 5 |
host [string]â
redis cluster server host
prefKey [string]â
redis key prefix , Splicing mode: prefKey + ':' + key
queue [string]â
redis queue name , Data stored to queue
password [string]â
redis password
maxTotal [number]â
redis maxTotal config
maxIdle [number]â
redis maxIdle config
maxWaitMillis [number]â
redis maxWaitMillis config
connectionTimeout [number]â
redis connectionTimeout config
soTimeout [number]â
redis soTimeout config
maxAttempts [number]â
redis maxAttempts config
Exampleâ
RedisStream {
host = "127.0.0.1:7000,127.0.0.1:7001,127.0.0.1:7002"
prefKey = "api"
queue = "test"
password = "root"
}