File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
terraform/modules/05.lambda Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -298,9 +298,9 @@ resource "aws_lambda_event_source_mapping" "builder_sqs_trigger" {
298298
299299 # Configurações do processamento em lote
300300 batch_size = 1 # Processa 1 mensagem por vez
301- maximum_batching_window_in_seconds = 5 # Aguarda até 5 segundos para formar um lote
301+ maximum_batching_window_in_seconds = 10 # Aguarda até 10 segundos para formar um lote
302302 scaling_config {
303- maximum_concurrency = 3
303+ maximum_concurrency = 1
304304 }
305305 # Configurações de retry e erro
306306 function_response_types = [" ReportBatchItemFailures" ]
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ variable "image_tag" {
6464variable "lambda_timeout" {
6565 description = " Timeout da função Lambda em segundos"
6666 type = number
67- default = 60
67+ default = 360
6868}
6969
7070variable "lambda_memory_size" {
You can’t perform that action at this time.
0 commit comments