Skip to content

Commit

Permalink
Docs: Change in Content from 1.5 to 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Rounak Dhillon authored and Rounak Dhillon committed Dec 20, 2024
1 parent d084243 commit 5085d73
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions openmetadata-docs/content/v1.6.x/deployment/docker/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ This docker compose file contains only the docker compose services for OpenMetad
You can also run the below command to fetch the docker compose file directly from the terminal -

```bash
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.8-release/docker-compose-openmetadata.yml
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.6.1-release/docker-compose-openmetadata.yml
```

### 3. Update Environment Variables required for OpenMetadata Dependencies
Expand Down Expand Up @@ -192,7 +192,7 @@ You can validate that all containers are up by running with command `docker ps`.
```commandline
❯ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
470cc8149826 openmetadata/server:1.5.8 "./openmetadata-star…" 45 seconds ago Up 43 seconds 3306/tcp, 9200/tcp, 9300/tcp, 0.0.0.0:8585-8586->8585-8586/tcp openmetadata_server
470cc8149826 openmetadata/server:1.6.1 "./openmetadata-star…" 45 seconds ago Up 43 seconds 3306/tcp, 9200/tcp, 9300/tcp, 0.0.0.0:8585-8586->8585-8586/tcp openmetadata_server
```

In a few seconds, you should be able to access the OpenMetadata UI at [http://localhost:8585](http://localhost:8585)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ Install the `openmetadata-ingestion` package in your Airflow environment. This a
pip3 install openmetadata-ingestion[<plugin>]==x.y.z
```
-Replace [<plugin>](https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/setup.py) with the sources to ingest, such as mysql, snowflake, or s3.
-Replace x.y.z with the OpenMetadata version matching your server (e.g., 1.5.12).
-Replace x.y.z with the OpenMetadata version matching your server (e.g., 1.6.1).

### Example
```
pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.5.12
pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.6.1
```
### Example DAG

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ openmetadata:
{% note %}
- Note that the `openmetadata-ingestion` only supports Python versions 3.7, 3.8, 3.9 and 3.10.
- - The supported Airflow versions are 2.3, 2.4, 2.5, 2.6, and 2.7. Starting from release 1.5, OpenMetadata will support compatibility with Airflow versions up to 2.9.
- - The supported Airflow versions are 2.3, 2.4, 2.5, 2.6, and 2.7. Starting from release 1.6, OpenMetadata will support compatibility with Airflow versions up to 2.9.
{% /note %}

You will need to follow three steps:
Expand Down
4 changes: 2 additions & 2 deletions openmetadata-docs/content/v1.6.x/sdk/python/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ We are now going to present a high-level Python API as a type-safe and gentle wr
The Python SDK is part of the `openmetadata-ingestion` base package. You can install it from [PyPI](https://pypi.org/project/openmetadata-ingestion/).

Make sure to use the same `openmetadata-ingestion` version as your server version. For example, if you have the OpenMetadata
server at version 1.5.12, you will need to install:
server at version 1.6.1, you will need to install:

```python
pip install "openmetadata-ingestion~=1.5.12.0"
pip install "openmetadata-ingestion~=1.6.1.0"
```

{% /note %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ This docker compose file contains only the docker compose services for OpenMetad
You can also run the below command to fetch the docker compose file directly from the terminal -

```bash
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.5.8-release/docker-compose-openmetadata.yml
wget https://github.com/open-metadata/OpenMetadata/releases/download/1.6.1-release/docker-compose-openmetadata.yml
```

### 3. Update Environment Variables required for OpenMetadata Dependencies
Expand Down Expand Up @@ -192,7 +192,7 @@ You can validate that all containers are up by running with command `docker ps`.
```commandline
❯ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
470cc8149826 openmetadata/server:1.5.8 "./openmetadata-star…" 45 seconds ago Up 43 seconds 3306/tcp, 9200/tcp, 9300/tcp, 0.0.0.0:8585-8586->8585-8586/tcp openmetadata_server
470cc8149826 openmetadata/server:1.6.1 "./openmetadata-star…" 45 seconds ago Up 43 seconds 3306/tcp, 9200/tcp, 9300/tcp, 0.0.0.0:8585-8586->8585-8586/tcp openmetadata_server
```

In a few seconds, you should be able to access the OpenMetadata UI at [http://localhost:8585](http://localhost:8585)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ Install the `openmetadata-ingestion` package in your Airflow environment. This a
pip3 install openmetadata-ingestion[<plugin>]==x.y.z
```
-Replace [<plugin>](https://github.com/open-metadata/OpenMetadata/blob/main/ingestion/setup.py) with the sources to ingest, such as mysql, snowflake, or s3.
-Replace x.y.z with the OpenMetadata version matching your server (e.g., 1.5.12).
-Replace x.y.z with the OpenMetadata version matching your server (e.g., 1.6.1).

### Example
```
pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.5.12
pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.6.1
```
### Example DAG

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ openmetadata:
{% note %}
- Note that the `openmetadata-ingestion` only supports Python versions 3.7, 3.8, 3.9 and 3.10.
- - The supported Airflow versions are 2.3, 2.4, 2.5, 2.6, and 2.7. Starting from release 1.5, OpenMetadata will support compatibility with Airflow versions up to 2.9.
- - The supported Airflow versions are 2.3, 2.4, 2.5, 2.6, and 2.7. Starting from release 1.6, OpenMetadata will support compatibility with Airflow versions up to 2.9.
{% /note %}

You will need to follow three steps:
Expand Down
4 changes: 2 additions & 2 deletions openmetadata-docs/content/v1.7.x-SNAPSHOT/sdk/python/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ We are now going to present a high-level Python API as a type-safe and gentle wr
The Python SDK is part of the `openmetadata-ingestion` base package. You can install it from [PyPI](https://pypi.org/project/openmetadata-ingestion/).

Make sure to use the same `openmetadata-ingestion` version as your server version. For example, if you have the OpenMetadata
server at version 1.5.12, you will need to install:
server at version 1.6.1, you will need to install:

```python
pip install "openmetadata-ingestion~=1.5.12.0"
pip install "openmetadata-ingestion~=1.6.1.0"
```

{% /note %}
Expand Down

0 comments on commit 5085d73

Please sign in to comment.