This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author DanilZ
Recipients DanilZ, asvetlov, bquinlan, lukasz.langa, maggyero, methane, ned.deily, pitrou, serhiy.storchaka
Date 2020-09-28.18:00:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1601316020.18.0.354089259486.issue37294@roundup.psfhosted.org>
In-reply-to
Content
After executing a single task inside a process the result is returned with state=finished raised error.

Error happens when trying to load a big dataset (over 5 GB). Otherwise the same dataset reduced to a smaller nrows executes and returns from result() without errors.

with concurrent.futures.ProcessPoolExecutor(max_workers = 1) as executor:
    results = executor.submit(pd.read_csv, path)

data = results.result()
History
Date User Action Args
2020-09-28 18:00:20DanilZsetrecipients: + DanilZ, bquinlan, pitrou, ned.deily, asvetlov, methane, lukasz.langa, serhiy.storchaka, maggyero
2020-09-28 18:00:20DanilZsetmessageid: <1601316020.18.0.354089259486.issue37294@roundup.psfhosted.org>
2020-09-28 18:00:20DanilZlinkissue37294 messages
2020-09-28 18:00:19DanilZcreate