RedShift
A fully managed cloud data warehouse that allows organizations to store and analyze large volumes of structured data
Last updated
Was this helpful?
A fully managed cloud data warehouse that allows organizations to store and analyze large volumes of structured data
The default / typical connection option. Interfaces directly with the target system over the Internet with no mediation. Suitable for most cloud-hosted scenarios or public-facing resources. See Network Configuration for more details.
An alternative to cost, queries will be stopped the system supports a duration/timeout limit and one is set/configured at the organization level (across systems).
These properties are the essential source system connection properties that all queries are directed towards.
These properties are the essential source system connection properties that all queries are directed towards.
* Required parameters
Domain or IP of the database to allow a connection to Lumi AI.
π Valid Examples
Domain name: docs.lumi-ai.com
IPv4: 55.88.92.101
π Invalid Examples
IPv4 with alphanumeric characters: 123.abc.def.456
Incomplete domain name resolutions: lumi-ai.com
Access port to allow for connections to the database.
π Valid Examples
Default PostgreSQL port: 5432
π Invalid Examples
Known Port Numbers (0-1023): 80
Username of the generated database user which will be used for interactions and transactions.
Special Considerations
If double quotes are used, then the name will be case sensitive
π Valid Examples
Uses alphanumeric characters : lumi1
Utilizing underscore (_) in place of spaces: user_number
π Invalid Examples
Starting with a number: 1lumi
Utilizing spaces: user name
Using invalid characters: user#1
Password of the generated database user which will be used for interactions and transactions.
Literal database name that will be used for transactions within the agents.
Special Considerations
If case sensitivity is required, utilize double quotes for database name; ex. "New_database"
π Valid Examples
Uses alphanumeric characters: lumi1
Utilizing underscore (_) in place of spaces: new_database
π Invalid Examples
Starting with a number: 1lumi
Utilizing spaces: user name
Using reserved words unquoted: select
Provided user must have the following:
*Note β To ensure every schema can be accessed, please run the following code command:
*Note β To ensure every table can be accessed, please run the following code command:
For configurations:
Special characters and case sensitivity can be utilized in database names and usernames via encasing the name in double quotes (" "), but is not recommended
Ensure the firewall settings allow for a connection to a database
Last updated
Was this helpful?
Was this helpful?
GRANT USAGE ON SCHEMA <schema> TO <user>;GRANT USAGE ON SCHEMA <schema>.<table> TO <user>;