object Requests
- Source
- Requests.scala
- Alphabetic
- By Inheritance
- Requests
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def batchWriteWithRetries(client: DynamoDbAsyncClient, request: BatchWriteItemRequest, maxRetries: Int, minBackoff: Duration, maxBackoff: Duration, randomFactor: Double, system: ActorSystem[_]): CompletionStage[List[BatchWriteItemResponse]]
Perform a DynamoDB batch write, retrying writes for any unprocessed items (with exponential backoff).
Perform a DynamoDB batch write, retrying writes for any unprocessed items (with exponential backoff).
- client
the DynamoDB async client to use
- request
the batch write request to apply
- maxRetries
max retries, when reached the resulting future will be failed with
failOnMaxRetries
- minBackoff
minimum duration to backoff between retries
- maxBackoff
maximum duration to backoff between retries
- randomFactor
adds jitter to the retry delay (use 0 for no jitter)
- system
the actor system (for scheduling)
- returns
when successful return all responses from attempts, otherwise akka.projection.dynamodb.Requests.BatchWriteFailed with last response
- def retryWithBackoff[Request, Response](request: Request, attempt: Function[Request, CompletionStage[Response]], decideRetry: BiFunction[Request, Response, Optional[Request]], maxRetries: Int, minBackoff: Duration, maxBackoff: Duration, randomFactor: Double, onRetry: Procedure3[Response, Integer, Duration], failOnMaxRetries: Function[Response, Throwable], system: ActorSystem[_]): CompletionStage[List[Response]]
Retry generic requests with exponential backoff.
Retry generic requests with exponential backoff.
The retry condition is controlled by the
decideRetry
function. It takes the last request and its response, and if the request should be retried then it can return the next request to attempt.- request
the initial request
- attempt
attempt a request, returning a future of the response
- decideRetry
retry condition decision function, based on the request and response, returning next request
- maxRetries
max retries, when reached the resulting future will be failed with
failOnMaxRetries
- minBackoff
minimum duration to backoff between retries
- maxBackoff
maximum duration to backoff between retries
- randomFactor
adds jitter to the retry delay (use 0 for no jitter)
- onRetry
called before each retry, with the response, the current retry count, and the delay for this retry
- failOnMaxRetries
if max retries is reached, create a throwable for the failed future result
- system
the actor system (for scheduling)
- returns
all responses from attempts (in order)