mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-08 21:48:22 +00:00
Add troubleshooting section to Datalake (#6842)
This commit is contained in:
parent
f686f606ca
commit
86e20dad2d
@ -239,6 +239,8 @@ site_menu:
|
||||
url: /openmetadata/connectors/database/datalake/airflow
|
||||
- category: OpenMetadata / Connectors / Database / Datalake / CLI
|
||||
url: /openmetadata/connectors/database/datalake/cli
|
||||
- category: OpenMetadata / Connectors / Database / Datalake / Troubleshooting
|
||||
url: /openmetadata/connectors/database/datalake/troubleshooting
|
||||
- category: OpenMetadata / Connectors / Database / DB2
|
||||
url: /openmetadata/connectors/database/db2
|
||||
- category: OpenMetadata / Connectors / Database / DB2 / Airflow
|
||||
|
||||
@ -7,6 +7,31 @@ slug: /openmetadata/connectors/database/datalake
|
||||
|
||||
<Requirements />
|
||||
|
||||
<br/>
|
||||
|
||||
** S3 Permissions **
|
||||
|
||||
<p> To execute metadata extraction AWS account should have enough access to fetch required data. The <strong>Bucket Policy</strong> in AWS requires at least these permissions: </p>
|
||||
|
||||
```json
|
||||
{
|
||||
"Version": "2012-10-17",
|
||||
"Statement": [
|
||||
{
|
||||
"Effect": "Allow",
|
||||
"Action": [
|
||||
"s3:GetObject",
|
||||
"s3:ListBucket"
|
||||
],
|
||||
"Resource": [
|
||||
"arn:aws:s3:::<my bucket>",
|
||||
"arn:aws:s3:::<my bucket>/*"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
<MetadataIngestionService connector="Datalake"/>
|
||||
|
||||
<h4>Connection Options</h4>
|
||||
|
||||
@ -0,0 +1,13 @@
|
||||
---
|
||||
title: Datalake Connector Troubleshooting
|
||||
slug: /openmetadata/connectors/database/datalake/troubleshooting
|
||||
---
|
||||
|
||||
# Troubleshooting
|
||||
|
||||
Learn how to resolve the most common problems people encounter in the Datalake connector.
|
||||
|
||||
* ** 'Access Denied' error when reading from S3 bucket **
|
||||
|
||||
Please, ensure you have a Bucket Policy with the permissions explained in the requirement section [here](/openmetadata/connectors/database/datalake).
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user