Skip to content
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

Added restriction to limit the ID length to 255 characters in bucket lifecycle rules #8628

Merged
merged 1 commit into from
Jan 8, 2025

Conversation

achouhan09
Copy link
Member

@achouhan09 achouhan09 commented Dec 26, 2024

Explain the changes

  1. Currently, any length of ID can be accepted, as a fix we have added restriction to limit the length of ID to 255 characters only in bucket lifecycle rules.

Issues: Fixed #xxx / Gap #xxx

  1. Fixed: NSFS | S3 | Lifecycle: Bucket lifecycle configuration accepts long rule ID #8549

Testing Instructions:

  1. create s3 backingstore>bucketclass>obc
  2. Apply below lifecycle configuration on the bucket created by obc:
    AWS_ACCESS_KEY_ID=<access-id> AWS_SECRET_ACCESS_KEY=<secret-key> aws s3api --no-verify-ssl --endpoint-url <endpoint-url> put-bucket-lifecycle-configuration --bucket <bucket-name> --lifecycle-configuration '{ "Rules": [ { "ID": "JiLekqcxZ6q0W0kKmiCLtVUYgyurIKmmUixcgHrkVKHyo6MfRU3EwPDD4NFBNWfA1Ej4qnuqSwS1NPRBvIn2x11aEf5kCK1GOjwp6SdTi17wivc9f7Zt44vaXkf73mME0PG1HwI8vGhzHfo9EptdWwdqG9J7mUYcGTbh63aUShPbjRAtLgIHYs2MyTTocohssHQ2cSnQiZjtLXi1j8h4AzFNFx5PzaPInmWqCiMrQPY6npbnbZrNKv7scXcLd0zkszxktHmgoPLLimJYHwaH0a2GRZqw6icnXUmSY4oXMzU1XAYBSJwQ3S3n42RlrVQK11JnZvKYYpKcB1cHz5oYNrGyRczopsgRvn6vPZ8TK9JfxTrDkwMB5o7vfQoXynZPkjeH4uX0N3TLqmEBUUcFGBPJND6vOMgfTiZDtMsBQPTtAepimZCbcRAmJ8F5GPj4ZQtjaXPgEFrEHWRpeEXknZBaBKZYaf8CQpi8WF3fHbnFbZK1G6x1oYG2gtn1MgHU", "Status": "enabled", "Filter": { "Prefix": "test/" }, "Expiration": { "Date": "2020-01-02T00:00:00.000Z" } } ] }'
  3. Check for the similar error as aws, we should get an error for ID having length exeeding 255 characters.
  • Tests added

@achouhan09 achouhan09 requested review from a team and aspandey and removed request for a team December 26, 2024 16:43
@achouhan09 achouhan09 changed the title NSFS| Added restriction to limit the ID length to 255 characters in bucket lifecycle rules Added restriction to limit the ID length to 255 characters in bucket lifecycle rules Dec 30, 2024
@achouhan09 achouhan09 requested a review from romayalon December 30, 2024 12:05
@romayalon
Copy link
Contributor

Hey @achouhan09

  1. Can you please link to the Issues section the bug you are fixing?
  2. Please add tests
  3. Throwing InvalidArgument error code is based on the AWS S3 protocol?

@achouhan09
Copy link
Member Author

Hi @romayalon
I think the InvalidArgument error code is suitable for this case as there is issue found in parameters passed. check this

Added issue link and tests. Thanks

@shirady
Copy link
Contributor

shirady commented Jan 6, 2025

Hi @romayalon I think the InvalidArgument error code is suitable for this case as there is issue found in parameters passed. check this

Could you test it in AWS and attach the results here?

@achouhan09
Copy link
Member Author

Hi @romayalon I think the InvalidArgument error code is suitable for this case as there is issue found in parameters passed. check this

Could you test it in AWS and attach the results here?

Screenshot from 2025-01-07 16-16-49

@shirady
Copy link
Contributor

shirady commented Jan 7, 2025

replied to comment
@achouhan09 does noobaa use the same error message?
I mean this: "ID length should not exceed allowed limit of 255"

@achouhan09
Copy link
Member Author

achouhan09 commented Jan 7, 2025

replied to comment @achouhan09 does noobaa use the same error message? I mean this: "ID length should not exceed allowed limit of 255"

For NooBaa, we will only get InvalidArgument error and no error msg on the command line. But we can check the error logs in the endpoint pod which is similar to what you are referring. Below is the NooBaa error:

An error occurred (InvalidArgument) when calling the PutBucketLifecycleConfiguration operation: Invalid Argument

@achouhan09
Copy link
Member Author

replied to comment @achouhan09 does noobaa use the same error message? I mean this: "ID length should not exceed allowed limit of 255"

@shirady updated the error msg. Thanks

Copy link
Contributor

@shirady shirady left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM
(added a minor comment if you want to change)

@achouhan09 achouhan09 merged commit 4d677c8 into noobaa:master Jan 8, 2025
11 checks passed
@achouhan09 achouhan09 deleted the id-fix branch January 8, 2025 12:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

NSFS | S3 | Lifecycle: Bucket lifecycle configuration accepts long rule ID
3 participants