-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
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
Does rocksplicator have rocksdb coloumn family support? #153
Comments
Multiple column families within the same db instance share the same WAL, and the WriteBatch(BatchResult) read from GetUpdatesSince() has the column family info associated with each Update. So I guess it works for dbs with multiple column families. |
rocksplicator open the db using "auto s = rocksdb::DB::Open(options, dir, &db);" but if you have coloumn families you need to use what you think about that? |
I was talking more about the core replicating logic, which has no problem to replicate DBs with multiple column families. Changes are required in the admin side to support column families. Unfortunately, we don't have any resource to work on it immediately. |
I am using only rocksdb_replicator from whole package. Can it replicate DB with Column families without any change in the code? I think it can. |
Unfortunately, we haven't implemented it yet as of today. |
We already have rocksdb instances which uses column family. We want to replicate those using rocksplicator. Is it possible?
The text was updated successfully, but these errors were encountered: