Skip to content

Commit

Permalink
Changed the settings to prevent the SlowDown errors that occured with…
Browse files Browse the repository at this point in the history
… PSScene3Band. Decreased Execution Limit from 1400 to 200. Modified the ingest and publish workflow so that it waits longer for a retry and has a larger multiplier on the time it waits when having to wait more than once. Note, JitterStrategy means that there is randomness introduced in the wait time, this should allow more granules to get through in the event of time or synchronized based errors.
  • Loading branch information
Kris Stanton committed Oct 10, 2024
1 parent c0cd3e1 commit 1817764
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/stacks/cumulus/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ module "cumulus" {
{
id = "backgroundJobQueue",
url = aws_sqs_queue.background_job_queue.id,
execution_limit = 1400
execution_limit = 200
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@
"Lambda.SdkClientException",
"Lambda.TooManyRequestsException"
],
"IntervalSeconds": 4,
"IntervalSeconds": 6,
"MaxAttempts": 6,
"BackoffRate": 2,
"BackoffRate": 3,
"JitterStrategy": "FULL"
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#
# If this is set to False, this function does nothing extra than the original lambda did, it just allows a pass through
# If this is set to True, this function does the normal request, then attempts to detect a request for a file, if this IS a file request, then it checks EULA permissions for the current user
is_post_EULA_filter_enabled = True # True # False
is_post_EULA_filter_enabled = False # True # False
#
# Which dynamo DB table holds the Access Tokens after a succesful authentication?
#dynamo_db__table_name = 'cumulus-prod-DistributionAccessTokensTable'
Expand Down

0 comments on commit 1817764

Please sign in to comment.