Skip to content

Commit

Permalink
fix: more time for buffering
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Shaw committed Sep 20, 2024
1 parent abc9f1c commit 25f9cbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stacks/aggregator-stack.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ export function AggregatorStack({ stack, app }) {
// Guarantee exactly-once processing
// (Note: maximum 10 batch)
fifo: true,
// During the deduplication interval (12 minutes), Amazon SQS treats
// During the deduplication interval (14 minutes), Amazon SQS treats
// messages that are sent with identical body content
contentBasedDeduplication: true,
queueName: `${bufferQueueName}.fifo`,
visibilityTimeout: Duration.minutes(12)
visibilityTimeout: Duration.minutes(14)
}
},
})
Expand Down Expand Up @@ -191,7 +191,7 @@ export function AggregatorStack({ stack, app }) {
aggregatorBufferStoreBucket,
aggregateOfferQueue
],
timeout: '12 minutes',
timeout: '14 minutes',
memorySize: '6 GB'
},
deadLetterQueue: bufferQueueDLQ.cdk.queue,
Expand Down

0 comments on commit 25f9cbb

Please sign in to comment.