SampleGeneration

Re-queues failed items of a sample generation so they run again.

When no item ids are supplied, every failed item of the generation is retried. Item ids that do not belong to the generation or are not in a failed state are ignored. Returns the ids that were re-queued; a generation with no failed items yields an empty result. Supplying failure categories narrows the retry to items that failed for those reasons, which is how a retry avoids re-running items whose failure cannot be fixed by running them again; combining it with item ids intersects the two.

post/benchmark/sample-generation/{sampleGenerationId}/retry

Path parameters

sampleGenerationIdstring required

The id of the sample generation request.

Request body

itemIdsstring[] nullable

The specific item ids to retry. When omitted or empty, every failed item of the generation is retried.

failureCategoriesSampleGenerationItemFailureCategory[] nullable

The failure categories to retry. When omitted or empty, every failed item qualifies. Combined with item ids the two intersect.

Response

OK

retriedCountinteger required

How many failed items were re-queued.

retriedItemIdsstring[] required

The ids of the items that were re-queued.

Changes