iFA
iFA
This is similar for me when i have git cloned the latest rocksdb branch. I suggest to try this: https://github.com/facebook/rocksdb/archive/v5.18.3.tar.gz extract, then: ``` cd rocksdb-5.18.3 mkdir build && cd build...
You need first install `rocksdb` library, set environment with `export` that the pip compiler knows where are the headers and then you can install `python-rocksdb` with `pip`. If you use...
> @iFA88 : Do you happen to have an example dockerfile of building your fork of rocksdb successfully? I've been trying to build using facebook but I keep getting an...
May you have some misconfiguration. I can not reproduce the issue with `RocksDB 6.6.4.` `first.py` : ``` import rocksdb from time import time from hashlib import sha512 st = time()...
> Do you need to close iterators to release memory? Python will do that, but memory usage did not increasing during iteration loop. Please run my script on your environment...
Check my repo https://github.com/iFA88/python-rocksdb I have implemented some extra options.
@patkivikram Can you please upload your `OPTIONS-XXXXX` file?
AFAIK @twmht refactoring the whole project, so i dont think so that this will be pulled. But Without my repo you can set up important options like: ``` rocksdb.Options( table_factory=rocksdb.BlockBasedTableFactory(...
Maybe you did not release the iterator, if you use many iterator and you writing time to time into the database it can cause big memory usage. Please install my...
Try it now