Docs: Change in Content from 1.5 to 1.6 (#19154)

Co-authored-by: Rounak Dhillon <rounakdhillon@Rounaks-MacBook-Air.local>
This commit is contained in:
RounakDhillon 2024-12-20 14:03:15 +05:30 committed by GitHub
parent d084243d0a
commit 929c4ac18d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 14 additions and 14 deletions

View File

@ -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 - You can also run the below command to fetch the docker compose file directly from the terminal -
```bash ```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 ### 3. Update Environment Variables required for OpenMetadata Dependencies
@ -192,7 +192,7 @@ You can validate that all containers are up by running with command `docker ps`.
```commandline ```commandline
docker ps docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 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) In a few seconds, you should be able to access the OpenMetadata UI at [http://localhost:8585](http://localhost:8585)

View File

@ -26,11 +26,11 @@ Install the `openmetadata-ingestion` package in your Airflow environment. This a
pip3 install openmetadata-ingestion[<plugin>]==x.y.z 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 [<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 ### Example
``` ```
pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.5.12 pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.6.1
``` ```
### Example DAG ### Example DAG

View File

@ -120,7 +120,7 @@ openmetadata:
{% note %} {% note %}
- Note that the `openmetadata-ingestion` only supports Python versions 3.7, 3.8, 3.9 and 3.10. - 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 %} {% /note %}
You will need to follow three steps: You will need to follow three steps:

View File

@ -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/). 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 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 ```python
pip install "openmetadata-ingestion~=1.5.12.0" pip install "openmetadata-ingestion~=1.6.1.0"
``` ```
{% /note %} {% /note %}

View File

@ -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 - You can also run the below command to fetch the docker compose file directly from the terminal -
```bash ```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 ### 3. Update Environment Variables required for OpenMetadata Dependencies
@ -192,7 +192,7 @@ You can validate that all containers are up by running with command `docker ps`.
```commandline ```commandline
docker ps docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 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) In a few seconds, you should be able to access the OpenMetadata UI at [http://localhost:8585](http://localhost:8585)

View File

@ -26,11 +26,11 @@ Install the `openmetadata-ingestion` package in your Airflow environment. This a
pip3 install openmetadata-ingestion[<plugin>]==x.y.z 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 [<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 ### Example
``` ```
pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.5.12 pip3 install openmetadata-ingestion[mysql,snowflake,s3]==1.6.1
``` ```
### Example DAG ### Example DAG

View File

@ -120,7 +120,7 @@ openmetadata:
{% note %} {% note %}
- Note that the `openmetadata-ingestion` only supports Python versions 3.7, 3.8, 3.9 and 3.10. - 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 %} {% /note %}
You will need to follow three steps: You will need to follow three steps:

View File

@ -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/). 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 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 ```python
pip install "openmetadata-ingestion~=1.5.12.0" pip install "openmetadata-ingestion~=1.6.1.0"
``` ```
{% /note %} {% /note %}