Oracle & Superset Req Docs (#10015)

This commit is contained in:
Mayur Singal 2023-01-31 11:37:25 +05:30 committed by GitHub
parent a1b9d3fe65
commit 399adf788d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 61 additions and 2 deletions

View File

@ -65,9 +65,9 @@ source:
serviceConnection:
config:
type: Superset
hostPort: http://localhost:8080
connection:
# For Superset API Connection
hostPort: http://localhost:8080
username: admin
password: admin
provider: db # or provider: ldap

View File

@ -65,9 +65,9 @@ source:
serviceConnection:
config:
type: Superset
hostPort: http://localhost:8088
connection:
# For Superset API Connection
hostPort: http://localhost:8080
username: admin
password: admin
provider: db # or provider: ldap

View File

@ -24,6 +24,26 @@ custom Airflow plugins to handle the workflow deployment.
Note: To fetch metadata from oracle db we use python-oracledb and this support 12c, 18c, 19c and 21c versions!
To ingest metadata from oracle user must have `CREATE SESSION` privilege for the user.
```sql
-- CREATE USER
CREATE USER user_name IDENTIFIED BY admin_password;
-- CREATE ROLE
CREATE ROLE new_role;
-- GRANT ROLE TO USER
GRANT new_role TO user_name;
-- GRANT CREATE SESSION PRIVILEGE TO USER
GRANT CREATE SESSION TO new_role;
```
### Python Requirements
To run the Oracle ingestion, you will need to install:

View File

@ -24,6 +24,25 @@ custom Airflow plugins to handle the workflow deployment.
Note: To fetch metadata from oracle db we use python-oracledb and this support 12c, 18c, 19c and 21c versions!
To ingest metadata from oracle user must have `CREATE SESSION` privilege for the user.
```sql
-- CREATE USER
CREATE USER user_name IDENTIFIED BY admin_password;
-- CREATE ROLE
CREATE ROLE new_role;
-- GRANT ROLE TO USER
GRANT new_role TO user_name;
-- GRANT CREATE SESSION PRIVILEGE TO USER
GRANT CREATE SESSION TO new_role;
```
### Python Requirements
To run the Oracle ingestion, you will need to install:

View File

@ -45,6 +45,26 @@ custom Airflow plugins to handle the workflow deployment.
Note: To fetch metadata from oracle db we use python-oracledb and this support 12c, 18c, 19c and 21c versions!
To ingest metadata from oracle user must have `CREATE SESSION` privilege for the user.
```sql
-- CREATE USER
CREATE USER user_name IDENTIFIED BY admin_password;
-- CREATE ROLE
CREATE ROLE new_role;
-- GRANT ROLE TO USER
GRANT new_role TO user_name;
-- GRANT CREATE SESSION PRIVILEGE TO USER
GRANT CREATE SESSION TO new_role;
```
## Metadata Ingestion
### 1. Visit the Services Page