mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-16 10:08:08 +00:00
Oracle & Superset Req Docs (#10015)
This commit is contained in:
parent
a1b9d3fe65
commit
399adf788d
@ -65,9 +65,9 @@ source:
|
|||||||
serviceConnection:
|
serviceConnection:
|
||||||
config:
|
config:
|
||||||
type: Superset
|
type: Superset
|
||||||
|
hostPort: http://localhost:8080
|
||||||
connection:
|
connection:
|
||||||
# For Superset API Connection
|
# For Superset API Connection
|
||||||
hostPort: http://localhost:8080
|
|
||||||
username: admin
|
username: admin
|
||||||
password: admin
|
password: admin
|
||||||
provider: db # or provider: ldap
|
provider: db # or provider: ldap
|
||||||
|
|||||||
@ -65,9 +65,9 @@ source:
|
|||||||
serviceConnection:
|
serviceConnection:
|
||||||
config:
|
config:
|
||||||
type: Superset
|
type: Superset
|
||||||
|
hostPort: http://localhost:8088
|
||||||
connection:
|
connection:
|
||||||
# For Superset API Connection
|
# For Superset API Connection
|
||||||
hostPort: http://localhost:8080
|
|
||||||
username: admin
|
username: admin
|
||||||
password: admin
|
password: admin
|
||||||
provider: db # or provider: ldap
|
provider: db # or provider: ldap
|
||||||
|
|||||||
@ -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!
|
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
|
### Python Requirements
|
||||||
|
|
||||||
To run the Oracle ingestion, you will need to install:
|
To run the Oracle ingestion, you will need to install:
|
||||||
|
|||||||
@ -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!
|
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
|
### Python Requirements
|
||||||
|
|
||||||
To run the Oracle ingestion, you will need to install:
|
To run the Oracle ingestion, you will need to install:
|
||||||
|
|||||||
@ -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!
|
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
|
## Metadata Ingestion
|
||||||
|
|
||||||
### 1. Visit the Services Page
|
### 1. Visit the Services Page
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user