How objects are deleted
StorageGRID can delete objects either in direct response to a client request or automatically as a result of the expiration of an S3 bucket lifecycle or the requirements of the ILM policy. Understanding the different ways that objects can be deleted and how StorageGRID handles delete requests can help you manage objects more effectively.
StorageGRID can use one of two methods to delete objects:
-
Synchronous deletion: When StorageGRID receives a client delete request, all object copies are removed immediately. The client is informed that deletion was successful after the copies have been removed.
-
Objects are queued for deletion: When StorageGRID receives a delete request, the object is queued for deletion and the client is informed immediately that deletion was successful. Object copies are removed later by background ILM processing.
When deleting objects, StorageGRID uses the method that optimizes delete performance, minimizes potential delete backlogs, and frees space most quickly.
The table summarizes when StorageGRID uses each method.
Method of performing deletion | When used |
---|---|
Objects are queued for deletion |
When any of the following conditions are true:
|
Objects are removed immediately (synchronous deletion) |
When an S3 or Swift client makes a delete request and all of the following conditions are met:
|
When S3 or Swift clients make delete requests, StorageGRID begins by adding objects to the delete queue. It then switches to performing synchronous deletion. Making sure that the background deletion queue has objects to process allows StorageGRID to process deletes more efficiently, especially for low concurrency clients, while helping to prevent client delete backlogs.
Time required to delete objects
The way that StorageGRID deletes objects can affect how the system appears to perform:
-
When StorageGRID performs synchronous deletion, it can take StorageGRID up to 30 seconds to return a result to the client. This means that deletion can appear to be happening more slowly, even though copies are actually being removed more quickly than they are when StorageGRID queues objects for deletion.
-
If you are closely monitoring delete performance during a bulk delete, you might notice that the deletion rate appears to be slow after a certain number of objects have been deleted. This change occurs when StorageGRID shifts from queuing objects for deletion to performing synchronous deletion. The apparent reduction in the deletion rate does not mean that object copies are being removed more slowly. On the contrary, it indicates that on average, space is now being freed more quickly.
If you are deleting large numbers of objects and your priority is to free space quickly, consider using a client request to delete objects rather than deleting them using ILM or other methods. In general, space is freed more quickly when deletion is performed by clients because StorageGRID can use synchronous deletion.
The amount of time required to free space after an object is deleted depends on several factors:
-
Whether object copies are synchronously removed or are queued for removal later (for client delete requests).
-
Other factors such as the number of objects in the grid or the availability of grid resources when object copies are queued for removal (for both client deletes and other methods).
How S3 versioned objects are deleted
When versioning is enabled for an S3 bucket, StorageGRID follows Amazon S3 behavior when responding to delete requests, whether those requests come from an S3 client, the expiration of an S3 bucket lifecycle, or the requirements of the ILM policy.
When objects are versioned, object delete requests don't delete the current version of the object and don't free space. Instead, an object delete request creates a zero-byte delete marker as the current version of the object, which makes the previous version of the object "noncurrent." An object delete marker becomes an expired object delete marker when it is the current version and there are no noncurrent versions.
Even though the object has not been removed, StorageGRID behaves as though the current version of the object is no longer available. Requests to that object return 404 NotFound. However, because noncurrent object data has not been removed, requests that specify a noncurrent version of the object can succeed.
To free space when deleting versioned objects, or to remove delete markers, use one of the following:
-
S3 client request: Specify the object version ID in the S3 DELETE Object request (
DELETE /object?versionId=ID
). Keep in mind that this request only removes object copies for the specified version (the other versions are still taking up space). -
Bucket lifecycle: Use the
NoncurrentVersionExpiration
action in the bucket lifecycle configuration. When the number of NoncurrentDays specified is met, StorageGRID permanently removes all copies of noncurrent object versions. These object versions can't be recovered.The
NewerNoncurrentVersions
action in the bucket lifecycle configuration specifies the number of noncurrent versions retained in a versioned S3 bucket. If there are more noncurrent versions thanNewerNoncurrentVersions
specifies, StorageGRID removes the older versions when the NoncurrentDays value has elapsed. TheNewerNoncurrentVersions
threshold overrides lifecycle rules provided by ILM, meaning that a noncurrent object with a version within theNewerNoncurrentVersions
threshold is retained if ILM requests its deletion.To remove expired object delete markers use the
Expiration
action with one of the following tags:ExpiredObjectDeleteMarker
,Days
, orDate
. -
ILM: Clone an active policy and add two ILM rules to the new policy:
-
First rule: Use "Noncurrent time" as the Reference time to match the noncurrent versions of the object. In Step 1 (Enter details) of the Create an ILM rule wizard, select Yes for the question, "Apply this rule to older object versions only (in S3 buckets with versioning enabled)?"
-
Second rule: Use Ingest time to match the current version. The "Noncurrent time" rule must appear in the policy above the Ingest time rule.
ILM cannot be used to remove current object delete markers. Use an S3 client request or S3 Bucket Lifecycle to remove current object delete markers.
-
-
Delete objects in bucket: Use the tenant manager to delete all object versions, including delete markers, from a bucket.
When a versioned object is deleted, StorageGRID creates a zero-byte delete marker as the current version of the object. All objects and delete markers must be removed before a versioned bucket can be deleted.
-
Delete markers created in StorageGRID 11.7 or earlier can only be removed through S3 client requests, they are not removed by ILM, bucket lifecycle rules, or Delete objects in bucket operations.
-
Delete markers from a bucket that was created in StorageGRID 11.8 or later can be removed by ILM, bucket lifecycle rules, Delete objects in bucket operations, or an explicit S3 client deletion. Expired delete markers in StorageGRID 11.8 or later must be removed by bucket lifecycle rules or by an explicit S3 client request with a version ID specified.
-