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
Running a workload with a mix of reads, writes, and delete operations in the same workstage causes Cosbench to have an extremely low success ratio for read operations. Logs indicate that this is due to 404 not found errors. Given that the only success ratio affected is the reads, it is suspected that the deleted objects are not being removed from the list of objects available for access.
The text was updated successfully, but these errors were encountered:
if you set read/write/delete working on the container range, object range, yes, you will see low success ratio for read, as many objects may be deleted when read.
to mix those operations in one work, a normal approach is to set operators working on isolated container/object range to avoid confliction. e.g,
read: container [1,10], write: container [11,20], delete: container [21,30].
Running a workload with a mix of reads, writes, and delete operations in the same workstage causes Cosbench to have an extremely low success ratio for read operations. Logs indicate that this is due to 404 not found errors. Given that the only success ratio affected is the reads, it is suspected that the deleted objects are not being removed from the list of objects available for access.
The text was updated successfully, but these errors were encountered: