libgfapi-python
libgfapi-python copied to clipboard
Python bindings for libgfapi - (This is only a public mirror)
Error using libgfapi on arm64 machine, C gfapi is normal. Hopefully the libgfapi can be updated synchronously. Is this binding up to date with the current version of GlusterFS?
I don't see much action since last release two years ago. I understand that all the important development happens in the C library code, but just wanted to make sure...
Dirent structure add d_namelen field to make compatible with MacOS
Iterator import in python console: ```python Python 3.9.9 (main, Dec 21 2021, 10:35:05) [GCC 8.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from collections import...
See: https://github.com/gluster/glusterfs/blob/release-5/api/src/glfs.h#L486-L633
Implement file locking APIs having semantics similar to `fcntl.flock()` or `fcntl.lockf()` provided in [fcntl module](https://docs.python.org/2/library/fcntl.html)
In python 3.6.2 when writing a string to a file directly like this: `volume = gfapi.Volume('server', 'volume') volume.mount() with volume.fopen('testfile', 'w') as f: f.write("test write")` The resulting file gets weirdly...
We've obtained very high memory usage produced by gfapi.Volume when mounted to big volume (with large bricks count). There are few experiment results, showing memory used by python process mounted...
Is there a memory leak in the API? Running the script below from the python interpreter results in a very high memory usage that stays high until exiting the python...
Hello, It seems these bindings are leaking a lot of memory. Walking through a two level tree with 87 000 files adds a never freed 60 Mbytes memory used to...