tuanit03 commented on issue #3640:
URL: https://github.com/apache/polaris/issues/3640#issuecomment-3868932257
Hi @gaocho , I once read an issue saying that, to bypass Credential Vending,
you must store the S3 keys in the environment of the query engine (Spark,
Trino, ...).
So, if you have applied the config:
```yaml
stsUnavailable: true
```
then add the S3 configuration to the Spark environment:
```yaml
spark-jupyter:
build: .
container_name: polaris-spark-jupyter
depends_on:
polaris-setup:
condition: service_completed_successfully
environment:
AWS_REGION: "us-east-1"
AWS_ACCESS_KEY_ID: "abcd"
AWS_SECRET_ACCESS_KEY: "abcd"
ports:
- "8888:8888"
- "4040:4040"
volumes:
- ./notebooks:/home/jovyan/work
healthcheck:
test: "curl localhost:8888"
interval: 5s
retries: 15
networks:
- polaris_net
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]