CreateMultipartUpload operation: The AWS Access Key Id you provided does not exist in our records.

0

I am trying to create a Iceberg table in the Aws S3 Bucket an append the data incrementally,

Step 1: I could able to create the table for the very first time Step 2: When I am trying to append the data to the existing iceberg table Its throwing error :

INVALID_ACCESS_KEY_ID during CreateMultipartUpload operation: The AWS Access Key Id you provided does not exist in our records.

I had provided the **AmazonS3FullAccess **to the IAM user and I still cant able to write Iceberg Tables to the S3 bucket

1 Answer
0

That's an authentication failure, not a permissions issue. It sounds like you have a static access key created for your IAM user, and it comes with an access key ID ("username") and a secret key ("password") with which your API requests must be signed. Check the access key ID and secret key that you're supplying to your code/command. If they seem to be correct, you've probably dropped a character or few when you copied them originally, and the simple solution is to create a new access key and make sure to record the key ID and secret key accurately.

EXPERT
answered a month ago
profile picture
EXPERT
reviewed a month ago
  • Hi

    If you deep dive into my issue , I could able to create the table : table metadata json file is creating in the S3 Bucket folder , if its access issue then It shouldn't create any file in the S3 bucket right !!!

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions