We have data in our AWS s3 bucket, We have specified the AWS access key and secret key in config.yml
s3Config: region: us-east-1 accessKey: accessSecret:
as well as also passing as an env variable in the docker run command
But it is throwing an error, am I missing something fundamental ?
The AWS Access Key Id you provided does not exist in our records. (Service: S3, Status Code: 403, Request ID: V2P472XW9RRYTYR6, Extended Request ID: faNL7UMBLRC1SSGUg+N/AeVMO1VF8RUDyqQ8C71XtJcbYyoGeIEAW38vDBjtyuXEQR81SMQKgCo=)
java.util.concurrent.CompletionException: software.amazon.awssdk.services.s3.model.S3Exception: The AWS Access Key Id you provided does not exist in our records. (Service: S3, Status Code: 403, Request ID: V2P472XW9RRYTYR6, Extended Request ID: faNL7UMBLRC1SSGUg+N/AeVMO1VF8RUDyqQ8C71XtJcbYyoGeIEAW38vDBjtyuXEQR81SMQKgCo=)
We have data in our AWS s3 bucket, We have specified the AWS access key and secret key in config.yml
s3Config: region: us-east-1 accessKey: accessSecret:
as well as also passing as an env variable in the docker run command
docker run -itd -e AWS_DEBUG=1 -e AWS_ACCESS_KEY_ID="" -e AWS_SECRET_ACCESS_KEY="" -v /home:/home onehouse/hudi-metadata-extractor -p /home/config.yml
But it is throwing an error, am I missing something fundamental ? The AWS Access Key Id you provided does not exist in our records. (Service: S3, Status Code: 403, Request ID: V2P472XW9RRYTYR6, Extended Request ID: faNL7UMBLRC1SSGUg+N/AeVMO1VF8RUDyqQ8C71XtJcbYyoGeIEAW38vDBjtyuXEQR81SMQKgCo=) java.util.concurrent.CompletionException: software.amazon.awssdk.services.s3.model.S3Exception: The AWS Access Key Id you provided does not exist in our records. (Service: S3, Status Code: 403, Request ID: V2P472XW9RRYTYR6, Extended Request ID: faNL7UMBLRC1SSGUg+N/AeVMO1VF8RUDyqQ8C71XtJcbYyoGeIEAW38vDBjtyuXEQR81SMQKgCo=)