Project

General

Profile

Actions

Bug #5901

open

[API] Improve performance of large requests in parallel

Added by Brett Smith almost 9 years ago. Updated about 2 months ago.

Status:
New
Priority:
Normal
Assigned To:
-
Category:
API
Target version:
Story points:
-
Release:
Release relationship:
Auto

Description

Attached are two files. The first is a simple Python script that uses threads to fetch the same collection object from the API server multiple times simultaneously. Currently, the collection's manifest is 75492690 bytes. The collection UUID is su92l-4zz18-wd2va9q9lnfx6ga

The log file was generated by running:

for n in 2 4 6 8; do python multi.py "$n" || break; done | tee multi.log

Simply, it shows that performance takes a noticeable dive as the number of simultaneous requests increase. The eight-thread calls never succeed; instead they raised a timeout exception. This problem just bit a real user: parallelizing over many files in this collection, the first batch of parallel tasks all failed because they all tried to fetch the collection simultaneously, and timed out waiting for an API server response. We have to improve performance here to make sure this use pattern doesn't fail.


Files

multi.log (1.41 KB) multi.log Log file showing degraded performance Brett Smith, 05/04/2015 08:25 PM
multi.py (691 Bytes) multi.py Test script to demonstrate issue Brett Smith, 05/04/2015 08:25 PM
multi1.log (1.74 KB) multi1.log Tom Morris, 02/22/2017 11:40 PM

Related issues

Related to Arvados - Bug #5902: [Workbench] collection#show is unresponsive for a large collectionClosedActions
Actions

Also available in: Atom PDF