2021-08-01 14:27:44 -07:00
---
description: >-
2021-08-10 11:13:42 +05:30
This guide will help install Simple Scheduler and schedule connectors for
2021-08-01 14:27:44 -07:00
ingestion.
---
# Scheduler
{% hint style="info" %}
**Prerequisites**
2021-08-16 16:52:35 +00:00
OpenMetadata is built using Java, DropWizard, Jetty, and MySQL.
2021-08-01 14:27:44 -07:00
1. Python 3.7 or above
2. Create an env
```bash
python3 -m venv env
```
2021-08-16 16:52:35 +00:00
3. Activating the environment
2021-08-01 14:27:44 -07:00
```bash
source env/bin/activate
```
{% endhint %}
## Install dependencies
```text
cd ingestion
python3 -m venv env
source env/bin/activate
pip install '.[scheduler]'
python ingestion_scheduler/scheduler.py
```
{% hint style="warning" %}
**Note:**
Different Connectors require different dependencies, please go through [Connectors ](https://docs.open-metadata.org/install/metadata-ingestion/connectors ) Documentation install dependencies as needed.
{% endhint %}
## Scheduler UI
### Main Page
Loads all the Json connectors inside the pipeline directory as cron jobs.
2021-08-18 19:30:55 +00:00

2021-08-01 14:27:44 -07:00
### Custom run a job
2021-08-16 16:52:35 +00:00
* Click on the **Custom Run** button under the **Action** column of the jobs.
2021-08-01 14:27:44 -07:00
* Click on **Run.**
* The Job will start running the ingestion.

**Status of an executed job**
2021-08-16 16:52:35 +00:00
* Click on the **Executions** tab under Navigation Bar.
2021-08-01 14:27:44 -07:00
