You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/object-storage/troubleshooting/deleted-objects-still-billed.mdx
+34-2Lines changed: 34 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
meta:
3
-
title: &title I am still getting billed for deleted objects
3
+
title: &title I am getting billed for objects that I cannot see
4
4
description: &description I don't understand the amount billed compared to the objects that are present in my Scaleway Object Storage bucket
5
5
content:
6
6
h1: *title
@@ -20,10 +20,42 @@ dates:
20
20
21
21
## Problem
22
22
23
-
## Cause
23
+
The amount billed does not correspond to the objects that are present in my Scaleway Object Storage bucket.
24
+
25
+
## Possible causes
26
+
27
+
- Your [bucket is versioned](/object-storage/how-to/use-bucket-versioning/), and multiple versions of your objects are stored in it, incurring extra cost.
28
+
29
+
- Some [multipart uploads](/object-storage/api-cli/multipart-uploads/) are ongoing. The storage used during the upload is billed, but the object is not visible as long as the upload is not complete.
24
30
25
31
## Possible solutions
26
32
33
+
### Bucket versioning
34
+
35
+
1. Check the versioning status of your bucket via the [Scaleway console](https://console.scaleway.com/object-storage/buckets), or using the [GetBucketVersioning](/object-storage/api-cli/bucket-operations/#getbucketversioning) command:
- If the versioning is `disabled`, the issue is not linked to versioning.
40
+
- If the versioning is `enabled` or `suspended`, you may have multiple versions of your objects.
41
+
2. Use the [ListObjectVersions](/object-storage/api-cli/bucket-operations/#listobjectversions) command to list the versions of the objects in your bucket:
Refer to the [official Amazon S3 documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/versioning-workflows.html) for more information on how versioning works.
51
+
52
+
### Multipart uploads
53
+
54
+
1. Check if some multipart uploads are ongoing using the [ListMultipartUpload](/object-storage/api-cli/multipart-uploads/#listing-multipart-uploads) command:
55
+
```sh
56
+
list-multipart-uploads --bucket BucketName
57
+
```
58
+
27
59
## Going further
28
60
29
61
- Refer to the [bucket policies overview](/object-storage/api-cli/bucket-policy/) for more information on the different elements of a bucket policy.
0 commit comments