mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-19 15:42:09 +00:00
20 lines
470 B
Markdown
20 lines
470 B
Markdown
![]() |
If you were using `database_alias` in one of your other ingestions to rename your databases to something else based on business needs you can rename them in superset also
|
||
|
|
||
|
```yml
|
||
|
source:
|
||
|
type: superset
|
||
|
config:
|
||
|
# Coordinates
|
||
|
connect_uri: http://localhost:8088
|
||
|
|
||
|
# Credentials
|
||
|
username: user
|
||
|
password: pass
|
||
|
provider: ldap
|
||
|
database_alias:
|
||
|
example_name_1: business_name_1
|
||
|
example_name_2: business_name_2
|
||
|
|
||
|
sink:
|
||
|
# sink configs
|
||
|
```
|