Skip to content

Commit 854da5b

Browse files
committed
fix: reduce batch size
1 parent 499de8b commit 854da5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cumulus_lambda_functions/cumulus_wrapper/query_collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def delete_executions(self, new_collection: dict, private_api_prefix: str):
196196
# $ curl --request DELETE https://example.com/rules/repeat_test --header 'Authorization: Bearer ReplaceWithTheToken'
197197
request_body = {
198198
"collectionId": f'{new_collection["name"]}___{new_collection["version"]}',
199-
"esBatchSize": 100000,
199+
"esBatchSize": 10000,
200200
"dbBatchSize": 50000
201201
}
202202
payload = {

0 commit comments

Comments
 (0)