If you’re new to Unstructured, read this note first.Before you can create a destination connector, you must first sign in to your Unstructured account:
- If you do not already have an Unstructured account, sign up for free. After you sign up, you are automatically signed in to your new Unstructured Starter account, at https://platform.unstructured.io. To sign up for a Team or Enterprise account instead, contact Unstructured Sales, or learn more.
- If you already have an Unstructured Starter or Team account and are not already signed in, sign in to your account at https://platform.unstructured.io. For an Enterprise account, see your Unstructured account administrator for instructions, or email Unstructured Support at support@unstructured.io.
-
After you sign in to your Unstructured Starter account, click API Keys on the sidebar.
For a Team or Enterprise account, before you click API Keys, make sure you have selected the organizational workspace you want to create an API key for. Each API key works with one and only one organizational workspace. Learn more. -
Click Generate API Key.
-
Follow the on-screen instructions to finish generating the key.
-
Click the Copy icon next to your new key to add the key to your system’s clipboard. If you lose this key, simply return and click the Copy icon again.
- 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.
<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. <key-prefix>
: A string to prepend to each element’selement_id
. This is useful for distinguishing between different data sets in the same Redis instance. The default is an empty string.<batch-size>
: The maximum number of records to upload in a single batch. The default is100
unless otherwise specified.