Skip to content

Commit bde313e

Browse files
committed
feat(obj): update
1 parent b17a2d8 commit bde313e

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

pages/object-storage/troubleshooting/object-deletion-issues.mdx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,21 @@ dates:
2020

2121
## Problem
2222

23+
I am experiencing issues while deleting objects
24+
2325
## Cause
2426

27+
object is locked
28+
bucket is versioned
29+
2530
## Possible solutions
2631

32+
object is locked
33+
-> check object lock via a HeadObject, if it’s Governance, you can bypass it with a delete object with the header “x-amz-bypass-governance-retention”, also specify the VersionId since a bucket with lock enabled is versioned.
34+
35+
bucket is versioned
36+
A DeleteObject on a versioned bucket with no VersionId specified will create a delete marker and the objects will still exist. To actually delete it, list all the versions with a ListObjectVersions (you can specify the name of your object as prefix) and then send a DeleteObject on each versions.
37+
2738
## Going further
2839

2940
- Refer to the [bucket policies overview](/object-storage/api-cli/bucket-policy/) for more information on the different elements of a bucket policy.

pages/object-storage/troubleshooting/presigned-url-errors.mdx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,23 @@ dates:
2020

2121
## Problem
2222

23+
I am receiving errors when using a presigned URL to access an object.
24+
2325
## Cause
2426

27+
- A clock skew of more than 15 minutes between the host and client will trigger a `InvalidSignatureException` or a `RequestTimeTooSkewed` error
28+
29+
- The public link of your [private object](/object-storage/concepts/) has expired
30+
2531
## Possible solutions
2632

27-
## Going further
33+
- Make sure that there is less than 15 minutes of clock skew between the host and client machines.
34+
35+
- Make sure that the object's public link has not expired.
2836

29-
- Refer to the [bucket policies overview](/object-storage/api-cli/bucket-policy/) for more information on the different elements of a bucket policy.
37+
## Going further
3038

39+
- Refer to the [documentation on sharing objects](/object-storage/how-to/access-objects-via-https/) for more information on public links.
3140
- If you did not manage to identify the error and solve it by yourself, [open a support ticket](/account/how-to/open-a-support-ticket/), and provide as many details as possible, along with the necessary information below:
3241
- Object Storage Endpoint (e.g. `s3.fr-par.scw.cloud`)
3342
- Bucket name

0 commit comments

Comments
 (0)