mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-05 20:17:07 +00:00
Update Redshift Requirement Docs (#9902)
This commit is contained in:
parent
024519f92b
commit
6b4e500fa6
@ -25,6 +25,13 @@ custom Airflow plugins to handle the workflow deployment.
|
||||
|
||||
Redshift user must grant `SELECT` privilege on table [SVV_TABLE_INFO](https://docs.aws.amazon.com/redshift/latest/dg/r_SVV_TABLE_INFO.html) to fetch the metadata of tables and views. For more information visit [here](https://docs.aws.amazon.com/redshift/latest/dg/c_visibility-of-data.html).
|
||||
|
||||
```sql
|
||||
|
||||
CREATE USER test_user with PASSWORD 'password';
|
||||
GRANT SELECT ON TABLE svv_table_info to test_user;
|
||||
|
||||
```
|
||||
|
||||
### Python Requirements
|
||||
|
||||
To run the Redshift ingestion, you will need to install:
|
||||
|
||||
@ -25,6 +25,13 @@ custom Airflow plugins to handle the workflow deployment.
|
||||
|
||||
Redshift user must grant `SELECT` privilege on table [SVV_TABLE_INFO](https://docs.aws.amazon.com/redshift/latest/dg/r_SVV_TABLE_INFO.html) to fetch the metadata of tables and views. For more information visit [here](https://docs.aws.amazon.com/redshift/latest/dg/c_visibility-of-data.html).
|
||||
|
||||
```sql
|
||||
|
||||
CREATE USER test_user with PASSWORD 'password';
|
||||
GRANT SELECT ON TABLE svv_table_info to test_user;
|
||||
|
||||
```
|
||||
|
||||
### Python Requirements
|
||||
|
||||
To run the Redshift ingestion, you will need to install:
|
||||
|
||||
@ -46,6 +46,13 @@ custom Airflow plugins to handle the workflow deployment.
|
||||
|
||||
Redshift user must grant `SELECT` privilege on table [SVV_TABLE_INFO](https://docs.aws.amazon.com/redshift/latest/dg/r_SVV_TABLE_INFO.html) to fetch the metadata of tables and views. For more information visit [here](https://docs.aws.amazon.com/redshift/latest/dg/c_visibility-of-data.html).
|
||||
|
||||
```sql
|
||||
|
||||
CREATE USER test_user with PASSWORD 'password';
|
||||
GRANT SELECT ON TABLE svv_table_info to test_user;
|
||||
|
||||
```
|
||||
|
||||
## Metadata Ingestion
|
||||
|
||||
### 1. Visit the Services Page
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user