We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MemoryError occurs if I try to start the qualifying at init.py line 281:
buf = pa.decompress( resp.content, decompressed_size=4e10, codec="lz4", asbytes=True )
If I change it with decompressed_size=4e9, it works. Maybe an approach based on memory size of computer helps: https://stackoverflow.com/questions/22102999/get-total-physical-memory-in-python
decompressed_size=4e9
The text was updated successfully, but these errors were encountered:
No branches or pull requests
MemoryError occurs if I try to start the qualifying at init.py line 281:
buf = pa.decompress( resp.content, decompressed_size=4e10, codec="lz4", asbytes=True )
If I change it with
decompressed_size=4e9
, it works. Maybe an approach based on memory size of computer helps:https://stackoverflow.com/questions/22102999/get-total-physical-memory-in-python
The text was updated successfully, but these errors were encountered: