package redis
Type Members
-
case class
RedisInput(name: String, host: String, port: Int, db: Int, table: String, password: Option[String], isBatch: Option[Boolean], schemaPath: Option[String], options: Option[Map[String, String]], incremental: Option[Incremental]) extends IncrementalReader with DatasourceReader with Product with Serializable
Represents a Redis input configuration for data retrieval.
Represents a Redis input configuration for data retrieval.
- name
The name of the Redis input.
- host
The host address of the Redis server.
- port
The port number of the Redis server.
- db
The database number to connect to in Redis.
- table
The table (key) in Redis to read data from.
- password
An optional password for authentication to the Redis server.
- isBatch
An optional flag indicating if the read is in batch mode.
- schemaPath
An optional path to the schema for data reading.
- options
An optional map of additional options for the Redis input.
- incremental
An optional incremental configuration for data processing.