-
Notifications
You must be signed in to change notification settings - Fork 221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] Load the proper AWS credential for glue/dynamodb catalog #892
Comments
seems like a misnomer for dynamo/glue to expect something called |
Another consideration is that there can be 2 separate s3 credentials. One to pass to glue/dynamo. Another for the catalog itself. |
maybe its fine to just break compatibility leading up to 1.0.0? What does the java iceberg do when looking for s3 credentials? |
Hi @kevinjqliu @jayceslesar. Thanks for the issue and valuable discussion. I would like to give a try with my proposal in #570 (comment). Draft PR: #922. Please let me know what you think! Thanks in advance!
Java implementation supports |
Apache Iceberg version
None
Please describe the bug 🐞
s3.access-key-id
ands3.secret-access-key
are the pyiceberg way to pass AWS credentials as properties to the catalog.However, in the
glue
anddynamodb
catalog,aws_access_key_id
andaws_secret_access_key
is expectedhttps://github.com/search?q=repo%3Aapache%2Ficeberg-python+aws_secret_access_key+path%3A.py+-path%3Atests&type=code
Also see #515 (comment)
We should standardize on a using
s3.access-key-id
ands3.secret-access-key
for glue/dynamodb catalog. And perhaps also fall back toaws_access_key_id
/aws_secret_access_key
The text was updated successfully, but these errors were encountered: