Skip to content
Draft
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
4 changes: 2 additions & 2 deletions src/matchbox/server/uploads.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ def s3_to_recordbatch(
task_acks_late=True,
# Reduce pre-fetching (workers reserving tasks while they're still busy)
# as it's not ideal for long-running tasks
prefetch_multiplier=1,
worker_prefetch_multiplier=1,
# Limit number of tasks a worker can complete before restarting
# This may prevent OOM errors caused by memory not being deallocated properly
worker_max_tasks_per_child=5,
worker_max_tasks_per_child=1,
)


Expand Down
Loading