twmht / python-rocksdb

Python bindings for RocksDB
BSD 3-Clause "New" or "Revised" License
276 stars 88 forks source link

Add support for openAsSecondary #50

Open cburgdorf opened 5 years ago

cburgdorf commented 5 years ago

RocksDB 6.1 has added support for secondary instances which allow read only connections to continuously follow changes from a primary instance (not possible with the current readonly support).

I believe we need to add support for the new OpenAsSecondary method to expose that feature to python-rocksdb.

This comment has more background.

patkivikram commented 3 years ago

Is this supported?

patkivikram commented 3 years ago

@twmht ?

patkivikram commented 3 years ago

@cburgdorf were you able to get this feature in the python bindings?

cburgdorf commented 3 years ago

Unfortunately not. I ended up not needing this anymore (for unrelated reasons).

ofek commented 3 years ago

@twmht any update on this?