Destinations
Redis
Send processed data from Unstructured to Redis.
The requirements are as follows.
- A Redis database, for example in Redis Cloud.
- The target database’s hostname and port number. Create a database in Redis Cloud.
- The username and password for the target database. Get the username and password in Redis Cloud.
- The database number for the target database. Redis databases are typically numbered from 0 to 15, with the default database number typically being 0.
To create or change a Redis destination connector, see the following examples.
Replace the preceding placeholders as follows:
<name>
(required) - A unique name for this connector.<uri>
For URI authentication, the connection URI for the target database user and password, hostname, and port number. Use the format ofredis://<username>:<password>@<hostname>:<port-number>
. If SSL encryption is enabled for the database, userediss://
instead ofredis://
.<host>
(required for password authentication): The target database’s hostname.<port>
: For password authentication, the database’s port number. The default is6379
unless otherwise specified.<username>
(required for password authentication): The name of the database user (not the logged in user).<password>
(required for password authentication): The database user’s password.<database>
: The number (index) for the target database. The default is0
unless otherwise specified.- For
ssl
,true
to enable SSL encryption for the connection. Set totrue
only if SSL is already set up and enabled for the target database. The default istrue
unless otherwise specified. <batch-size>
: The maximum number of records to upload in a single batch. The default is100
unless otherwise specified.
To change a connector, replace <connector-id>
with the destination connector’s unique ID.
To get this ID, see List destination connectors.
Was this page helpful?