-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add changes for kubernetes deployment docs * Update Quickstart docker guide * fix: docker quickstart docs * Add troubleshooting guide for quickstart k8s * fix typo * upper case the placeholders * Add FAQs and update EKS deployment docs * fix: docs links * Update Deployment page * fix: update k8s gke docs * fix(chore): Notes as warning type * fix(chore): markdown link and typo * fix(refactor): Docker Deployment Docs * fix(refactor): Docker Deployment Docs * fix: upgrade k8s docs * fix(reviews): remove apache mod_proxy * fix(refactor): docker volumes docs section * fix(refactor): Code Review changes * Merge remote-tracking branch 'origin/main' into 12608 * Add troubleshoot docs for psql create extension pgcypto issue * fix: k8s docs with elasticsearch auth enabled * fix: Update the changes to v1.1.1 docs * fix: updated the docs for 1.1.1 * Add docker and kubernetes v1.1.1 changes in docs * fix: Docker Deployment Link * fix: more fixes --------- Co-authored-by: Akash-Jain <Akash.J@deuexsolutions.com>
- Loading branch information
1 parent
62c3a9e
commit 60ff64c
Showing
49 changed files
with
2,717 additions
and
2,205 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
...ials/v1.1.0/deployment/configure-external-orchestrator-for-ingestion-service.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
### Configure External Orchestrator Service (Ingestion Service) | ||
|
||
OpenMetadata requires connectors to be scheduled to periodically fetch the metadata or you can use the OpenMetadata APIs to push the metadata as well | ||
1. OpenMetadata Ingestion Framework is flexible to run on any orchestrator. However we built an ability to deploy and manage connectors as pipelines from the UI. This requires the Airflow container we ship. However, it is recommended to | ||
2. If your team prefers to run on any other orchestrator such as prefect, dagster or even github workflows. Please refer to our recent webinar on [How Ingestion Framework works](https://www.youtube.com/watch?v=i7DhG_gZMmE&list=PLa1l-WDhLreslIS_96s_DT_KdcDyU_Itv&index=10) |
9 changes: 9 additions & 0 deletions
9
...metadata-docs/content/partials/v1.1.0/deployment/minimum-sizing-requirements.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Minimum Sizing Requirements | ||
|
||
We recommend you to allocate openmetadata-server with minimum of 2vCPUs and 6 GiB Memory. | ||
|
||
For External Services that openmetadata depends on - | ||
- For the database, minimum 2 vCPUs and 2 GiB RAM (per instance) with 30 GiB of Storage Volume Attached (dynamic expansion up to 100 GiB) | ||
- For Elasticsearch, minimum 2 vCPUs and 2 GiB RAM (per instance) with 30 GiB of Storage volume attached | ||
|
||
These settings apply as well when using managed instances, such as AWS RDS or GCP CloudSQL or AWS OpenSearch. |
19 changes: 19 additions & 0 deletions
19
...ials/v1.1.0/deployment/postgresql-issue-permission-denied-extension-pgcrypto.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
If you are facing the below issue with PostgreSQL as Database Backend for OpenMetadata Application, | ||
|
||
``` | ||
Message: ERROR: permission denied to create extension "pgcrypto" | ||
Hint: Must be superuser to create this extension. | ||
``` | ||
|
||
It seems the Database User does not have sufficient privileges. In order to resolve the above issue, grant usage permissions to the PSQL User. | ||
|
||
```sql | ||
GRANT USAGE ON SCHEMA schema_name TO <openmetadata_psql_user>; | ||
GRANT CREATE ON EXTENSION pgcrypto TO <openmetadata_psql_user>; | ||
``` | ||
|
||
{%note%} | ||
|
||
In the above command, replace `<openmetadata_psql_user>` with the sql user used by OpenMetadata Application to connect to PostgreSQL Database. | ||
|
||
{%\note%} |
5 changes: 5 additions & 0 deletions
5
...ials/v1.1.1/deployment/configure-external-orchestrator-for-ingestion-service.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
### Configure External Orchestrator Service (Ingestion Service) | ||
|
||
OpenMetadata requires connectors to be scheduled to periodically fetch the metadata or you can use the OpenMetadata APIs to push the metadata as well | ||
1. OpenMetadata Ingestion Framework is flexible to run on any orchestrator. However we built an ability to deploy and manage connectors as pipelines from the UI. This requires the Airflow container we ship. However, it is recommended to | ||
2. If your team prefers to run on any other orchestrator such as prefect, dagster or even github workflows. Please refer to our recent webinar on [How Ingestion Framework works](https://www.youtube.com/watch?v=i7DhG_gZMmE&list=PLa1l-WDhLreslIS_96s_DT_KdcDyU_Itv&index=10) |
9 changes: 9 additions & 0 deletions
9
...metadata-docs/content/partials/v1.1.1/deployment/minimum-sizing-requirements.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Minimum Sizing Requirements | ||
|
||
We recommend you to allocate openmetadata-server with minimum of 2vCPUs and 6 GiB Memory. | ||
|
||
For External Services that openmetadata depends on - | ||
- For the database, minimum 2 vCPUs and 2 GiB RAM (per instance) with 30 GiB of Storage Volume Attached (dynamic expansion up to 100 GiB) | ||
- For Elasticsearch, minimum 2 vCPUs and 2 GiB RAM (per instance) with 30 GiB of Storage volume attached | ||
|
||
These settings apply as well when using managed instances, such as AWS RDS or GCP CloudSQL or AWS OpenSearch. |
19 changes: 19 additions & 0 deletions
19
...ials/v1.1.1/deployment/postgresql-issue-permission-denied-extension-pgcrypto.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
If you are facing the below issue with PostgreSQL as Database Backend for OpenMetadata Application, | ||
|
||
``` | ||
Message: ERROR: permission denied to create extension "pgcrypto" | ||
Hint: Must be superuser to create this extension. | ||
``` | ||
|
||
It seems the Database User does not have sufficient privileges. In order to resolve the above issue, grant usage permissions to the PSQL User. | ||
|
||
```sql | ||
GRANT USAGE ON SCHEMA schema_name TO <openmetadata_psql_user>; | ||
GRANT CREATE ON EXTENSION pgcrypto TO <openmetadata_psql_user>; | ||
``` | ||
|
||
{%note%} | ||
|
||
In the above command, replace `<openmetadata_psql_user>` with the sql user used by OpenMetadata Application to connect to PostgreSQL Database. | ||
|
||
{%\note%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.