mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-24 09:50:01 +00:00
2.5 KiB
2.5 KiB
description |
---|
This guide will help install Tableau connector and run manually |
Tableau
{% hint style="info" %} Prerequisites
OpenMetadata is built using Java, DropWizard, Jetty, and MySQL.
- Python 3.7 or above {% endhint %}
Install from PyPI
{% tabs %} {% tab title="Install Using PyPI" %}
pip install 'openmetadata-ingestion[tableau]'
{% endtab %} {% endtabs %}
Run Manually
metadata ingest -c ./examples/workflows/tableau.json
Configuration
{% code title="tableau.json" %}
{
"source": {
"type": "tableau",
"config": {
"username": "username",
"password": "password",
"personal_access_token_secret": "personal_access_token_secret",
"personal_access_token_name": "personal_access_token_name",
"service_name": "local_tableau",
"server": "server_address",
"site_name": "site_name",
"site_url": "site_url",
"api_version": "api version",
"env": "env"
}
},
...
{% endcode %}
- username - pass the Tableau username.
- password - password for the username.
- personal_access_token_secret - **** pass the personal access token secret
- personal_access_token_name - pass the personal access token name
- server - address of the server.
- site_name - pass the site name.
- site_url - pass the tableau connector url.
- api_version - pass an api version.
- service_name - Service Name for this Tableau cluster. If you added Tableau cluster through OpenMetadata UI, make sure the service name matches the same.
- 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 Tableau data into the OpenMetadata service.
Add metadata-rest
sink along with metadata-server
config
{% code title="tableau.json" %}
{
"source": {
"type": "tableau",
"config": {
"username": "username",
"password": "password",
"service_name": "local_tableau",
"server": "server_address",
"site_name": "site_name",
"site_url": "site_url",
"api_version": "api version",
"env": "env"
}
},
"sink": {
"type": "metadata-rest",
"config": {}
},
"metadata_server": {
"type": "metadata-server",
"config": {
"api_endpoint": "http://localhost:8585/api",
"auth_provider_type": "no-auth"
}
}
}
{% endcode %}