Skip to content

Commit 0185a25

Browse files
Merge pull request #48 from PythonFloripa/fix/maximum_concurrency_builder_queue_one
Fix/maximum concurrency builder queue one
2 parents 56876ec + 785d9c9 commit 0185a25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

terraform/modules/05.lambda/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ resource "aws_lambda_event_source_mapping" "builder_sqs_trigger" {
300300
batch_size = 1 # Processa 1 mensagem por vez
301301
maximum_batching_window_in_seconds = 10 # Aguarda até 10 segundos para formar um lote
302302
scaling_config {
303-
maximum_concurrency = 1
303+
maximum_concurrency = 2
304304
}
305305
# Configurações de retry e erro
306306
function_response_types = ["ReportBatchItemFailures"]

0 commit comments

Comments
 (0)