Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increases max memory for TI version only of fim-data-prep Lambda #975

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Core/LAMBDA/viz_functions/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ resource "aws_s3_object" "fim_data_prep_zip_upload" {
resource "aws_lambda_function" "viz_fim_data_prep" {
function_name = "hv-vpp-${var.environment}-viz-fim-data-prep"
description = "Lambda function to setup a fim run by retriving max flows from the database, prepare an ingest database table, and creating a dictionary for huc-based worker lambdas to use."
memory_size = 2048
memory_size = var.environment == "ti" ? 4096 : 2048 # Larger for apocalyptic testing
timeout = 900
vpc_config {
security_group_ids = var.db_lambda_security_groups
Expand Down
Loading