2021-08-01 14:27:44 -07:00
|
|
|
---
|
|
|
|
description: This guide will help install Redshift Usage connector and run manually
|
|
|
|
---
|
|
|
|
|
|
|
|
# Redshift Usage
|
|
|
|
|
|
|
|
## Redshift Usage
|
|
|
|
|
|
|
|
{% hint style="info" %}
|
|
|
|
**Prerequisites**
|
|
|
|
|
|
|
|
OpenMetadata is built using Java, DropWizard, Jetty, and MySQL.
|
|
|
|
|
|
|
|
1. Python 3.7 or above
|
|
|
|
{% endhint %}
|
|
|
|
|
2021-08-12 14:11:56 -07:00
|
|
|
## Install from PyPI or Source
|
2021-08-01 14:27:44 -07:00
|
|
|
|
2021-08-12 14:11:56 -07:00
|
|
|
{% tabs %}
|
|
|
|
{% tab title="Install Using PyPI" %}
|
|
|
|
```bash
|
|
|
|
pip install 'openmetadata-ingestion[redshift-usage]'
|
|
|
|
```
|
|
|
|
{% endtab %}
|
|
|
|
{% tab title="Build from source " %}
|
2021-08-01 14:27:44 -07:00
|
|
|
```bash
|
2021-08-12 14:11:56 -07:00
|
|
|
# checkout OpenMetadata
|
|
|
|
git clone https://github.com/open-metadata/OpenMetadata.git
|
|
|
|
cd OpenMetadata/ingestion
|
|
|
|
python3 -m venv env
|
|
|
|
source env/bin/activate
|
2021-08-01 14:27:44 -07:00
|
|
|
pip install '.[redshift-usage]'
|
|
|
|
```
|
2021-08-12 14:11:56 -07:00
|
|
|
{% endtab %}
|
|
|
|
{% endtabs %}
|
2021-08-01 14:27:44 -07:00
|
|
|
|
|
|
|
## Run Manually
|
|
|
|
|
|
|
|
```bash
|
|
|
|
metadata ingest -c ./pipelines/redshift_usage.json
|
|
|
|
```
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|