mirror of
https://github.com/apache/superset.git
synced 2026-05-09 18:05:52 +00:00
chore: Update Docusaurus links (#18581)
* Fix links * Fix internal link refs * Add contribution page redirect
This commit is contained in:
25
docs/docs/databases/redshift.mdx
Normal file
25
docs/docs/databases/redshift.mdx
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Amazon Redshift
|
||||
hide_title: true
|
||||
sidebar_position: 5
|
||||
version: 1
|
||||
---
|
||||
|
||||
## AWS Redshift
|
||||
|
||||
The [sqlalchemy-redshift](https://pypi.org/project/sqlalchemy-redshift/) library is the recommended
|
||||
way to connect to Redshift through SQLAlchemy.
|
||||
|
||||
You'll need to the following setting values to form the connection string:
|
||||
|
||||
- **User Name**: userName
|
||||
- **Password**: DBPassword
|
||||
- **Database Host**: AWS Endpoint
|
||||
- **Database Name**: Database Name
|
||||
- **Port**: default 5439
|
||||
|
||||
Here's what the connection string looks like:
|
||||
|
||||
```
|
||||
redshift+psycopg2://<userName>:<DBPassword>@<AWS End Point>:5439/<Database Name>
|
||||
```
|
||||
Reference in New Issue
Block a user