Project

General

Profile

Actions

Bug #10445

open

Fix memory leak in Python SDK Collection class

Added by Tom Clegg over 7 years ago. Updated about 2 months ago.

Status:
New
Priority:
Normal
Assigned To:
-
Category:
SDKs
Target version:
Story points:
2.0

Description

Currently, each new CollectionReader creates its own API client, and Keep client, and block cache unless the caller supplies an API client object (and Keep client object?). If a caller creates 10 CollectionReaders and reads 64 MiB from each one, the program will use 640 MiB. Possibly due to HTTP KeepAlive behavior, Python does not reclaim memory even if the caller unreferences the CollectionReaders. For example, this script leaks memory and network connections:

import arvados

uuid = '......'
for i in range(20):
    cr = arvados.collection.CollectionReader(uuid)
    for fn in cr:
        f = cr.open(fn)
        f.read()
        f.close()

Proposed improvement:

Share block caches between auto-instantiated API clients that use the same settings.

This also applied to KeepClient and BlockManager


Files

leaktest.py (1.11 KB) leaktest.py Tom Clegg, 11/02/2016 03:32 PM

Related issues

Related to Arvados - Feature #10493: [Python SDK] Provide more control over pre-fetch behaviorNewActions
Actions

Also available in: Atom PDF