Sink plugin: Redis [Spark]
Write Rows to a Redis.
name | type | required | default value |
---|---|---|---|
host | string | yes | "localhost" |
port | int | yes | 6379 |
auth | string | no | |
db_num | int | no | 0 |
data_type | string | no | "KV" |
hash_name | string | no | |
list_name | string | no | |
set_name | string | no | |
zset_name | string | no | |
timeout | int | no | 2000 |
Redis server address, default "localhost"
Redis service port, default 6379
Redis authentication password
Redis database index ID. It is connected to db 0
by default
Redis timeout
Redis data type eg: KV HASH LIST SET ZSET
if redis data type is HASH must config hash name
if redis data type is LIST must config list name
if redis data type is ZSET must config zset name
if redis data type is SET must config set name
redis {
host = "localhost"
port = 6379
auth = "myPassword"
db_num = 1
data_type = "HASH"
hash_name = "test"
}