mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-17 13:36:56 +00:00
added metabase doc and minor changes (#1805)
This commit is contained in:
parent
13a867de33
commit
a8d2fa42ed
@ -17,6 +17,7 @@
|
|||||||
* [Kafka](openmetadata/connectors/kafka.md)
|
* [Kafka](openmetadata/connectors/kafka.md)
|
||||||
* [Looker](openmetadata/connectors/looker.md)
|
* [Looker](openmetadata/connectors/looker.md)
|
||||||
* [MariaDB](connectors/mariadb.md)
|
* [MariaDB](connectors/mariadb.md)
|
||||||
|
* [Metabase](openmetadata/connectors/metabase.md)
|
||||||
* [MlFlow](connectors/mlflow.md)
|
* [MlFlow](connectors/mlflow.md)
|
||||||
* [MsSQL](openmetadata/connectors/mssql.md)
|
* [MsSQL](openmetadata/connectors/mssql.md)
|
||||||
* [MySQL](openmetadata/connectors/mysql.md)
|
* [MySQL](openmetadata/connectors/mysql.md)
|
||||||
|
@ -31,6 +31,7 @@ OpenMetadata supports connectors to some popular services. We will continue as a
|
|||||||
#### Dashboard Services
|
#### Dashboard Services
|
||||||
|
|
||||||
* [Looker](../../../openmetadata/connectors/looker.md)
|
* [Looker](../../../openmetadata/connectors/looker.md)
|
||||||
|
* [Metabase](../../../openmetadata/connectors/metabase.md)
|
||||||
* [Redash](../../../openmetadata/connectors/redash.md)
|
* [Redash](../../../openmetadata/connectors/redash.md)
|
||||||
* [Superset](../../../openmetadata/connectors/superset.md)
|
* [Superset](../../../openmetadata/connectors/superset.md)
|
||||||
* [Tableau](../../../openmetadata/connectors/tableau.md)
|
* [Tableau](../../../openmetadata/connectors/tableau.md)
|
||||||
|
@ -88,7 +88,7 @@ metadata ingest -c ./examples/workflows/bigquery.json
|
|||||||
|
|
||||||
Below is the configuration to publish Bigquery data into the OpenMetadata service.
|
Below is the configuration to publish Bigquery data into the OpenMetadata service.
|
||||||
|
|
||||||
Add Optionally`pii` processor and `metadata-rest` sink along with `metadata-server` config
|
Add `metadata-rest` sink along with `metadata-server` config
|
||||||
|
|
||||||
{% code title="bigquery.json" %}
|
{% code title="bigquery.json" %}
|
||||||
```javascript
|
```javascript
|
||||||
|
@ -57,7 +57,7 @@ metadata ingest -c ./examples/workflows/looker.json
|
|||||||
|
|
||||||
Below is the configuration to publish Looker data into the OpenMetadata service.
|
Below is the configuration to publish Looker data into the OpenMetadata service.
|
||||||
|
|
||||||
Add Optionally`pii` processor and `metadata-rest` sink along with `metadata-server` config
|
Add `metadata-rest` sink along with `metadata-server` config
|
||||||
|
|
||||||
{% code title="looker.json" %}
|
{% code title="looker.json" %}
|
||||||
```javascript
|
```javascript
|
||||||
|
88
docs/openmetadata/connectors/metabase.md
Normal file
88
docs/openmetadata/connectors/metabase.md
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
---
|
||||||
|
description: This guide will help install Metabase connector and run manually
|
||||||
|
---
|
||||||
|
|
||||||
|
# Metabase
|
||||||
|
|
||||||
|
{% hint style="info" %}
|
||||||
|
**Prerequisites**
|
||||||
|
|
||||||
|
OpenMetadata is built using Java, DropWizard, Jetty, and MySQL.
|
||||||
|
|
||||||
|
1. Python 3.7 or above
|
||||||
|
{% endhint %}
|
||||||
|
|
||||||
|
### Install from PyPI
|
||||||
|
|
||||||
|
{% tabs %}
|
||||||
|
{% tab title="Install Using PyPI" %}
|
||||||
|
```bash
|
||||||
|
pip install 'openmetadata-ingestion[metabase]'
|
||||||
|
```
|
||||||
|
{% endtab %}
|
||||||
|
{% endtabs %}
|
||||||
|
|
||||||
|
## Run Manually
|
||||||
|
|
||||||
|
```bash
|
||||||
|
metadata ingest -c ./examples/workflows/metabase.json
|
||||||
|
```
|
||||||
|
|
||||||
|
### Configuration
|
||||||
|
|
||||||
|
{% code title="metabase.json" %}
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
"source": {
|
||||||
|
"type": "metabase",
|
||||||
|
"config": {
|
||||||
|
"username": "username",
|
||||||
|
"password": "password",
|
||||||
|
"host_port": "host:port",
|
||||||
|
"service_name": "local_metabase",
|
||||||
|
"database_service_name": "Optional - Create Lineage by adding relevant Database Service Name"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
...
|
||||||
|
```
|
||||||
|
{% endcode %}
|
||||||
|
|
||||||
|
1. **username** - pass the Metabase Client ID.
|
||||||
|
2. **password** - the password for the Metabase Client Secret.
|
||||||
|
3. **host\_port** - Hostname and Port number where the service is being initialized.
|
||||||
|
4. **service\_name** - Service Name for this Metabase cluster. If you added the Metabase cluster through OpenMetadata UI, make sure the service name matches the same.
|
||||||
|
5. **filter\_pattern** - It contains includes, excludes options to choose which pattern of datasets you want to ingest into OpenMetadata.
|
||||||
|
|
||||||
|
### Publish to OpenMetadata
|
||||||
|
|
||||||
|
Below is the configuration to publish Metabase data into the OpenMetadata service.
|
||||||
|
|
||||||
|
Add `metadata-rest` sink along with `metadata-server` config
|
||||||
|
|
||||||
|
{% code title="Metabase.json" %}
|
||||||
|
```javascript
|
||||||
|
{
|
||||||
|
"source": {
|
||||||
|
"type": "metabase",
|
||||||
|
"config": {
|
||||||
|
"username": "username",
|
||||||
|
"password": "password",
|
||||||
|
"host_port": "host:port",
|
||||||
|
"service_name": "local_metabase",
|
||||||
|
"database_service_name": "Optional - Create Lineage by adding relevant Database Service Name"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sink": {
|
||||||
|
"type": "metadata-rest",
|
||||||
|
"config": {}
|
||||||
|
},
|
||||||
|
"metadata_server": {
|
||||||
|
"type": "metadata-server",
|
||||||
|
"config": {
|
||||||
|
"api_endpoint": "http://localhost:8585/api",
|
||||||
|
"auth_provider_type": "no-auth"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
{% endcode %}
|
@ -53,7 +53,7 @@ metadata ingest -c ./examples/workflows/redash.json
|
|||||||
|
|
||||||
Below is the configuration to publish Redash data into the OpenMetadata service.
|
Below is the configuration to publish Redash data into the OpenMetadata service.
|
||||||
|
|
||||||
Add Optionally`pii` processor and `metadata-rest` sink along with `metadata-server` config
|
Add `metadata-rest` sink along with `metadata-server` config
|
||||||
|
|
||||||
{% code title="redash.json" %}
|
{% code title="redash.json" %}
|
||||||
```javascript
|
```javascript
|
||||||
|
Loading…
x
Reference in New Issue
Block a user